diff --git a/.github/workflows/build-workflow.yml b/.github/workflows/build-workflow.yml new file mode 100644 index 00000000..7a584803 --- /dev/null +++ b/.github/workflows/build-workflow.yml @@ -0,0 +1,27 @@ +name: Build and test + +on: [ push ] + +jobs: + build: + runs-on: ubuntu-latest + container: + # TODO https://github.com/opendevstack/ods-quickstarters/issues/766 + image: s2obcn/jdk-11_openj9-wkhtmltopdf-ubi:main + env: + WKHTML_TO_PDF_WITH_DOCKER: false + volumes: + - /var/run/docker.sock:/var/run/docker.sock + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Build with Gradle + run: ./gradlew clean test --stacktrace --no-daemon + + - name: TestReport + uses: actions/upload-artifact@v3 + if: ${{ always() }} + with: + name: JUnit Report + path: build/reports/**/** diff --git a/.github/workflows/changelog-enforcer.yml b/.github/workflows/changelog-enforcer.yml index 4ce32064..43376980 100644 --- a/.github/workflows/changelog-enforcer.yml +++ b/.github/workflows/changelog-enforcer.yml @@ -8,7 +8,7 @@ jobs: changelog: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: dangoslen/changelog-enforcer@v2 with: changeLogPath: 'CHANGELOG.md' diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml deleted file mode 100644 index 49c537fd..00000000 --- a/.github/workflows/continuous-integration-workflow.yml +++ /dev/null @@ -1,67 +0,0 @@ -name: Document Generation Service - -on: [ push, pull_request ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v1 - - name: Set up JDK 11 - uses: actions/setup-java@v1 - with: - java-version: 11 - - name: download and install wkhtml - run: | - sudo apt install curl - sudo curl -kLO https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz - sudo tar vxf wkhtmltox-0.12.4_linux-generic-amd64.tar.xz - sudo mv wkhtmltox/bin/wkhtmlto* /usr/bin - - name: Build with Gradle - run: ./gradlew clean test shadowJar --stacktrace --no-daemon - env: - NO_NEXUS: true - - uses: actions/cache@v1 - with: - path: ~/.gradle/caches - key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} - restore-keys: | - ${{ runner.os }}-gradle- - - name: TestReport - uses: actions/upload-artifact@v2 - if: ${{ always() }} - with: - name: JUnit Report - path: build/reports/tests/test/** - - name: copy created artifacts into docker context - run: | - cp build/libs/*-all.jar ./docker/app.jar - - name: Build docker image - if: success() - run: | - COMMIT_AUTHOR=$(git --no-pager show -s --format='%an (%ae)' $GITHUB_SHA) - COMMIT_MESSAGE=$(git log -1 --pretty=%B $GITHUB_SHA) - COMMIT_TIME=$(git show -s --format=%ci $GITHUB_SHA) - BUILD_TIME=$(date -u "+%Y-%m-%d %H:%M:%S %z") - docker build \ - --label "ods.build.job.url=https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" \ - --label "ods.build.source.repo.ref=$GITHUB_REF" \ - --label "ods.build.source.repo.commit.author=$COMMIT_AUTHOR" \ - --label "ods.build.source.repo.commit.msg=$COMMIT_MESSAGE" \ - --label "ods.build.source.repo.commit.sha=$GITHUB_SHA" \ - --label "ods.build.source.repo.commit.timestamp=$COMMIT_TIME" \ - --label "ods.build.source.repo.url=https://github.com/$GITHUB_REPOSITORY.git" \ - --label "ods.build.timestamp=$BUILD_TIME" \ - -t ods-document-generation-svc:local . - docker inspect ods-document-generation-svc:local --format='{{.Config.Labels}}' - working-directory: docker - - name: Push docker image - if: success() && github.repository == 'opendevstack/ods-document-generation-svc' && github.event_name == 'push' - shell: bash - env: - DOCKER_USER: ${{ secrets.DockerHubUser }} - DOCKER_PASS: ${{ secrets.DockerHubPass }} - run: ./.github/workflows/push-image.sh ${{ github.ref }} "$DOCKER_USER" "$DOCKER_PASS" - diff --git a/.github/workflows/e2e-tests-workflow.yml b/.github/workflows/e2e-tests-workflow.yml new file mode 100644 index 00000000..0eca0d18 --- /dev/null +++ b/.github/workflows/e2e-tests-workflow.yml @@ -0,0 +1,36 @@ +name: e2e and performance Test + +on: [ pull_request ] + +jobs: + e2eTest: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Docker test + run: ./gradlew dockerTest --stacktrace --no-daemon + + - name: TestReport + uses: actions/upload-artifact@v3 + if: ${{ always() }} + with: + name: JUnit e2e Report + path: build/reports/**/** + + performanceTest: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Performance test + run: ./gradlew gatlingRun --stacktrace --no-daemon + + - name: TestReport + uses: actions/upload-artifact@v3 + if: ${{ always() }} + with: + name: JUnit performance test Report + path: build/reports/**/** \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b483b13..208dfb11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,31 @@ # Changelog +- Temporal change with add LevaDoc 3. + + ## Unreleased - Fix TIR and DTR documents are not properly indexed ([#55](https://github.com/opendevstack/ods-document-generation-svc/pull/55)) - Fix wkhtmltox hangs ([#66](https://github.com/opendevstack/ods-document-generation-svc/pull/66)) - Improve memory management and error handling ([#70](https://github.com/opendevstack/ods-document-generation-svc/pull/70)) -- ODS AMI build failing due to broken x11 fonts package installation ([#74](https://github.com/opendevstack/ods-document-generation-svc/pull/74)) +- Use Markdown Architectural Decision Records https://adr.github.io/madr/ +- Improve maintainability by adding SpringBoot framework +- Added IT (Docker tests) +- Added performance tests +- logback.xml can be overridden from command line +- removed unused params from payloads. +- removed param jekins to jenkins +- Removed byte[] use +- Set test summary for empty description in TCR ([#837](https://github.com/opendevstack/ods-jenkins-shared-library/pull/837)) +- Set test summary for empty description in TCR for acceptance tests ([#837](https://github.com/opendevstack/ods-jenkins-shared-library/pull/844)) + +## [4.0] - 2021-18-11 +======= +### Added +- Added log to print /document endpoint input ### Fixed - Github template tests fail in proxy environment ([#56](https://github.com/opendevstack/ods-document-generation-svc/issues/56)) -- - -## [4.0] - 2021-15-11 - -### Added -- Added log to print /document endpoint input +- Fix TIR and DTR documents are not properly indexed ([#55](https://github.com/opendevstack/ods-document-generation-svc/pull/55)) ### Changed - Updated maxRequestSize value from 100m to 200m diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index a4fa2bf5..00000000 --- a/Jenkinsfile +++ /dev/null @@ -1,71 +0,0 @@ -def odsNamespace -def odsGitRef -def odsImageTag -node { - odsNamespace = env.ODS_NAMESPACE ?: 'ods' - odsImageTag = env.ODS_IMAGE_TAG ?: 'latest' - odsGitRef = env.ODS_GIT_REF ?: 'master' -} - -library("ods-jenkins-shared-library@${odsGitRef}") - -odsComponentPipeline( - imageStreamTag: "${odsNamespace}/jenkins-agent-maven:${odsImageTag}", - branchToEnvironmentMapping: [:], - debug: true, - resourceRequestMemory: '3Gi', - resourceLimitMemory: '3Gi' -) { context -> - stageBuild(context) - odsComponentStageScanWithSonar(context, [branch: '*']) - odsComponentStageBuildOpenShiftImage(context, [branch: '*']) - stageCreatedImageTagLatest(context) -} - -def stageBuild(def context) { - def javaOpts = "-Xmx512m" - def gradleTestOpts = "-Xmx128m" - - stage('Build and Unit Test') { - withEnv(["TAGVERSION=${context.tagversion}", "NEXUS_HOST=${context.nexusHost}", "NEXUS_USERNAME=${context.nexusUsername}", "NEXUS_PASSWORD=${context.nexusPassword}", "JAVA_OPTS=${javaOpts}", "GRADLE_TEST_OPTS=${gradleTestOpts}"]) { - - // get wkhtml - sh ( - script : """ - curl -kLO https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz - tar vxf wkhtmltox-0.12.4_linux-generic-amd64.tar.xz - mv wkhtmltox/bin/wkhtmlto* /usr/bin - """, - label : "get and install wkhtml" - ) - - def status = sh( - script: "./gradlew clean test shadowJar --stacktrace --no-daemon", - label : "gradle build", - returnStatus: true - ) - if (status != 0) { - error "Build failed!" - } - - status = sh( - script: "cp build/libs/*-all.jar ./docker/app.jar", - label : "copy resources into docker context", - returnStatus: true - ) - if (status != 0) { - error "Copying failed!" - } - } - } -} - -def stageCreatedImageTagLatest(def context) { - stage('Tag created image') { - def targetImageTag = context.gitBranch.replace('/','_').replace('-','_') - sh( - script: "oc -n ${context.cdProject} tag ${context.componentId}:${context.shortGitCommit} ${context.componentId}:${targetImageTag}", - label: "Set tag '${targetImageTag}' on is/${context.componentId}" - ) - } -} diff --git a/README.md b/README.md index 007307bf..0ad987b2 100644 --- a/README.md +++ b/README.md @@ -2,44 +2,61 @@ # ODS Document Generation Service -A document generation service that transforms document templates in a remote Bitbucket repository into PDF documents. +A document generation service that: +- Transforms document templates in a remote Bitbucket repository into PDF documents. +- Generate LeVA documentation and uploads them to a Nexus service ## Distribute +In order to generate a distributed app a Docker client needs to be configured. +- The _gradle_ task: __dockerBuildImage__ generates a Docker image with the application + +### Environment +The file src/main/resources/application.yml has the properties and parameters that the app admit. + +## Unit Tests +In order to execute the tests a Docker client needs to be configured. ``` -make shadowJar +gradle test ``` -## Run +## Integration Tests +In order to execute the tests a Docker client needs to be configured. ``` -make run +gradle dockerTest ``` -## Test +## Performance Tests +In order to execute the tests a Docker client needs to be configured. ``` -make test +gradle gatlingRun ``` ## Document Templates - When processing a template `type` at a specific `version`, and data into a document, the DocGen service expects the BitBucket repository to have a `release/${version}` branch that contains the template type at `/templates/${type}.html.tmpl`. -## Requirements +## LeVA Doc generation +When generating LeVA documentation, the app expects the xml tests results and the Jenkins Logs to be in a Nexus service. -### Packages +## Structure package +Main groovy code in src/main/groovy: +- org.ods.doc.gen.core: common 'utilities' +- org.ods.doc.gen.adapters: clients to other systems. They translate the interfaces of external systems to the interfaces required. +- org.ods.doc.gen.doc: LeVA document generation functional module +- org.ods.doc.pdf.builder: PDF generation document functional module -- [wkhtmltopdf](https://wkhtmltopdf.org/) -### Environment +## History +The module __"leva.doc"__ is a refactor extracted from the LevaDoc functionality of the [shared-library](https://github.com/opendevstack/ods-jenkins-shared-library). +You can see the shared-library before the refactor here: https://github.com/opendevstack/ods-jenkins-shared-library/tree/feature/beforeMoveLevaDoc -- `BITBUCKET_URL` -- `BITBUCKET_USERNAME` -- `BITBUCKET_PASSWORD` -- `BITBUCKET_DOCUMENT_TEMPLATES_PROJECT` -- `BITBUCKET_DOCUMENT_TEMPLATES_REPO` +Some correspondences between the shared-lib classes and this project: +- org.ods.orchestration.util.Project => org.ods.doc.gen.project.data.ProjectData +- org.ods.orchestration.usecase.LeVADocumentUseCase => org.ods.doc.gen.leva.doc.services.LeVADocumentService +- org.ods.orchestration.usecase.DocGenUseCase => org.ods.doc.gen.leva.doc.services.DocGenService +- org.ods.orchestration.util.DocumentHistory => org.ods.doc.gen.leva.doc.services.DocumentHistory +- org.ods.orchestration.usecase.PDFUtil => org.ods.doc.gen.leva.doc.services.PDFService -## Reference -This project is based on https://github.com/jooby-project/gradle-starter. diff --git a/build.gradle b/build.gradle index c8ec71f2..4cba513c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,180 +1,293 @@ buildscript { ext { - nexus_url = "${project.findProperty('nexus_url') ?: System.getenv('NEXUS_HOST')}" - nexus_user = "${project.findProperty('nexus_user') ?: System.getenv('NEXUS_USERNAME')}" - nexus_pw = "${project.findProperty('nexus_pw') ?: System.getenv('NEXUS_PASSWORD')}" - no_nexus = (project.findProperty('no_nexus') ?: System.getenv('NO_NEXUS') ?: false).toBoolean() - if (!no_nexus && (nexus_url == "null" || nexus_user == "null" || nexus_pw == "null")) { - throw new GradleException("property no_nexus='false' (or not defined) but at least one of the properties nexus_url, nexus_user or nexus_pw is not configured. Please configure those properties!") - } - - def folderRel = (String)("${project.findProperty('nexus_folder_releases') ?: System.getenv('NEXUS_FOLDER_RELEASES')}") - nexusFolderReleases = folderRel == "null" ? "maven-releases" : folderRel - - def folderSnaps = (String)("${project.findProperty('nexus_folder_snapshots') ?: System.getenv('NEXUS_FOLDER_SNAPSHOTS')}") - nexusFolderSnapshots = folderSnaps == "null" ? "maven-snapshots" : folderSnaps - - snippetsDir = file('build/generated-snippets') + groovyallVersion = '3.0.10' + springbootVersion = "2.6.6" + springCloudVersion = '3.1.1' + spockCoreVersion = "2.1-groovy-3.0" + spockReportsVersion = '2.3.0-groovy-3.0' } repositories { - if (no_nexus) { - println("using repositories 'jcenter' and 'mavenCentral', because property no_nexus=$no_nexus") - jcenter() - mavenCentral() - } else { - println("using nexus repositories") - maven() { - url "${nexus_url}/repository/jcenter/" - credentials { - username = "${nexus_user}" - password = "${nexus_pw}" - } - } - - maven() { - url "${nexus_url}/repository/maven-public/" - credentials { - username = "${nexus_user}" - password = "${nexus_pw}" - } + println("using repositories 'jcenter' and 'mavenCentral'") + mavenLocal() + jcenter() + mavenCentral() + maven { + url "https://repo1.maven.org/maven2/" + mavenContent { + releasesOnly() } - - maven() { - url "${nexus_url}/repository/atlassian_public/" - credentials { - username = "${nexus_user}" - password = "${nexus_pw}" - } + } + maven { + url "https://repo.jenkins-ci.org/releases/" + mavenContent { + releasesOnly() } } } } -buildscript { - ext { - joobyVersion = "1.6.6" - } - - dependencies { - classpath "org.jooby:jooby-gradle-plugin:$joobyVersion" - } -} - plugins { - id "com.github.johnrengelman.shadow" - id "com.google.osdetector" version "1.6.2" - id "io.spring.dependency-management" version "1.0.8.RELEASE" + id "groovy" + id 'com.adarshr.test-logger' version '3.2.0' + id 'jacoco' + id 'org.springframework.boot' version "${springbootVersion}" + id 'com.bmuschko.docker-spring-boot-application' version '7.3.0' + id "io.gatling.gradle" version "3.7.6.1" } - -apply plugin: "application" -apply plugin: "com.github.johnrengelman.shadow" -apply plugin: "groovy" -apply plugin: "jooby" -apply plugin: "jacoco" +// related to gatling and Springboot +ext['netty.version'] = '4.0.51.Final' repositories { - if (no_nexus) { - println("using repositories 'jcenter' and 'mavenCentral', because property no_nexus=$no_nexus") - jcenter() - mavenCentral() - } else { - println("using nexus repositories") - maven() { - url "${nexus_url}/repository/jcenter/" - credentials { - username = "${nexus_user}" - password = "${nexus_pw}" - } - } + mavenCentral() + println("using repositories 'jcenter' and 'mavenCentral'") + mavenCentral() +} - maven() { - url "${nexus_url}/repository/maven-public/" - credentials { - username = "${nexus_user}" - password = "${nexus_pw}" - } - } +group = 'org.ods' +version = '1.0' +ext { + // TODO https://github.com/opendevstack/ods-quickstarters/issues/766 + imageBaseForApp ="s2obcn/jdk-11_openj9-wkhtmltopdf-ubi:main" + imageForTest = "jdk-11_openj9-wkhtmltopdf-ubi:local" +} - maven() { - url "${nexus_url}/repository/atlassian_public/" - credentials { - username = "${nexus_user}" - password = "${nexus_pw}" - } - } +java { + toolchain { + languageVersion.set(JavaLanguageVersion.of(11)) } } -group = 'org.ods' -version = '0.1' -mainClassName = "app.App" -sourceCompatibility = 1.8 +compileGroovy { + groovyOptions.javaAnnotationProcessing = true +} -dependencyManagement { - imports { - mavenBom "org.jooby:jooby-bom:$joobyVersion" +configurations.all { + resolutionStrategy { + force (group: 'org.codehaus.groovy', name: 'groovy-all', version: groovyallVersion) } } dependencies { - implementation "com.github.ben-manes.caffeine:caffeine:2.7.0" - implementation "com.github.jknack:handlebars:4.1.2" - implementation "commons-io:commons-io:2.11.0" - implementation "io.github.openfeign:feign-core:10.2.3" - implementation "io.github.openfeign:feign-gson:10.2.3" - implementation "io.github.openfeign:feign-okhttp:10.2.3" - implementation "net.lingala.zip4j:zip4j:1.3.3" - implementation "org.apache.httpcomponents:httpclient:4.5.8" - implementation "org.codehaus.groovy:groovy-all:2.5.7" - implementation "org.jooby:jooby-jackson" - implementation "org.jooby:jooby-netty" - - implementation "io.netty:netty-transport-native-epoll:${dependencyManagement.importedProperties['netty.version']}:${osdetector.classifier.contains('linux') ? 'linux-x86_64' : ''}" - implementation "io.netty:netty-tcnative-boringssl-static:${dependencyManagement.importedProperties['boringssl.version']}" - - implementation "org.apache.pdfbox:pdfbox:2.0.24" - - testImplementation "junit:junit:4.12" - testImplementation "com.github.stefanbirkner:system-rules:1.19.0" // for managing environment variables - testImplementation "com.github.tomakehurst:wiremock:2.23.2" // for mocking HTTP server reponses - testImplementation "io.rest-assured:rest-assured:4.0.0" // for validating REST services - testImplementation "org.spockframework:spock-core:1.3-groovy-2.5" + implementation('org.codehaus.groovy:groovy-json:3.0.10') - testImplementation "cglib:cglib-nodep:3.3.0" // for mocking classes - testImplementation "org.objenesis:objenesis:3.1" -} + implementation (group: 'org.codehaus.groovy', name: 'groovy-all', version: groovyallVersion){ + exclude group: "org.codehaus.groovy", module: "groovy-test-junit5" + } -import com.github.jengelman.gradle.plugins.shadow.transformers.NewGroovyExtensionModuleTransformer + implementation "org.springframework.boot:spring-boot-starter:${springbootVersion}" + implementation "org.springframework.boot:spring-boot-starter-web:${springbootVersion}" + implementation "org.springframework.boot:spring-boot-starter-cache:${springbootVersion}" + implementation "org.springframework.cloud:spring-cloud-starter-openfeign:${springCloudVersion}" -shadowJar { - mergeServiceFiles() - mergeGroovyExtensionModules() - transform(NewGroovyExtensionModuleTransformer) -} + implementation("javax.inject:javax.inject:1") + implementation("javax.cache:cache-api:1.1.1") -test { - outputs.dir snippetsDir + implementation 'com.fasterxml.jackson.core:jackson-databind' + implementation 'com.github.ben-manes.caffeine:caffeine:3.0.5' + implementation 'com.github.jknack:handlebars:4.3.0' + implementation 'commons-io:commons-io:2.11.0' + implementation 'io.github.openfeign:feign-core:11.8' + implementation 'io.github.openfeign:feign-gson:11.8' + implementation 'io.github.openfeign:feign-okhttp:11.8' + implementation 'io.github.openfeign:feign-jackson:11.8' + + implementation 'net.lingala.zip4j:zip4j:2.9.1' + implementation 'org.apache.httpcomponents:httpclient:4.5.13' + implementation 'org.apache.pdfbox:pdfbox:2.0.25' + + implementation('ch.qos.logback:logback-classic:1.2.11') + implementation 'org.eclipse.jgit:org.eclipse.jgit:6.0.0.202111291000-r' + + testImplementation "org.junit.jupiter:junit-jupiter-api" + testImplementation "org.junit.jupiter:junit-jupiter-engine" + testImplementation("uk.org.webcompere:system-stubs-core:1.2.0") + testImplementation "org.testcontainers:spock:1.16.3" + testImplementation("org.testcontainers:testcontainers:1.16.3") + + testImplementation("org.spockframework:spock-core:${spockCoreVersion}") + testImplementation ("com.athaydes:spock-reports:$spockReportsVersion"){ transitive = false } + testImplementation "org.spockframework:spock-spring:${spockCoreVersion}" + testImplementation "org.springframework.boot:spring-boot-starter-test:${springbootVersion}" + + testImplementation "com.github.stefanbirkner:system-rules:1.19.0" + testImplementation "com.github.tomakehurst:wiremock-jre8:2.32.0" + testImplementation 'io.rest-assured:rest-assured:4.5.1' + testImplementation("de.redsix:pdfcompare:1.1.61") + + gatlingImplementation 'org.awaitility:awaitility:4.2.0' + gatlingImplementation 'io.rest-assured:rest-assured:4.5.1' + + // From shared lib + implementation('com.konghq:unirest-java:3.13.6') + implementation("org.yaml:snakeyaml:1.30") + implementation('com.vladsch.flexmark:flexmark-all:0.64.0') + implementation('fr.opensagres.xdocreport:fr.opensagres.poi.xwpf.converter.core:2.0.3') + implementation('fr.opensagres.xdocreport:fr.opensagres.poi.xwpf.converter.pdf:2.0.3') + implementation("org.apache.poi:poi-ooxml:4.1.2") + implementation("org.apache.pdfbox:pdfbox:2.0.25") + implementation("net.lingala.zip4j:zip4j:2.9.1") + implementation("com.xlson.groovycsv:groovycsv:1.3") - // Use overrides in conf/application.test.conf in ConfigFactory.load() - // TODO: setting application.env should be enough, but apparently isn't - systemProperty "application.env", "test" - systemProperty "config.resource", "application.test.conf" + testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.21.0' + testImplementation group: 'commons-io', name: 'commons-io', version: '2.8.0' + testImplementation "com.github.stefanbirkner:system-rules:1.19.0" // for managing environment variables + testImplementation 'org.hamcrest:hamcrest:2.2' + testImplementation "org.skyscreamer:jsonassert:1.5.0" + + testImplementation("au.com.dius:pact-jvm-provider:4.0.10") + testImplementation("au.com.dius:pact-jvm-provider-junit:4.0.10") +} + +test { testLogging { showStandardStreams = true + exceptionFormat = 'full' + } + filter { + excludeTestsMatching "*IT" } + systemProperty "spock.configuration", "SpockConfig.groovy" + systemProperty 'com.athaydes.spockframework.report.outputDir', 'build/reports/spock' + systemProperty 'com.athaydes.spockframework.report.projectName', 'docGen' + systemProperty 'com.athaydes.spockframework.report.projectVersion', version + systemProperty "testRecordMode", project.findProperty('testRecordMode')?: false + systemProperty "generateExpectedPdfFiles", project.findProperty('generateExpectedPdfFiles')?: false + systemProperty "wiremock.textToReplace", project.findProperty('wiremock.textToReplace')?: "" - finalizedBy jacocoTestReport + systemProperties << propertiesForTest() + + maxHeapSize = "4096m" + useJUnitPlatform() +} + +task dockerTest(type: Test) { + group("verification") + filter { + includeTestsMatching "*IT" + } + systemProperty 'com.athaydes.spockframework.report.outputDir', 'build/reports/spock' + useJUnitPlatform() } jacocoTestReport { + dependsOn test reports { xml.enabled true + html.enabled true + } +} + +jacocoTestCoverageVerification { + dependsOn jacocoTestReport + violationRules { + rule { + limit { + minimum = 0.7 + } + } } } -/** We diverge from the default resources structure to adopt the Jooby standard: */ -sourceSets.main.resources { - srcDirs = ["conf", "public"] +import com.bmuschko.gradle.docker.tasks.image.* +task buildImageForTest(type: DockerBuildImage) { + group = "docker" + inputDir = file("docker") + images.add(project.ext.imageForTest as String) + buildArgs = getProxyMap() } + +def getProxyMap(){ + def buildArgs = [:] + def http_proxy = "${project.findProperty('http_proxy') ?: System.getenv('HTTP_PROXY')}" + def https_proxy = "${project.findProperty('https_proxy') ?: System.getenv('HTTPS_PROXY')}" + if (http_proxy && http_proxy != "null") + buildArgs << ["http_proxy": http_proxy, "https_proxy": https_proxy] + + return buildArgs +} + +docker { + springBootApplication { + baseImage = project.ext.imageBaseForApp + ports = [8080] + images = ['ods-document-generation-svc:local'] + jvmArgs = ["-XX:+UseCompressedOops", "-XX:+UseParallelGC", "-XX:+UseParallelOldGC"] + } +} + +test.dependsOn(buildImageForTest) +dockerBuildImage.dependsOn(bootJar) +dockerTest.dependsOn(dockerBuildImage) +dockerTest.mustRunAfter(test) + +bootRun { + systemProperties << executionProperties() +} + +import com.bmuschko.gradle.docker.tasks.container.* + +task createServerForGalting(type: DockerCreateContainer) { + dependsOn dockerBuildImage + targetImageId dockerBuildImage.getImageId() + hostConfig.portBindings = ['1111:8080'] + hostConfig.autoRemove = true +} + +task startDocGenServerForGatling(type: DockerStartContainer) { + group = "docker" + dependsOn createServerForGalting + targetContainerId createServerForGalting.getContainerId() +} + +task stopDocGenServerForGatling(type: DockerStopContainer) { + group = "docker" + targetContainerId createServerForGalting.getContainerId() +} + +gatlingRun.group("verification") +gatlingRun.mustRunAfter(dockerTest) +gatlingRun.dependsOn(startDocGenServerForGatling) +gatlingRun.finalizedBy(stopDocGenServerForGatling) + +check.dependsOn(jacocoTestCoverageVerification, dockerTest, gatlingRun) + +Map executionProperties(){ + def bitbucket_url = "${project.findProperty('bitbucket_url') ?: System.getenv('BITBUCKET_HOST')}" + def bitbucket_username = "${project.findProperty('bitbucket_username') ?: System.getenv('BITBUCKET_USERNAME')}" + def bitbucket_password = "${project.findProperty('bitbucket_password') ?: System.getenv('BITBUCKET_PASSWORD')}" + + def jira_url = "${project.findProperty('jira_url') ?: System.getenv('JIRA_HOST')}" + def jira_username = "${project.findProperty('jira_username') ?: System.getenv('JIRA_USERNAME')}" + def jira_password = "${project.findProperty('jira_password') ?: System.getenv('JIRA_PASSWORD')}" + + def nexus_url = "${project.findProperty('nexus_url') ?: System.getenv('NEXUS_HOST')}" + def nexus_username = "${project.findProperty('nexus_username') ?: System.getenv('NEXUS_USERNAME')}" + def nexus_password = "${project.findProperty('nexus_password') ?: System.getenv('NEXUS_PASSWORD')}" + + return [ + "BITBUCKET_URL": bitbucket_url, + "BITBUCKET_USERNAME": bitbucket_username, + "BITBUCKET_PASSWORD": bitbucket_password, + + "JIRA_URL": jira_url, + "JIRA_USERNAME": jira_username, + "JIRA_PASSWORD": jira_password, + + "NEXUS_URL": nexus_url, + "NEXUS_USERNAME": nexus_username, + "NEXUS_PASSWORD": nexus_password + ] +} + +Map propertiesForTest(){ + List urls = ["BITBUCKET_URL", "JIRA_URL", "NEXUS_URL"] + Map execProp = executionProperties() + urls.each { + if (execProp[it] == "null"){ + execProp[it] = "http://dummy" + } + } + return execProp +} \ No newline at end of file diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle deleted file mode 100644 index 026e9fd4..00000000 --- a/buildSrc/build.gradle +++ /dev/null @@ -1,58 +0,0 @@ -ext { - nexus_url = "${project.findProperty('nexus_url') ?: System.getenv('NEXUS_HOST')}" - nexus_user = "${project.findProperty('nexus_user') ?: System.getenv('NEXUS_USERNAME')}" - nexus_pw = "${project.findProperty('nexus_pw') ?: System.getenv('NEXUS_PASSWORD')}" - no_nexus = (project.findProperty('no_nexus') ?: System.getenv('NO_NEXUS') ?: false).toBoolean() - if (!no_nexus && (nexus_url == "null" || nexus_user == "null" || nexus_pw == "null")) { - throw new GradleException("property no_nexus='false' (or not defined) but at least one of the properties nexus_url, nexus_user or nexus_pw is not configured. Please configure those properties!") - } - - def folderRel = (String)("${project.findProperty('nexus_folder_releases') ?: System.getenv('NEXUS_FOLDER_RELEASES')}") - nexusFolderReleases = folderRel == "null" ? "maven-releases" : folderRel - - def folderSnaps = (String)("${project.findProperty('nexus_folder_snapshots') ?: System.getenv('NEXUS_FOLDER_SNAPSHOTS')}") - nexusFolderSnapshots = folderSnaps == "null" ? "maven-snapshots" : folderSnaps - - snippetsDir = file('build/generated-snippets') -} - -repositories { - if (no_nexus) { - println("using repositories 'jcenter' and 'mavenCentral', because property no_nexus=$no_nexus") - jcenter() - mavenCentral() - } else { - println("using nexus repositories") - maven() { - url "${nexus_url}/repository/jcenter/" - credentials { - username = "${nexus_user}" - password = "${nexus_pw}" - } - } - - maven() { - url "${nexus_url}/repository/maven-public/" - credentials { - username = "${nexus_user}" - password = "${nexus_pw}" - } - } - - maven() { - url "${nexus_url}/repository/atlassian_public/" - credentials { - username = "${nexus_user}" - password = "${nexus_pw}" - } - } - } -} - -apply plugin: 'groovy' - -dependencies { - implementation gradleApi() - implementation 'com.github.jengelman.gradle.plugins:shadow:5.2.0' - implementation "org.codehaus.plexus:plexus-utils:3.0.24" -} \ No newline at end of file diff --git a/buildSrc/src/main/groovy/com/github/jengelman/gradle/plugins/shadow/transformers/NewGroovyExtensionModuleTransformer.groovy b/buildSrc/src/main/groovy/com/github/jengelman/gradle/plugins/shadow/transformers/NewGroovyExtensionModuleTransformer.groovy deleted file mode 100644 index 523fc90a..00000000 --- a/buildSrc/src/main/groovy/com/github/jengelman/gradle/plugins/shadow/transformers/NewGroovyExtensionModuleTransformer.groovy +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package com.github.jengelman.gradle.plugins.shadow.transformers - -import shadow.org.apache.tools.zip.ZipEntry -import shadow.org.apache.tools.zip.ZipOutputStream -import org.codehaus.plexus.util.IOUtil -import org.gradle.api.file.FileTreeElement - -/** - * Modified from https://github.com/johnrengelman/shadow/blob/7.1.1/src/main/groovy/com/github/jengelman/gradle/plugins/shadow/transformers/GroovyExtensionModuleTransformer.groovy - * --- - * Modified from eu.appsatori.gradle.fatjar.tasks.PrepareFiles.groovy - *

- * Resource transformer that merges Groovy extension module descriptor files into a single file. If there are several - * META-INF/services/org.codehaus.groovy.runtime.ExtensionModule resources spread across many JARs the individual - * entries will all be merged into a single META-INF/services/org.codehaus.groovy.runtime.ExtensionModule resource - * packaged into the resultant JAR produced by the shadowing process. - */ -@CacheableTransformer -class NewGroovyExtensionModuleTransformer implements Transformer { - - private static final GROOVY_EXTENSION_MODULE_DESCRIPTOR_PATH = - "META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule" - - private static final MODULE_NAME_KEY = 'moduleName' - private static final MODULE_VERSION_KEY = 'moduleVersion' - private static final EXTENSION_CLASSES_KEY = 'extensionClasses' - private static final STATIC_EXTENSION_CLASSES_KEY = 'staticExtensionClasses' - - private static final MERGED_MODULE_NAME = 'MergedByShadowJar' - private static final MERGED_MODULE_VERSION = '1.0.0' - - private final Properties module = new Properties() - - @Override - boolean canTransformResource(FileTreeElement element) { - return element.relativePath.pathString == GROOVY_EXTENSION_MODULE_DESCRIPTOR_PATH - } - - @Override - void transform(TransformerContext context) { - def props = new Properties() - props.load(context.is) - props.each { String key, String value -> - switch (key) { - case MODULE_NAME_KEY: - handle(key, value) { - module.setProperty(key, MERGED_MODULE_NAME) - } - break - case MODULE_VERSION_KEY: - handle(key, value) { - module.setProperty(key, MERGED_MODULE_VERSION) - } - break - case [EXTENSION_CLASSES_KEY, STATIC_EXTENSION_CLASSES_KEY]: - handle(key, value) { String existingValue -> - def newValue = "${existingValue},${value}" - module.setProperty(key, newValue) - } - break - } - } - } - - private handle(String key, String value, Closure mergeValue) { - def existingValue = module.getProperty(key) - if (existingValue) { - mergeValue(existingValue) - } else { - module.setProperty(key, value) - } - } - - @Override - boolean hasTransformedResource() { - return module.size() > 0 - } - - @Override - void modifyOutputStream(ZipOutputStream os, boolean preserveFileTimestamps) { - ZipEntry entry = new ZipEntry(GROOVY_EXTENSION_MODULE_DESCRIPTOR_PATH) - entry.time = TransformerContext.getEntryTimestamp(preserveFileTimestamps, entry.time) - os.putNextEntry(entry) - IOUtil.copy(toInputStream(module), os) - os.closeEntry() - } - - private static InputStream toInputStream(Properties props) { - def baos = new ByteArrayOutputStream() - props.store(baos, null) - return new ByteArrayInputStream(baos.toByteArray()) - } - -} diff --git a/conf/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule b/conf/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule deleted file mode 100644 index 7f311fd6..00000000 --- a/conf/META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule +++ /dev/null @@ -1,3 +0,0 @@ -moduleName=Resource Handling Extensions -moduleVersion=1.0 -extensionClasses=util.Try \ No newline at end of file diff --git a/conf/application.conf b/conf/application.conf deleted file mode 100644 index 0a5afc15..00000000 --- a/conf/application.conf +++ /dev/null @@ -1,19 +0,0 @@ -# add or override properties -# See https://github.com/typesafehub/config/blob/master/HOCON.md for more details -application { - port = 8080 - - documents { - cache { - basePath = "/tmp/doc-gen-templates" - } - } -} - -server { - maxRequestSize = 200m - - http { - MaxRequestSize = 200m - } -} diff --git a/conf/application.test.conf b/conf/application.test.conf deleted file mode 100644 index fe0c7f49..00000000 --- a/conf/application.test.conf +++ /dev/null @@ -1,7 +0,0 @@ -# add or override properties -# See https://github.com/typesafehub/config/blob/master/HOCON.md for more details -include "application" - -application { - port = 9000 -} diff --git a/conf/logback.xml b/conf/logback.xml deleted file mode 100644 index bdb1e0bc..00000000 --- a/conf/logback.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - [%d{ISO8601}]-[%thread] %-5level %logger - %msg%n - - - - - - - diff --git a/docker/Dockerfile b/docker/Dockerfile index 0eb59e50..f72f619d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,29 +1,9 @@ -FROM adoptopenjdk/openjdk8:ubi-jre +# TODO https://github.com/opendevstack/ods-quickstarters/issues/766 +FROM s2obcn/jdk-11_openj9-wkhtmltopdf-ubi:main -MAINTAINER martin.etmajer@boehringer-ingelheim.com +RUN useradd pdfuser -WORKDIR /app -COPY app.jar ./app.jar -COPY entrypoint.sh ./entrypoint.sh - -RUN yum update -y && \ - yum install -y libX11 libXext libXrender libjpeg xz xorg-x11-fonts-Type1 git-core - -# Install wkhtmltopdf -COPY yum.repos.d/centos8.repo /etc/yum.repos.d/centos8.repo -RUN yum install -y xorg-x11-fonts-75dpi && \ - curl -kLO https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox-0.12.5-1.centos8.x86_64.rpm && \ - rpm -Uvh wkhtmltox-0.12.5-1.centos8.x86_64.rpm && chmod +x entrypoint.sh +USER pdfuser -# See https://docs.openshift.com/container-platform/3.9/creating_images/guidelines.html -RUN chgrp -R 0 /app && \ - chmod -R g=u /app - -USER 1001 - -EXPOSE 8080 -ENV JAVA_MEM_XMX="512m" \ - JAVA_MEM_XMS="128m" \ - JAVA_OPTS="-XX:+UseCompressedOops -XX:+UseG1GC -XX:+UseStringDeduplication -XX:MaxGCPauseMillis=1000" +WORKDIR /app -ENTRYPOINT /app/entrypoint.sh diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh deleted file mode 100644 index 68e9cca2..00000000 --- a/docker/entrypoint.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -e -java $JAVA_OPTS -Xms$JAVA_MEM_XMS -Xmx$JAVA_MEM_XMX -jar app.jar diff --git a/docs/decisions/0000-use-markdown-architectural-decision-records.md b/docs/decisions/0000-use-markdown-architectural-decision-records.md new file mode 100644 index 00000000..9ce4bb1b --- /dev/null +++ b/docs/decisions/0000-use-markdown-architectural-decision-records.md @@ -0,0 +1,28 @@ +# Use Markdown Architectural Decision Records + +## Context and Problem Statement + +We want to record architectural decisions made in this project. +Which format and structure should these records follow? + +## Considered Options + +* [MADR](https://adr.github.io/madr/) 2.1.2 The Markdown Architectural Decision Records +* [Michael Nygard's template](http://thinkrelevance.com/blog/2011/11/15/documenting-architecture-decisions) The first incarnation of the term "ADR" +* [Sustainable Architectural Decisions](https://www.infoq.com/articles/sustainable-architectural-design-decisions) The Y-Statements +* Other templates listed at +* Formless No conventions for file format and structure + +## Decision Outcome + +Chosen option: "MADR 2.1.2", because + +* Implicit assumptions should be made explicit. + Design documentation is important to enable people understanding the decisions later on. + See also [A rational design process: How and why to fake it](https://doi.org/10.1109/TSE.1986.6312940). +* The MADR format is lean and fits our development style. +* The MADR structure is comprehensible and facilitates usage & maintenance. +* The MADR project is vivid. +* Version 2.1.2 is the latest one available when starting to document ADRs. + + \ No newline at end of file diff --git a/docs/decisions/0001-use-spring-framework.md b/docs/decisions/0001-use-spring-framework.md new file mode 100644 index 00000000..3da24d89 --- /dev/null +++ b/docs/decisions/0001-use-spring-framework.md @@ -0,0 +1,36 @@ +# Improve Maintainability + +* Status: accepted +* Deciders: Sergio Sacristán +* Date: 2021-12-22 + +## Context and Problem Statement + +In order to evolve DocGen service and migrate here the LevaDoc feature, initially implemented +in the SharedLib, we need to improve LevaDoc architecture to make it more maintainable. + +## Decision Drivers + +* Maintainability: speed up the development with better modularization of the code +* Testability. +* Extensibility. +* Performance (of course we should take care of Performance, but as the API will be executed from a batch, +we don't care if the response takes 2 seconds more or less) + +## Considered Options + +* jooby with Dagger and Groovy: poor documentation and examples +* jooby with SpringFramework and Groovy: poor documentation and examples +* SpringFramework and Groovy + +## Decision Outcome + +Chosen option: "SpringFramework", because: +- It has the best integration with more frameworks, means also better extensibility +- There's a lot of documentation and examples. Easy to solve problems +- There's a bigger community of users: easy to involve new developers + +### Negative Consequences + +* We should do a big refactor + diff --git a/docs/decisions/0002-testing-strategy.md b/docs/decisions/0002-testing-strategy.md new file mode 100644 index 00000000..8b18d4bc --- /dev/null +++ b/docs/decisions/0002-testing-strategy.md @@ -0,0 +1,74 @@ +# Autoamated testing strategy + +* Status: accepted +* Deciders: Sergio Sacristán +* Date: 2021-12-22 + +## Context and Problem Statement + +When unit testing a service, the standard unit is usually the service class, simple as that. The test will mock out the layer underneath in this case the DAO/DAL layer and verify the interactions on it. Exact same thing for the DAO layer mocking out the interactions with the database (HibernateTemplate in this example) and verifying the interactions with that. + +This is a valid approach, but it leads to brittle tests adding or removing a layer almost always means rewriting the tests entirely. This happens because the tests rely on the exact structure of the layers, and a change to that means a change to the tests. +To avoid this kind of inflexibility, we can grow the scope of the unit test by changing the definition of the unit we can look at a persistent operation as a unit, from the Service Layer through the DAO and all the way day to the raw persistence whatever that is. Now, the unit test will consume the API of the Service Layer and will have the raw persistence mocked out in this case, the "templates.repository" + +## Decision Drivers + +* Optimize testing effort +* Improve test quality + +## Decision Outcome + +https://github.com/portainer/portainer +https://localhost:9443/ +admin 12345678 + +### Positive Consequences + +* {e.g., improvement of quality attribute satisfaction, follow-up decisions required, …} +* … + +### Negative Consequences + +* {e.g., compromising quality attribute, follow-up decisions required, …} +* … + +## Pros and Cons of the Options + +### {option 1} + +{example | description | pointer to more information | …} + +* Good, because {argument a} +* Good, because {argument b} +* Bad, because {argument c} +* … + +### {option 2} + +{example | description | pointer to more information | …} + +* Good, because {argument a} +* Good, because {argument b} +* Bad, because {argument c} +* … + +### {option 3} + +{example | description | pointer to more information | …} + +* Good, because {argument a} +* Good, because {argument b} +* Bad, because {argument c} +* … + +## Links + +* {Link type} {Link to ADR} +* … + + + + + + + diff --git a/docs/decisions/adr-template.md b/docs/decisions/adr-template.md new file mode 100644 index 00000000..2b3a5497 --- /dev/null +++ b/docs/decisions/adr-template.md @@ -0,0 +1,74 @@ +# {short title of solved problem and solution} + +* Status: {proposed | rejected | accepted | deprecated | … | superseded by [ADR-0005](0005-example.md)} +* Deciders: {list everyone involved in the decision} +* Date: {YYYY-MM-DD when the decision was last updated} + +Technical Story: {description | ticket/issue URL} + +## Context and Problem Statement + +{Describe the context and problem statement, e.g., in free form using two to three sentences. You may want to articulate the problem in form of a question.} + +## Decision Drivers + +* {driver 1, e.g., a force, facing concern, …} +* {driver 2, e.g., a force, facing concern, …} +* … + +## Considered Options + +* {option 1} +* {option 2} +* {option 3} +* … + +## Decision Outcome + +Chosen option: "{option 1}", because {justification. e.g., only option, which meets k.o. criterion decision driver | which resolves force {force} | … | comes out best (see below)}. + +### Positive Consequences + +* {e.g., improvement of quality attribute satisfaction, follow-up decisions required, …} +* … + +### Negative Consequences + +* {e.g., compromising quality attribute, follow-up decisions required, …} +* … + +## Pros and Cons of the Options + +### {option 1} + +{example | description | pointer to more information | …} + +* Good, because {argument a} +* Good, because {argument b} +* Bad, because {argument c} +* … + +### {option 2} + +{example | description | pointer to more information | …} + +* Good, because {argument a} +* Good, because {argument b} +* Bad, because {argument c} +* … + +### {option 3} + +{example | description | pointer to more information | …} + +* Good, because {argument a} +* Good, because {argument b} +* Bad, because {argument c} +* … + +## Links + +* {Link type} {Link to ADR} +* … + + \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index f4d7b2bf..00e33ede 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/src/gatling/java/org/ods/doc/gen/GatlingRunner.java b/src/gatling/java/org/ods/doc/gen/GatlingRunner.java new file mode 100644 index 00000000..50ffab0e --- /dev/null +++ b/src/gatling/java/org/ods/doc/gen/GatlingRunner.java @@ -0,0 +1,13 @@ +package org.ods.doc.gen; + +import io.gatling.app.Gatling; +import io.gatling.core.config.GatlingPropertiesBuilder; + +public class GatlingRunner { + public static void main(String[] args) { + GatlingPropertiesBuilder props = new GatlingPropertiesBuilder(); + props.simulationClass(LoadSimulation.class.getName()); + props.resultsDirectory("build/reports/gatling"); + Gatling.fromMap(props.build()); + } +} diff --git a/src/gatling/java/org/ods/doc/gen/LoadSimulation.java b/src/gatling/java/org/ods/doc/gen/LoadSimulation.java new file mode 100644 index 00000000..0c57c294 --- /dev/null +++ b/src/gatling/java/org/ods/doc/gen/LoadSimulation.java @@ -0,0 +1,56 @@ +package org.ods.doc.gen; + +import io.gatling.javaapi.core.ScenarioBuilder; +import io.gatling.javaapi.core.Simulation; +import io.restassured.http.ContentType; +import org.awaitility.Awaitility; + +import java.util.concurrent.TimeUnit; + +import static io.gatling.javaapi.core.CoreDsl.atOnceUsers; +import static io.gatling.javaapi.core.CoreDsl.exec; +import static io.gatling.javaapi.core.CoreDsl.global; +import static io.gatling.javaapi.core.CoreDsl.scenario; +import static io.gatling.javaapi.http.HttpDsl.http; +import static io.gatling.javaapi.http.HttpDsl.status; +import static io.restassured.RestAssured.given; + +public class LoadSimulation extends Simulation { + + public static final String HEALTH = "http://localhost:1111/health"; + // TODO -> change POST_PDF by "http://localhost:8080/document" and test a big doc + public static final String POST_PDF = "http://localhost:1111/health"; + public static final int STATUS_CODE_OK = 200; + + public static final int EXECUTION_TIMES = 100; + + // Assertions: https://gatling.io/docs/gatling/reference/current/core/assertions/ + public static final double SUCCESSFUL_REQUEST_PERCENT = 100.0; + public static final int MAX_RESPONSE_TIME = 400; + public static final int MEAN_RESPONSE_TIME = 300; + + ScenarioBuilder scn = scenario( "postPDF").repeat(EXECUTION_TIMES).on( + exec( + http("POST_PDF") + .get(POST_PDF) + .asJson() + .check(status().is(STATUS_CODE_OK)) + ).pause(1) + ); + + { + waitUntilDocGenIsUp(); + setUp(scn.injectOpen(atOnceUsers(1))).assertions( + global().successfulRequests().percent().is(SUCCESSFUL_REQUEST_PERCENT), + global().responseTime().max().lt(MAX_RESPONSE_TIME), + global().responseTime().mean().lt(MEAN_RESPONSE_TIME) + );; + } + + private void waitUntilDocGenIsUp() { + Awaitility.await().atMost(60, TimeUnit.SECONDS).pollInterval(5, TimeUnit.SECONDS).until(() -> + { + return given().contentType(ContentType.JSON).when().get(HEALTH).getStatusCode() == STATUS_CODE_OK; + }); + } +} \ No newline at end of file diff --git a/src/main/groovy/app/App.groovy b/src/main/groovy/app/App.groovy deleted file mode 100644 index aee17004..00000000 --- a/src/main/groovy/app/App.groovy +++ /dev/null @@ -1,127 +0,0 @@ -package app - -import com.typesafe.config.ConfigFactory -import groovy.util.logging.Slf4j -import org.jooby.Jooby -import org.jooby.MediaType -import org.jooby.json.Jackson -import util.DocUtils -import util.FileTools - -import java.nio.file.Files -import java.nio.file.StandardOpenOption - -import static groovy.json.JsonOutput.prettyPrint -import static groovy.json.JsonOutput.toJson -import static org.jooby.JoobyExtension.get -import static org.jooby.JoobyExtension.post - -@Slf4j -class App extends Jooby { - - { - - use(new Jackson()) - use(new DocGen()) - - post(this, "/document", { req, rsp -> - - Map body = req.body().to(HashMap.class) - - validateRequestParams(body) - - if (log.isDebugEnabled()) { - log.debug("Input request body data before send it to convert it to a pdf: ") - log.debug(prettyPrint(toJson(body.data))) - } - - FileTools.newTempFile('document', '.b64') { dataFile -> - new DocGen().generate(body.metadata.type, body.metadata.version, body.data).withFile { pdf -> - body = null // Not used anymore. Let it be garbage-collected. - dataFile.withOutputStream { os -> - Base64.getEncoder().wrap(os).withStream { encOs -> - Files.copy(pdf, encOs) - } - } - } - def dataLength = Files.size(dataFile) - rsp.length(dataLength + RES_PREFIX.length + RES_SUFFIX.length) - rsp.type(MediaType.json) - def prefixIs = new ByteArrayInputStream(RES_PREFIX) - def suffixIs = new ByteArrayInputStream(RES_SUFFIX) - Files.newInputStream(dataFile, StandardOpenOption.DELETE_ON_CLOSE).initResource { dataIs -> - // Jooby is asynchronous. Upon return of the send method, the response has not necessarily - // been sent. For this reason, we rely on Jooby to close the InputStream and the temporary file - // will be deleted on close. - rsp.send(new SequenceInputStream(Collections.enumeration([prefixIs, dataIs, suffixIs]))) - } - } - - }) - .consumes(MediaType.json) - .produces(MediaType.json) - - get(this, "/health", { req, rsp -> - def message = null - def status = "passing" - def statusCode = 200 - - try { - FileTools.withTempFile("document", ".html") { documentHtmlFile -> - documentHtmlFile << "document" - - DocGen.Util.convertHtmlToPDF(documentHtmlFile, null).withFile { pdf -> - def header = DocUtils.getPDFHeader(pdf) - if (header != PDF_HEADER) { - message = "conversion form HTML to PDF failed" - status = "failing" - statusCode = 500 - } - return pdf - } - - } - } catch (e) { - message = e.message - status = "failing" - statusCode = 500 - } - - def result = [ - service: "docgen", - status: status, - time: new Date().toString() - ] - - if (message) { - result.message = message - } - - rsp.status(statusCode).send(result) - }) - .produces(MediaType.json) - } - - private static final RES_PREFIX = '{"data":"'.getBytes('US-ASCII') - private static final RES_SUFFIX = '"}'.getBytes('US-ASCII') - private static final PDF_HEADER = '%PDF-1.4' - - private static void validateRequestParams(Map body) { - if (body?.metadata?.type == null) { - throw new IllegalArgumentException("missing argument 'metadata.type'") - } - - if (body?.metadata?.version == null) { - throw new IllegalArgumentException("missing argument 'metadata.version'") - } - - if (body?.data == null) { - throw new IllegalArgumentException("missing argument 'data'") - } - } - - static void main(String... args) { - ConfigFactory.invalidateCaches() - run(App.class, args) - } -} diff --git a/src/main/groovy/app/BitBucketDocumentTemplatesStore.groovy b/src/main/groovy/app/BitBucketDocumentTemplatesStore.groovy deleted file mode 100644 index de9728d6..00000000 --- a/src/main/groovy/app/BitBucketDocumentTemplatesStore.groovy +++ /dev/null @@ -1,130 +0,0 @@ -package app - -import feign.Response -import feign.codec.ErrorDecoder -import util.DocUtils -import com.typesafe.config.Config -import com.typesafe.config.ConfigFactory - -import feign.Feign -import feign.Headers -import feign.Param -import feign.RequestLine -import feign.auth.BasicAuthRequestInterceptor -import feign.FeignException - -import org.apache.http.client.utils.URIBuilder -import util.FileTools - -import java.nio.file.Files -import java.nio.file.Path -import java.nio.file.StandardCopyOption - -interface BitBucketDocumentTemplatesStoreHttpAPI { - @Headers("Accept: application/octet-stream") - @RequestLine("GET /rest/api/latest/projects/{documentTemplatesProject}/repos/{documentTemplatesRepo}/archive?at=refs/heads/release/v{version}&format=zip") - Response getTemplatesZipArchiveForVersion(@Param("documentTemplatesProject") String documentTemplatesProject, @Param("documentTemplatesRepo") String documentTemplatesRepo, @Param("version") String version) -} - -class BitBucketDocumentTemplatesStore implements DocumentTemplatesStore { - - Config config - - // TODO: use dependency injection - BitBucketDocumentTemplatesStore() { - this.config = ConfigFactory.load() - } - - // Get document templates of a specific version into a target directory - Path getTemplatesForVersion(String version, Path targetDir) { - def uri = getZipArchiveDownloadURI(version) - - Feign.Builder builder = Feign.builder() - - def bitbucketUserName = System.getenv("BITBUCKET_USERNAME") - def bitbucketPassword = System.getenv("BITBUCKET_PASSWORD") - if (bitbucketUserName && bitbucketPassword) { - builder.requestInterceptor(new BasicAuthRequestInterceptor( - bitbucketUserName, bitbucketPassword - )) - } - - BitBucketDocumentTemplatesStoreHttpAPI store = builder.target( - BitBucketDocumentTemplatesStoreHttpAPI.class, - uri.getScheme() + "://" + uri.getAuthority() - ) - - - def bitbucketRepo = System.getenv("BITBUCKET_DOCUMENT_TEMPLATES_REPO") - def bitbucketProject = System.getenv("BITBUCKET_DOCUMENT_TEMPLATES_PROJECT") - try { - return store.getTemplatesZipArchiveForVersion( - bitbucketProject, - bitbucketRepo, - version - ).withCloseable { response -> - if (response.status() >= 300) { - def methodKey = - 'BitBucketDocumentTemplatesStoreHttpAPI#getTemplatesZipArchiveForVersion(String,String,String)' - throw new ErrorDecoder.Default().decode(methodKey, response) - } - return FileTools.withTempFile('tmpl', 'zip') { zipArchive -> - response.body().withCloseable { body -> - body.asInputStream().withStream { is -> - Files.copy(is, zipArchive, StandardCopyOption.REPLACE_EXISTING) - } - } - return DocUtils.extractZipArchive(zipArchive, targetDir) - } - } - } catch (FeignException callException) { - def baseErrMessage = "Could not get document zip from '${uri}'!" - def baseRepoErrMessage = "${baseErrMessage}\rIn repository '${bitbucketRepo}' - " - if (callException instanceof FeignException.BadRequest) { - throw new RuntimeException ("${baseRepoErrMessage}" + - "is there a correct release branch configured, called 'release/v${version}'?") - } else if (callException instanceof FeignException.Unauthorized) { - def bbUserNameError = bitbucketUserName ?: 'Anyone' - throw new RuntimeException ("${baseRepoErrMessage}" + - "does '${bbUserNameError}' have access?") - } else if (callException instanceof FeignException.NotFound) { - throw new RuntimeException ("${baseErrMessage}" + - "\rDoes repository '${bitbucketRepo}' in project: '${bitbucketProject}' exist?") - } else { - throw callException - } - } - } - - // Get a URI to download document templates of a specific version - URI getZipArchiveDownloadURI(String version) { - return new URIBuilder(System.getenv("BITBUCKET_URL")) - .setPath("/rest/api/latest/projects/${System.getenv('BITBUCKET_DOCUMENT_TEMPLATES_PROJECT')}/repos/${System.getenv('BITBUCKET_DOCUMENT_TEMPLATES_REPO')}/archive") - .addParameter("at", "refs/heads/release/v${version}") - .addParameter("format", "zip") - .build() - } - - boolean isApplicableToSystemConfig () - { - List missingEnvs = [ ] - if (!System.getenv("BITBUCKET_URL")) { - missingEnvs << "BITBUCKET_URL" - } - - if (!System.getenv("BITBUCKET_DOCUMENT_TEMPLATES_PROJECT")) { - missingEnvs << "BITBUCKET_DOCUMENT_TEMPLATES_PROJECT" - } - - if (!System.getenv("BITBUCKET_DOCUMENT_TEMPLATES_REPO")) { - missingEnvs << "BITBUCKET_DOCUMENT_TEMPLATES_REPO" - } - - if (missingEnvs.size() > 0) { - println "[ERROR]: Bitbucket adapter not applicable - missing config '${missingEnvs}'" - return false - } - - return true - } -} diff --git a/src/main/groovy/app/DocGen.groovy b/src/main/groovy/app/DocGen.groovy deleted file mode 100644 index 849c783d..00000000 --- a/src/main/groovy/app/DocGen.groovy +++ /dev/null @@ -1,312 +0,0 @@ -package app - -import com.github.benmanes.caffeine.cache.Cache -import com.github.benmanes.caffeine.cache.Caffeine -import com.github.jknack.handlebars.Handlebars -import com.github.jknack.handlebars.io.FileTemplateLoader -import com.google.inject.Binder -import com.typesafe.config.Config -import com.typesafe.config.ConfigFactory -import org.apache.commons.io.file.PathUtils -import org.apache.commons.io.output.TeeOutputStream -import org.apache.pdfbox.io.MemoryUsageSetting -import org.apache.pdfbox.pdmodel.PDDocument -import org.apache.pdfbox.pdmodel.PDDocumentNameDestinationDictionary -import org.apache.pdfbox.pdmodel.PDPage -import org.apache.pdfbox.pdmodel.common.PDNameTreeNode -import org.apache.pdfbox.pdmodel.interactive.action.PDActionGoTo -import org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageDestination -import org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationLink -import org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineNode -import util.FileTools - -import java.nio.file.Files -import java.nio.file.Path -import java.nio.file.Paths -import java.nio.file.StandardCopyOption -import java.time.Duration - -import org.apache.commons.io.FilenameUtils -import org.jooby.Env -import org.jooby.Jooby - -class DocGen implements Jooby.Module { - - Config config - Cache templatesCache - - // TODO: use dependency injection - DocGen() { - this.config = ConfigFactory.load() - - this.templatesCache = Caffeine.newBuilder() - .expireAfterWrite(Duration.ofDays(1)) - .removalListener({ key, graph, cause -> - def path = getPathForTemplatesVersion(key) - if (Files.exists(path)) { - PathUtils.deleteDirectory(path) - } - }) - .build() - } - - void configure(Env env, Config config, Binder binder) { - } - - // Get document templates for a specific version - private Path getTemplates(def version) { - DocumentTemplatesStore store = new BitBucketDocumentTemplatesStore() - if (!store.isApplicableToSystemConfig()) { - store = new GithubDocumentTemplatesStore() - } - println ("Using templates @${store.getZipArchiveDownloadURI(version)}") - - def path = templatesCache.getIfPresent(version) - if (path == null) { - path = store.getTemplatesForVersion(version, getPathForTemplatesVersion(version)) - templatesCache.put(version, path) - } - - return path - } - - // Generate a PDF document for a combination of template type, version and data - Path generate(String type, String version, Object data) { - // Copy the templates directory including with any assets into a temporary location - return FileTools.withTempDir("${type}-v${version}") { tmpDir -> - PathUtils.copyDirectory(getTemplates(version), tmpDir, StandardCopyOption.REPLACE_EXISTING) - - // Get partial templates from the temporary location and manipulate as needed - def partials = getPartialTemplates(tmpDir, type) - - // Transform paths to partial templates to paths to rendered HTML files - partials = partials.collectEntries { name, path -> - // Write an .html file next to the .tmpl file containing the executed template - def htmlFile = Paths.get(FilenameUtils.removeExtension(path.toString())) - Util.executeTemplate(path, htmlFile, data) - return [ name, htmlFile ] - } - - // Convert the executed templates into a PDF document - return Util.convertHtmlToPDF(partials.document, data) - } - } - - // Read partial templates for a template type and version from the basePath directory - private static Map getPartialTemplates(Path basePath, String type) { - def partials = [ - document: Paths.get(basePath.toString(), "templates", "${type}.html.tmpl"), - header: Paths.get(basePath.toString(), "templates", "header.inc.html.tmpl"), - footer: Paths.get(basePath.toString(), "templates", "footer.inc.html.tmpl") - ] - - partials.each { name, path -> - // Check if the partial template exists - if (!Files.exists(path)) { - throw new FileNotFoundException("could not find required template part '${name}' at '${path}'") - } - - FileTools.newTempFile("${name}_tmpl") { tmp -> - path.withReader { reader -> - tmp.withWriter { writer -> - reader.eachLine { line -> - def replaced = line.replaceAll('\t', '') - writer.write(replaced) - } - } - } - Files.move(tmp, path, StandardCopyOption.REPLACE_EXISTING) - } - } - - return partials - } - - // Get a path to a directory holding document templates for a specific version - private Path getPathForTemplatesVersion(String version) { - return Paths.get(this.config.getString("application.documents.cache.basePath"), version) - } - - class Util { - // Execute a document template with the necessary data - static private void executeTemplate(Path path, Path dest, Object data) { - // TODO: throw if template variables are not provided - def loader = new FileTemplateLoader("", "") - dest.withWriter { writer -> - new Handlebars(loader) - .compile(path.toString()) - .apply(data, writer) - } - } - - // Convert a HTML document, with an optional header and footer, into a PDF - static Path convertHtmlToPDF(Path documentHtmlFile, Object data) { - def cmd = ["wkhtmltopdf", "--encoding", "UTF-8", "--no-outline", "--print-media-type"] - cmd << "--enable-local-file-access" - cmd.addAll(["-T", "40", "-R", "25", "-B", "25", "-L", "25"]) - - if (data?.metadata?.header) { - if (data.metadata.header.size() > 1) { - cmd.addAll(["--header-center", """${data.metadata.header[0]} -${data.metadata.header[1]}"""]) - } else { - cmd.addAll(["--header-center", data.metadata.header[0]]) - } - - cmd.addAll(["--header-font-size", "10", "--header-spacing", "10"]) - } - - cmd.addAll(["--footer-center", "'Page [page] of [topage]'", "--footer-font-size", "10"]) - - if (data?.metadata?.orientation) { - cmd.addAll(["--orientation", data.metadata.orientation]) - } - - cmd << documentHtmlFile.toAbsolutePath().toString() - - return FileTools.newTempFile("document", ".pdf") { documentPDFFile -> - cmd << documentPDFFile.toAbsolutePath().toString() - - println "[INFO]: executing cmd: ${cmd}" - - def result = shell(cmd) - if (result.rc != 0) { - println "[ERROR]: ${cmd} has exited with code ${result.rc}" - println "[ERROR]: ${result.stderr}" - throw new IllegalStateException( - "PDF Creation of ${documentHtmlFile} failed!\r:${result.stderr}\r:Error code:${result.rc}") - } - - fixDestinations(documentPDFFile.toFile()) - } - } - - // Execute a command in the shell - static private Map shell(List cmd) { - - def proc = cmd.execute() - def stderr = null - def rc = FileTools.withTempFile("shell", ".stderr") { tempFile -> - tempFile.withOutputStream { tempFileOutputStream -> - new TeeOutputStream(System.err, tempFileOutputStream).withStream { errOutputStream -> - proc.waitForProcessOutput(System.out, errOutputStream) - } - } - def exitValue = proc.exitValue() - if (exitValue) { - stderr = tempFile.text - } - return exitValue - } - - return [ - rc: rc, - stderr: stderr - ] - } - - private static final long MAX_MEMORY_TO_FIX_DESTINATIONS = 8192L - - /** - * Fixes malformed PDF documents which use page numbers in local destinations, referencing the same document. - * Page numbers should be used only for references to external documents. - * These local destinations must use indirect page object references. - * Note that these malformed references are not correctly renumbered when merging documents. - * This method finds these malformed references and replaces the page numbers by the corresponding - * page object references. - * If the document is not malformed, this method will leave it unchanged. - * - * @param pdf a PDF file. - */ - private static void fixDestinations(File pdf) { - def memoryUsageSetting = MemoryUsageSetting.setupMixed(MAX_MEMORY_TO_FIX_DESTINATIONS) - PDDocument.load(pdf, memoryUsageSetting).withCloseable { doc -> - fixDestinations(doc) - doc.save(pdf) - } - } - - /** - * Fixes malformed PDF documents which use page numbers in local destinations, referencing the same document. - * Page numbers should be used only for references to external documents. - * These local destinations must use indirect page object references. - * Note that these malformed references are not correctly renumbered when merging documents. - * This method finds these malformed references and replaces the page numbers by the corresponding - * page object references. - * If the document is not malformed, this method will leave it unchanged. - * - * @param doc a PDF document. - */ - private static void fixDestinations(PDDocument doc) { - def pages = doc.pages as List // Accessing pages by index is slow. This will make it fast. - fixExplicitDestinations(pages) - def catalog = doc.documentCatalog - fixNamedDestinations(catalog, pages) - fixOutline(catalog, pages) - } - - private static fixExplicitDestinations(pages) { - pages.each { page -> - page.getAnnotations { it instanceof PDAnnotationLink }.each { link -> - fixDestinationOrAction(link, pages) - } - } - } - - private static fixNamedDestinations(catalog, pages) { - fixStringDestinations(catalog.names?.dests, pages) - fixNameDestinations(catalog.dests, pages) - } - - private static fixOutline(catalog, pages) { - def outline = catalog.documentOutline - if (outline != null) { - fixOutlineNode(outline, pages) - } - } - - private static fixStringDestinations(PDNameTreeNode node, pages) { - if (node) { - node.names?.each { name, dest -> fixDestination(dest, pages) } - node.kids?.each { fixStringDestinations(it, pages) } - } - } - - private static fixNameDestinations(PDDocumentNameDestinationDictionary dests, pages) { - dests?.COSObject?.keySet()*.name.each { name -> - def dest = dests.getDestination(name) - if (dest instanceof PDPageDestination) { - fixDestination(dest, pages) - } - } - } - - private static fixOutlineNode(PDOutlineNode node, pages) { - node.children().each { item -> - fixDestinationOrAction(item, pages) - fixOutlineNode(item, pages) - } - } - - private static fixDestinationOrAction(item, pages) { - def dest = item.destination - if (dest == null) { - def action = item.action - if (action instanceof PDActionGoTo) { - dest = action.destination - } - } - if (dest instanceof PDPageDestination) { - fixDestination(dest, pages) - } - } - - private static fixDestination(PDPageDestination dest, List pages) { - def pageNum = dest.pageNumber - if (pageNum != -1) { - dest.setPage(pages[pageNum]) - } - } - - } -} diff --git a/src/main/groovy/app/DocumentTemplatesStore.groovy b/src/main/groovy/app/DocumentTemplatesStore.groovy deleted file mode 100644 index 6854ed09..00000000 --- a/src/main/groovy/app/DocumentTemplatesStore.groovy +++ /dev/null @@ -1,14 +0,0 @@ -package app - -import java.nio.file.Path - -interface DocumentTemplatesStore { - - // Get document templates of a specific version into a target directory - Path getTemplatesForVersion(String version, Path targetDir) - - // Get a URI to download document templates of a specific version - URI getZipArchiveDownloadURI(String version) - - boolean isApplicableToSystemConfig () -} diff --git a/src/main/groovy/app/GithubDocumentTemplatesStore.groovy b/src/main/groovy/app/GithubDocumentTemplatesStore.groovy deleted file mode 100644 index 27d1dfc5..00000000 --- a/src/main/groovy/app/GithubDocumentTemplatesStore.groovy +++ /dev/null @@ -1,94 +0,0 @@ -package app - -import feign.Response -import feign.codec.ErrorDecoder -import okhttp3.OkHttpClient -import org.apache.http.client.utils.URIBuilder -import com.typesafe.config.Config -import com.typesafe.config.ConfigFactory -import feign.Feign -import feign.Headers -import feign.Param -import feign.RequestLine -import util.DocUtils -import util.FileTools - -import java.nio.file.Files -import java.nio.file.Path -import java.nio.file.StandardCopyOption - -interface GithubDocumentTemplatesStoreHttpAPI { - @Headers("Accept: application/octet-stream") - @RequestLine("GET /opendevstack/ods-document-generation-templates/archive/v{version}.zip") - Response getTemplatesZipArchiveForVersion(@Param("version") String version) -} - -class GithubDocumentTemplatesStore implements DocumentTemplatesStore { - - Config config - - // TODO: use dependency injection - GithubDocumentTemplatesStore() { - this.config = ConfigFactory.load() - } - - // Get document templates of a specific version into a target directory - Path getTemplatesForVersion(String version, Path targetDir) { - def uri = getZipArchiveDownloadURI(version) - Feign.Builder builder = createBuilder()['builder'] - - GithubDocumentTemplatesStoreHttpAPI store = builder.target( - GithubDocumentTemplatesStoreHttpAPI.class, - uri.getScheme() + "://" + uri.getAuthority() - ) - - return store.getTemplatesZipArchiveForVersion(version).withCloseable { response -> - if (response.status() >= 300) { - def methodKey = - 'GithubDocumentTemplatesStoreHttpAPI#getTemplatesZipArchiveForVersion(String)' - throw new ErrorDecoder.Default().decode(methodKey, response) - } - return FileTools.withTempFile('tmpl', 'zip') { zipArchive -> - response.body().withCloseable { body -> - body.asInputStream().withStream { is -> - Files.copy(is, zipArchive, StandardCopyOption.REPLACE_EXISTING) - } - } - return DocUtils.extractZipArchive( - zipArchive, targetDir, "ods-document-generation-templates-${version}") - } - } - } - - // Get a URI to download document templates of a specific version - URI getZipArchiveDownloadURI(String version) { - // for testing - String githubUrl = System.getenv("GITHUB_HOST") ?: "https://www.github.com" - return new URIBuilder(githubUrl) - .setPath("/opendevstack/ods-document-generation-templates/archive/v${version}.zip") - .build() - } - - // proxy setup, we return a map for testing - Map createBuilder () { - String[] httpProxyHost = System.getenv('HTTP_PROXY')?.trim()?.replace('http://','')?.split(':') - println ("Proxy setup: ${httpProxyHost ?: 'not found' }") - if (httpProxyHost && !System.getenv("GITHUB_HOST")) { - int httpProxyPort = httpProxyHost.size() == 2 ? Integer.parseInt(httpProxyHost[1]) : 80 - Proxy proxy = new Proxy(Proxy.Type.HTTP, - new InetSocketAddress(httpProxyHost[0], httpProxyPort)) - OkHttpClient okHttpClient = new OkHttpClient().newBuilder().proxy(proxy).build() - return [ - 'builder': Feign.builder().client(new feign.okhttp.OkHttpClient(okHttpClient)), - 'proxy' : proxy - ] - } else { - return ['builder' : Feign.builder()] - } - } - - boolean isApplicableToSystemConfig () - { - return true - } -} diff --git a/src/main/groovy/org/jooby/JoobyExtension.groovy b/src/main/groovy/org/jooby/JoobyExtension.groovy deleted file mode 100644 index c5d24be5..00000000 --- a/src/main/groovy/org/jooby/JoobyExtension.groovy +++ /dev/null @@ -1,32 +0,0 @@ -package org.jooby - -import org.jooby.Jooby -import org.jooby.Route - -/** Example on how to hack Groovy so we can use groovy closure on script routes. */ -class JoobyExtension { - - private static Route.Filter toHandler(Closure closure) { - if (closure.maximumNumberOfParameters == 0) { - Route.ZeroArgHandler handler = { closure() } - return handler - } else if (closure.maximumNumberOfParameters == 1) { - Route.OneArgHandler handler = { req -> closure(req) } - return handler - } else if (closure.maximumNumberOfParameters == 2) { - Route.Handler handler = { req, rsp -> closure(req, rsp) } - return handler - } - - Route.Filter handler = { req, rsp, chain -> closure(req, rsp, chain) } - return handler - } - - static Route.Definition get(Jooby self, String pattern, Closure closure) { - return self.get(pattern, toHandler(closure)); - } - - static Route.Definition post(Jooby self, String pattern, Closure closure) { - return self.post(pattern, toHandler(closure)); - } -} diff --git a/src/main/groovy/org/ods/doc/gen/App.groovy b/src/main/groovy/org/ods/doc/gen/App.groovy new file mode 100644 index 00000000..5db372bb --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/App.groovy @@ -0,0 +1,13 @@ +package org.ods.doc.gen + +import org.springframework.boot.SpringApplication +import org.springframework.boot.autoconfigure.SpringBootApplication + +@SpringBootApplication +class App { + + static void main(String... args) { + SpringApplication.run(App.class, args) + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/AppConfiguration.groovy b/src/main/groovy/org/ods/doc/gen/AppConfiguration.groovy new file mode 100644 index 00000000..631f5f0d --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/AppConfiguration.groovy @@ -0,0 +1,64 @@ +package org.ods.doc.gen + +import com.github.benmanes.caffeine.cache.Caffeine +import org.apache.commons.io.FileUtils +import org.springframework.beans.factory.annotation.Value +import org.springframework.cache.annotation.EnableCaching +import org.springframework.cache.caffeine.CaffeineCache +import org.springframework.cloud.openfeign.EnableFeignClients +import org.springframework.context.annotation.Bean +import org.springframework.context.annotation.Configuration + +import java.nio.file.Paths +import java.time.Clock +import java.time.Duration + +@EnableCaching +@EnableFeignClients +@Configuration +class AppConfiguration { + + private static final String TEMPLATES = "templates" + private static final String TEMPORAL_FOLDER = "temporalFolder" + private static final String PROJECT_DATA = "projectData" + public static final int DAYS_IN_CACHE = 1 + + @Bean + Clock aClockBeanToMockInTesting() { + return Clock.systemDefaultZone() + } + + @Bean + CaffeineCache caffeineTemplatesFolder(@Value('${cache.documents.basePath}') String basePath) { + FileUtils.deleteDirectory(Paths.get(basePath).toFile()) + return new CaffeineCache( + TEMPLATES, + Caffeine.newBuilder() + .expireAfterWrite(Duration.ofDays(DAYS_IN_CACHE)) + .removalListener({ version, graph, cause -> + FileUtils.deleteDirectory(Paths.get(basePath, version as String).toFile()) + }).build() + ) + } + + @Bean + CaffeineCache caffeineTemporalFolder() { + return new CaffeineCache( + TEMPORAL_FOLDER, + Caffeine.newBuilder() + .expireAfterWrite(Duration.ofDays(DAYS_IN_CACHE)) + .removalListener({ id, graph, cause -> + FileUtils.deleteDirectory(Paths.get(id as String).toFile()) + }).build() + ) + } + + @Bean + CaffeineCache caffeineProjectDataConfig(@Value('${cache.projectData.expiration.minutes}') Long expirationMinutes) { + return new CaffeineCache( + PROJECT_DATA, + Caffeine.newBuilder().expireAfterWrite(Duration.ofMinutes(expirationMinutes)).build() + ) + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/BitBucketClientConfig.groovy b/src/main/groovy/org/ods/doc/gen/BitBucketClientConfig.groovy new file mode 100644 index 00000000..7ea42bcb --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/BitBucketClientConfig.groovy @@ -0,0 +1,42 @@ +package org.ods.doc.gen + +import feign.Feign +import feign.Logger +import feign.auth.BasicAuthRequestInterceptor +import feign.slf4j.Slf4jLogger +import groovy.util.logging.Slf4j +import okhttp3.OkHttpClient +import org.apache.http.client.utils.URIBuilder +import org.ods.doc.gen.adapters.git.BitBucketRepository +import org.springframework.beans.factory.annotation.Value +import org.springframework.stereotype.Service + +@Slf4j +@Service +class BitBucketClientConfig { + + final String username + private final String password + String url + + BitBucketClientConfig(@Value('${bitbucket.username}') String username, + @Value('${bitbucket.password}') String password, + @Value('${bitbucket.url}') String url){ + log.info("BitBucketClientConfig - url:[${url}], username:[${username}]") + + this.password = password + this.username = username + this.url = url + } + + BitBucketRepository getClient() { + URI baseUrl = new URIBuilder(url).build() + Feign.Builder builder = Feign.builder() + builder.requestInterceptor(new BasicAuthRequestInterceptor(username, password)) + feign.okhttp.OkHttpClient client = new feign.okhttp.OkHttpClient(new OkHttpClient().newBuilder().build()) + return builder.client(client).logger(new Slf4jLogger(BitBucketRepository.class)) + .logLevel(Logger.Level.BASIC) + .target(BitBucketRepository.class, baseUrl.getScheme() + "://" + baseUrl.getAuthority()) + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/GithubClientConfig.groovy b/src/main/groovy/org/ods/doc/gen/GithubClientConfig.groovy new file mode 100644 index 00000000..0b6260a9 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/GithubClientConfig.groovy @@ -0,0 +1,42 @@ +package org.ods.doc.gen + +import feign.Feign +import feign.Logger +import feign.slf4j.Slf4jLogger +import groovy.util.logging.Slf4j +import okhttp3.OkHttpClient +import org.ods.doc.gen.adapters.git.GitHubRepository +import org.springframework.beans.factory.annotation.Value +import org.springframework.stereotype.Service + +@Slf4j +@Service +class GithubClientConfig { + + String url + String[] httpProxyHost + + GithubClientConfig(@Value('${github.url}') String url){ + log.info("GithubClientConfig - url:[${url}]") + + this.url = url + httpProxyHost = System.getenv('HTTP_PROXY')?.trim()?.replace('http://', '')?.split(':') + } + + GitHubRepository getClient() { + feign.okhttp.OkHttpClient client + if (httpProxyHost) { + log.info ("Proxy setup: ${httpProxyHost}") + int httpProxyPort = httpProxyHost.size() == 2 ? Integer.parseInt(httpProxyHost[1]) : 80 + Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(httpProxyHost[0], httpProxyPort)) + client = new feign.okhttp.OkHttpClient(new OkHttpClient().newBuilder().proxy(proxy).build()) + } else { + client = new feign.okhttp.OkHttpClient(new OkHttpClient().newBuilder().build()) + } + URI baseUrl = URI.create(url) + return Feign.builder().client(client).logger(new Slf4jLogger(GitHubRepository.class)) + .logLevel(Logger.Level.BASIC) + .target(GitHubRepository.class, baseUrl.getScheme() + "://" + baseUrl.getAuthority()) + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/SpringContext.groovy b/src/main/groovy/org/ods/doc/gen/SpringContext.groovy new file mode 100644 index 00000000..8ca4acc2 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/SpringContext.groovy @@ -0,0 +1,27 @@ +package org.ods.doc.gen + +import org.springframework.beans.BeansException +import org.springframework.context.ApplicationContext +import org.springframework.context.ApplicationContextAware +import org.springframework.stereotype.Component + +@Component +class SpringContext implements ApplicationContextAware { + + private static ApplicationContext context; + + /** + * Returns the Spring managed bean instance of the given class type if it exists. + * Returns null otherwise. + * @param beanClass + * @return + */ + static T getBean(Class beanClass) { + return context.getBean(beanClass); + } + + @Override + void setApplicationContext(ApplicationContext context) throws BeansException { + SpringContext.context = context; + } +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/StartupApplicationListener.groovy b/src/main/groovy/org/ods/doc/gen/StartupApplicationListener.groovy new file mode 100644 index 00000000..cae42e09 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/StartupApplicationListener.groovy @@ -0,0 +1,24 @@ +package org.ods.doc.gen + +import groovy.util.logging.Slf4j +import kong.unirest.Unirest +import org.springframework.context.ApplicationListener +import org.springframework.context.event.ContextRefreshedEvent +import org.springframework.stereotype.Component + +import javax.annotation.PostConstruct + +@Slf4j +@Component +class StartupApplicationListener implements ApplicationListener { + + @Override void onApplicationEvent(ContextRefreshedEvent event) { + log.trace(event.toString()) + } + + @PostConstruct + void init() { + Unirest.config().reset().socketTimeout(6000000).connectTimeout(600000).verifySsl(false) + } + +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/adapters/git/BitBucketRepository.groovy b/src/main/groovy/org/ods/doc/gen/adapters/git/BitBucketRepository.groovy new file mode 100644 index 00000000..bbe2f942 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/git/BitBucketRepository.groovy @@ -0,0 +1,31 @@ +package org.ods.doc.gen.adapters.git + +import feign.Headers +import feign.Param +import feign.RequestLine +import feign.Response + +interface BitBucketRepository { + + // TODO by config limit=1 + static final int PAGE_LIMIT = 10 + + @Headers("Accept: application/json") + @RequestLine("GET /rest/api/latest/projects/{project}/repos/{repo}/commits?limit=10&start={start}") + String getCommitsForDefaultBranch(@Param("project") String project, + @Param("repo") String repo, + @Param("start") int start) + + @Headers("Accept: application/json") + @RequestLine("GET /rest/api/latest/projects/{project}/repos/{repo}/commits/{commit}/pull-requests") + String getPRforMergedCommit(@Param("project") String project, + @Param("repo") String repo, + @Param("commit") String commit) + + @Headers("Accept: application/octet-stream") + @RequestLine("GET /rest/api/latest/projects/{project}/repos/{repo}/archive?at={branch}&format=zip") + Response getRepoZipArchive(@Param("project") String project, + @Param("repo") String repo, + @Param("branch") String branch) + +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/adapters/git/BitbucketService.groovy b/src/main/groovy/org/ods/doc/gen/adapters/git/BitbucketService.groovy new file mode 100644 index 00000000..dc0ee92e --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/git/BitbucketService.groovy @@ -0,0 +1,113 @@ +package org.ods.doc.gen.adapters.git + +import feign.FeignException +import feign.Response +import feign.codec.ErrorDecoder +import groovy.json.JsonSlurperClassic +import groovy.util.logging.Slf4j +import org.ods.doc.gen.BitBucketClientConfig +import org.ods.doc.gen.core.ZipFacade +import org.ods.doc.gen.project.data.ProjectData +import org.springframework.stereotype.Service + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path +import java.nio.file.Paths +import java.nio.file.StandardCopyOption + +@Slf4j +@Service +class BitbucketService { + + private static final String MAIN_BRANCH = "master" + + private ZipFacade zipFacade + private final BitBucketClientConfig bitBucketClientConfig + + @Inject + BitbucketService(BitBucketClientConfig bitBucketClientConfig, + ZipFacade zipFacade) { + this.bitBucketClientConfig = bitBucketClientConfig + this.zipFacade = zipFacade + } + + Map getCommitsForIntegrationBranch(String repo, ProjectData projectData, int nextPageStart){ + String projectKey = projectData.getKey() + String response = bitBucketClientConfig.getClient().getCommitsForDefaultBranch(projectKey, repo, nextPageStart) + return new JsonSlurperClassic().parseText(response) + } + + Map getPRforMergedCommit(String repo, ProjectData projectData, String commit) { + String projectKey = projectData.getKey() + String response = bitBucketClientConfig.getClient().getPRforMergedCommit(projectKey, repo, commit) + return new JsonSlurperClassic().parseText(response) + } + + String buildReleaseManagerUrl(String projectId, String releaseManagerRepo) { + URI uri = new URI([getBitbucketURLForDocs(), projectId, releaseManagerRepo].join("/")) + return "${uri.normalize().toString()}.git" + } + + String getBitbucketURLForDocs() { + return bitBucketClientConfig.url + } + + void downloadRepo(String project, String repo, String branch, String tmpFolder) { + log.info("downloadRepo: project:${project}, repo:${repo} and branch:${branch}") + Path zipArchive = Files.createTempFile("archive-", ".zip") + try { + downloadRepoWithFallBack(project, repo, branch, zipArchive) + zipFacade.extractZipArchive(zipArchive, Paths.get(tmpFolder)) + } catch (FeignException callException) { + checkError(repo, branch, callException) + } finally { + Files.delete(zipArchive) + } + } + + protected void downloadRepoWithFallBack(String project, String repo, String branch, Path zipArchive) { + try { + bitBucketClientConfig + .getClient() + .getRepoZipArchive(project, repo, branch) + .withCloseable { Response response -> + streamResult(response, zipArchive) + } + } catch (Exception callException) { + log.warn("Branch [${branch}] doesn't exist, using branch: [${MAIN_BRANCH}]") + bitBucketClientConfig + .getClient() + .getRepoZipArchive(project, repo, MAIN_BRANCH) + .withCloseable { Response response -> + streamResult(response, zipArchive) + } + } + + } + + protected void streamResult(Response response, Path zipArchive){ + if (response.status() >= 300) { + throw new ErrorDecoder.Default().decode('downloadRepo', response) + } + response.body().withCloseable { body -> + body.asInputStream().withStream { is -> + Files.copy(is, zipArchive, StandardCopyOption.REPLACE_EXISTING) + } + } + } + + protected void checkError(repo, String branch, FeignException callException) { + def baseErrMessage = "Could not get document zip from '${repo}'!- For version:${branch}" + if (callException instanceof FeignException.BadRequest) { + throw new RuntimeException("${baseErrMessage} \rIs there a correct release branch configured?", callException) + } else if (callException instanceof FeignException.Unauthorized) { + throw new RuntimeException("${baseErrMessage} \rDoes '${bitBucketClientConfig.username}' have access?", callException) + } else if (callException instanceof FeignException.NotFound) { + throw new RuntimeException("${baseErrMessage}", callException) + } else { + throw callException + } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/adapters/git/GitHubRepository.groovy b/src/main/groovy/org/ods/doc/gen/adapters/git/GitHubRepository.groovy new file mode 100644 index 00000000..6782bc00 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/git/GitHubRepository.groovy @@ -0,0 +1,14 @@ +package org.ods.doc.gen.adapters.git + +import feign.Headers +import feign.Param +import feign.RequestLine +import feign.Response + +interface GitHubRepository { + + @Headers("Accept: application/octet-stream") + @RequestLine("GET /opendevstack/ods-document-generation-templates/archive/v{version}.zip") + Response getTemplatesZip(@Param("version") String version) + +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/adapters/git/GithubService.groovy b/src/main/groovy/org/ods/doc/gen/adapters/git/GithubService.groovy new file mode 100644 index 00000000..708c124e --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/git/GithubService.groovy @@ -0,0 +1,70 @@ +package org.ods.doc.gen.adapters.git + +import feign.FeignException +import feign.Response +import feign.codec.ErrorDecoder +import groovy.util.logging.Slf4j +import org.ods.doc.gen.GithubClientConfig +import org.ods.doc.gen.core.ZipFacade +import org.springframework.stereotype.Service + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path +import java.nio.file.StandardCopyOption + +@Slf4j +@Service +class GithubService { + + private ZipFacade zipFacade + private final GithubClientConfig githubClientConfig + + @Inject + GithubService(GithubClientConfig githubClientConfig, + ZipFacade zipFacade) { + this.githubClientConfig = githubClientConfig + this.zipFacade = zipFacade + } + + void downloadRepo(String version, Path tmpFolder) { + Path zipArchive = Files.createTempFile("archive-", ".zip") + try { + githubClientConfig + .getClient() + .getTemplatesZip(version) + .withCloseable { Response response -> + streamResult(response, zipArchive) + } + zipFacade.extractZipArchive(zipArchive, tmpFolder) + } catch (FeignException callException) { + checkError(version, callException) + } finally { + Files.delete(zipArchive) + } + } + + private void streamResult(Response response, Path zipArchive){ + if (response.status() >= 300) { + throw new ErrorDecoder.Default().decode('downloadTemplates', response) + } + response.body().withCloseable { body -> + body.asInputStream().withStream { is -> + Files.copy(is, zipArchive, StandardCopyOption.REPLACE_EXISTING) + } + } + } + + private void checkError(String version, FeignException callException) { + def baseErrMessage = "Could not get document zip from GH - For version:${version}" + if (callException instanceof FeignException.BadRequest) { + throw new RuntimeException("FeignException.BadRequest ${baseErrMessage} \r" + + "Is there a correct release branch configured?") + } else if (callException instanceof FeignException.NotFound) { + throw new RuntimeException("FeignException.NotFound: ${baseErrMessage}") + } else { + throw callException + } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/adapters/jira/CustomIssueFields.groovy b/src/main/groovy/org/ods/doc/gen/adapters/jira/CustomIssueFields.groovy new file mode 100644 index 00000000..8d641dc2 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/jira/CustomIssueFields.groovy @@ -0,0 +1,10 @@ +package org.ods.doc.gen.adapters.jira; + +class CustomIssueFields { + + static final String CONTENT = 'EDP Content' + static final String HEADING_NUMBER = 'EDP Heading Number' + static final String DOCUMENT_VERSION = 'Document Version' + static final String RELEASE_VERSION = 'ProductRelease Version' + +} diff --git a/src/main/groovy/org/ods/doc/gen/adapters/jira/IssueTypes.groovy b/src/main/groovy/org/ods/doc/gen/adapters/jira/IssueTypes.groovy new file mode 100644 index 00000000..8db5bfc6 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/jira/IssueTypes.groovy @@ -0,0 +1,9 @@ +package org.ods.doc.gen.adapters.jira; + +class IssueTypes { + + static final String DOCUMENTATION_TRACKING = 'Documentation' + static final String DOCUMENTATION_CHAPTER = 'Documentation Chapter' + static final String RELEASE_STATUS = 'Release Status' + +} diff --git a/src/main/groovy/org/ods/doc/gen/adapters/jira/JiraService.groovy b/src/main/groovy/org/ods/doc/gen/adapters/jira/JiraService.groovy new file mode 100644 index 00000000..09ae7da6 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/jira/JiraService.groovy @@ -0,0 +1,345 @@ +package org.ods.doc.gen.adapters.jira + +import groovy.json.JsonOutput +import groovy.json.JsonSlurperClassic +import groovy.util.logging.Slf4j +import kong.unirest.Unirest +import org.apache.http.client.utils.URIBuilder +import org.ods.doc.gen.core.StringCleanup +import org.ods.doc.gen.core.URLHelper +import org.springframework.beans.factory.annotation.Value +import org.springframework.stereotype.Service + +@SuppressWarnings(['LineLength', 'ParameterName']) +@Slf4j +@Service +class JiraService { + + protected static Map CHARACTER_REMOVEABLE = ['\u00A0': ' ',] + + URI baseURL + URI targetURL // this is because baseURL can be modificated by Wiremok + String username + String password + + JiraService(@Value('${jira.url}') String baseURL, + @Value('${jira.username}') String username, + @Value('${jira.password}') String password) { + log.info("JiraService - url:[${baseURL}], username:[${username}]") + if (!baseURL?.trim() || baseURL=="null") { + throw new IllegalArgumentException('Error: unable to connect to Jira. \'baseURL\' is undefined.') + } + + if (!username?.trim()) { + throw new IllegalArgumentException('Error: unable to connect to Jira. \'username\' is undefined.') + } + + if (!password?.trim()) { + throw new IllegalArgumentException('Error: unable to connect to Jira. \'password\' is undefined.') + } + + if (baseURL.endsWith('/')) { + baseURL = baseURL.substring(0, baseURL.size() - 1) + } + + try { + this.baseURL = new URIBuilder(baseURL).build() + this.targetURL = new URIBuilder(baseURL).build() + } catch (e) { + throw new IllegalArgumentException("Error: unable to connect to Jira. '${baseURL}' is not a valid URI.").initCause(e) + } + + this.username = username + this.password = password + } + + + void appendCommentToIssue(String issueIdOrKey, String comment) { + if (!issueIdOrKey?.trim()) { + throw new IllegalArgumentException('Error: unable to append comment to Jira issue. \'issueIdOrKey\' is undefined.') + } + + if (!comment?.trim()) { + throw new IllegalArgumentException('Error: unable to append comment to Jira issue. \'comment\' is undefined.') + } + + def response = Unirest.post("${this.baseURL}/rest/api/2/issue/{issueIdOrKey}/comment") + .routeParam("issueIdOrKey", issueIdOrKey) + .basicAuth(this.username, this.password) + .header("Accept", "application/json") + .header("Content-Type", "application/json") + .body(JsonOutput.toJson( + [body: comment] + )) + .asString() + + response.ifFailure { + def message = "Error: unable to append comment to Jira issue. Jira responded with code: '${response.getStatus()}' and message: '${response.getBody()}'." + + if (response.getStatus() == 404) { + message = "Error: unable to append comment to Jira issue. Jira could not be found at: '${this.baseURL}'." + } + + throw new RuntimeException(message) + } + } + + Map getDeltaDocGenData(String projectKey, String version) { + if (!projectKey?.trim()) { + throw new IllegalArgumentException('Error: unable to get documentation generation data from Jira. ' + + '\'projectKey\' is undefined.') + } + + def response = Unirest.get("${this.baseURL}/rest/platform/1.1/deltadocgenreports/{projectKey}/{version}") + .routeParam("projectKey", projectKey.toUpperCase()) + .routeParam("version", version) + .basicAuth(this.username, this.password) + .header("Accept", "application/json") + .asString() + + response.ifFailure { + def message = 'Error: unable to get documentation generation data. Jira responded with code: ' + + "'${response.getStatus()}' and message: '${response.getBody()}'." + + if (response.getStatus() == 404) { + message = 'Error: unable to get documentation generation data. ' + + "Jira could not be found at: '${this.baseURL}'." + } + + throw new RuntimeException(message) + } + + return new JsonSlurperClassic().parseText(StringCleanup.removeCharacters(response.getBody(), CHARACTER_REMOVEABLE)) + } + + + Map getFileFromJira(String url) { + def response = Unirest.get(url) + .basicAuth(this.username, this.password) + .asBytes() + + response.ifFailure { + def message = "Error: unable to get file from Jira. Jira responded with code: '${response.getStatus()}' and message: '${response.getBody()}'." + + if (response.getStatus() == 404) { + message = "Error: unable to get file from Jira. Jira could not be found at: '${this.baseURL}'." + } + + throw new RuntimeException(message) + } + + return [ + contentType: response.getHeaders()["Content-Type"][0], + data: response.getBody() + ] + } + + private String changeRLWhenUsingWiremock(String url) { + String finalUrl = (baseURL == targetURL)? url : URLHelper.replaceHostInUrl(url, baseURL.toString()) + return finalUrl + } + + List getIssuesForJQLQuery(Map query) { + return searchByJQLQuery(query).issues + } + + + Map getIssueTypeMetadata(String projectKey, String issueTypeId) { + if (!projectKey?.trim()) { + throw new IllegalArgumentException('Error: unable to get Jira issue type metadata. \'projectKey\' is undefined.') + } + + if (!issueTypeId?.trim()) { + throw new IllegalArgumentException('Error: unable to get Jira issue type metadata. \'issueTypeId\' is undefined.') + } + + def response = Unirest.get("${this.baseURL}/rest/api/2/issue/createmeta/{projectKey}/issuetypes/{issueTypeId}") + .routeParam('projectKey', projectKey.toUpperCase()) + .routeParam('issueTypeId', issueTypeId) + .basicAuth(this.username, this.password) + .header('Accept', 'application/json') + .asString() + + response.ifFailure { + def message = "Error: unable to get Jira issue type metadata. Jira responded with code: '${response.getStatus()}' and message: '${response.getBody()}'." + + if (response.getStatus() == 404) { + message = "Error: unable to get Jira issue type metadata. Jira could not be found at: '${this.baseURL}'." + } + + throw new RuntimeException(message) + } + + return new JsonSlurperClassic().parseText(response.getBody()) + } + + + Map getIssueTypes(String projectKey) { + if (!projectKey?.trim()) { + throw new IllegalArgumentException('Error: unable to get Jira issue types. \'projectKey\' is undefined.') + } + + def response = Unirest.get("${this.baseURL}/rest/api/2/issue/createmeta/{projectKey}/issuetypes") + .routeParam('projectKey', projectKey.toUpperCase()) + .basicAuth(this.username, this.password) + .header('Accept', 'application/json') + .asString() + + response.ifFailure { + def message = "Error: unable to get Jira issue types. Jira responded with code: '${response.getStatus()}' and message: '${response.getBody()}'." + + if (response.getStatus() == 404) { + message = "Error: unable to get Jira issue types. Jira could not be found at: '${this.baseURL}'." + } + + throw new RuntimeException(message) + } + + return new JsonSlurperClassic().parseText(response.getBody()) + } + + + List getVersionsForProject(String projectKey) { + if (!projectKey?.trim()) { + throw new IllegalArgumentException('Error: unable to load project version from Jira. \'projectKey\' is undefined.') + } + + def response = Unirest.get("${this.baseURL}/rest/api/2/project/{projectKey}/versions") + .routeParam('projectKey', projectKey.toUpperCase()) + .basicAuth(this.username, this.password) + .header('Accept', 'application/json') + .asString() + + response.ifFailure { + def message = "Error: unable to get project version for projectKey ${projectKey}. Jira responded with code: '${response.getStatus()}' and message '${response.getBody()}'." + + if (response.getStatus() == 404) { + message = "Error: unable to get project version. Jira could not resolve the URL '${this.baseURL}/rest/api/2/project/${projectKey}/versions'." + } + + throw new RuntimeException(message) + } + + return new JsonSlurperClassic().parseText(response.getBody()).collect { jiraVersion -> + [id: jiraVersion.id, name: jiraVersion.name] + } + } + + Map searchByJQLQuery(Map query) { + if (!query) { + throw new IllegalArgumentException('Error: unable to get Jira issues for JQL query. \'query\' is undefined.') + } + + if (!query.maxResults) { + // FIXME: Jira returns a maximum of 50 results per default. + // Here, we set it to Jira's allowed maximum of 1000 results. + // If > 1000 results are expected, a paged solution is needed. + query.maxResults = 1000 + } + + def response = Unirest.post("${this.baseURL}/rest/api/2/search") + .basicAuth(this.username, this.password) + .header('Accept', 'application/json') + .header('Content-Type', 'application/json') + .body(JsonOutput.toJson(query)) + .asString() + + response.ifFailure { + def message = "Error: unable to get Jira issues for JQL query. Jira responded with code: '${response.getStatus()}' and message: '${response.getBody()}'." + + if (response.getStatus() == 400) { + def matcher = message =~ /The value '(.*)' does not exist for the field 'project'./ + if (matcher.find()) { + def project = matcher[0][1] + message += " Could it be that the project '${project}' does not exist in Jira?" + } + } else if (response.getStatus() == 404) { + message = "Error: unable to get Jira issues for JQL query. Jira could not be found at: '${this.baseURL}'." + } + + throw new RuntimeException(message) + } + + return new JsonSlurperClassic().parseText(StringCleanup.removeCharacters(response.getBody(), CHARACTER_REMOVEABLE)) + } + + + void updateTextFieldsOnIssue(String issueIdOrKey, Map fields) { + if (!issueIdOrKey?.trim()) { + throw new IllegalArgumentException('Error: unable to update text fields on Jira issue. \'issueIdOrKey\' is undefined.') + } + + if (!fields) { + throw new IllegalArgumentException('Error: unable to update text fields on Jira issue. \'fields\' is undefined.') + } + + def response = Unirest.put("${this.baseURL}/rest/api/2/issue/{issueIdOrKey}") + .routeParam('issueIdOrKey', issueIdOrKey) + .basicAuth(this.username, this.password) + .header('Accept', 'application/json') + .header('Content-Type', 'application/json') + .body(JsonOutput.toJson( + [ + update: fields.collectEntries { id, value_ -> + [ + id, + [ + [ + set: value_ as String + ] + ] + ] + } + ] + )) + .asString() + + response.ifSuccess { + if (response.getStatus() != 204) { + throw new RuntimeException("Error: unable to update text fields on Jira issue ${issueIdOrKey}. Jira responded with code: '${response.getStatus()}' and message: '${response.getBody()}'.") + } + } + + response.ifFailure { + def message = "Error: unable to update text fields on Jira issue ${issueIdOrKey}. Jira responded with code: '${response.getStatus()}' and message: '${response.getBody()}'." + + if (response.getStatus() == 404) { + message = "Error: unable to update text fields on Jira issue ${issueIdOrKey}. Jira could not be found at: '${this.baseURL}'." + } + + throw new RuntimeException(message) + } + } + + + Map getTextFieldsOfIssue(String issueIdOrKey, List fields) { + if (!issueIdOrKey?.trim()) { + throw new IllegalArgumentException('Error: unable to retrieve text fields on Jira issue. \'issueIdOrKey\' is undefined.') + } + + if (!fields) { + throw new IllegalArgumentException('Error: unable to retrieve text fields on Jira issue. \'fields\' is undefined.') + } + + def response = Unirest.get("${this.baseURL}/rest/api/2/issue/{issueIdOrKey}") + .routeParam('issueIdOrKey', issueIdOrKey) + .queryString('fields', fields.join(',')) + .basicAuth(this.username, this.password) + .header('Accept', 'application/json') + .header('Content-Type', 'application/json') + .asString() + + response.ifFailure { + def message = "Error: unable to retrieve text fields (${fields}) on Jira issue ${issueIdOrKey}. Jira responded with code: '${response.getStatus()}' and message: '${response.getBody()}'." + + if (response.getStatus() == 404) { + message = "Error: unable to retrieve text fields (${fields}) on Jira issue ${issueIdOrKey}. Jira could not be found at: '${this.baseURL}'." + } + + throw new RuntimeException(message) + } + + new JsonSlurperClassic().parseText(response.getBody()).getOrDefault("fields", [:]) + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/adapters/jira/JiraUseCase.groovy b/src/main/groovy/org/ods/doc/gen/adapters/jira/JiraUseCase.groovy new file mode 100644 index 00000000..f23db485 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/jira/JiraUseCase.groovy @@ -0,0 +1,126 @@ +package org.ods.doc.gen.adapters.jira + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.project.data.Project +import org.ods.doc.gen.project.data.ProjectData +import org.springframework.stereotype.Service + +import javax.inject.Inject + +@SuppressWarnings(['IfStatementBraces', 'LineLength']) +@Slf4j +@Service +class JiraUseCase { + + private final Project project + private final JiraService jira + + @Inject + JiraUseCase(Project project, JiraService jira) { + this.project = project + this.jira = jira + } + + boolean checkTestsIssueMatchesTestCase(Map testIssue, Map testCase) { + def issueKeyClean = testIssue.key.replaceAll('-', '') + return testCase.name.startsWith("${issueKeyClean} ") || + testCase.name.startsWith("${issueKeyClean}-") || + testCase.name.startsWith("${issueKeyClean}_") + } + + String convertHTMLImageSrcIntoBase64Data(String html) { + def pattern = ~/src="(http.*?\.(?:gif|GIF|jpg|JPG|jpeg|JPEG|png|PNG))"/ + def result = html.replaceAll(pattern) { match -> + def src = match[1] + Map img = this.jira.getFileFromJira(src) + return "src=\"data:${img.contentType};base64,${img.data.encodeBase64()}\"" + } + + return result + } + + void matchTestIssuesAgainstTestResults(List testIssues, Map testResults, + Closure matchedHandler, Closure unmatchedHandler = null, + boolean checkDuplicateTestResults = true) { + def duplicateKeysErrorMessage = "Error: found duplicated Jira tests. Check tests with key: " + def duplicatesKeys = [] + + def result = [ + matched: [:], + unmatched: [] + ] + + this.walkTestIssuesAndTestResults(testIssues, testResults) { testIssue, testCase, isMatch -> + if (isMatch) { + if (result.matched.get(testIssue) != null) { + duplicatesKeys.add(testIssue.key) + } + + result.matched << [ + (testIssue): testCase + ] + } + } + + testIssues.each { testIssue -> + if (!result.matched.keySet().contains(testIssue)) { + result.unmatched << testIssue + } + } + + if (matchedHandler) { + matchedHandler(result.matched) + } + + if (unmatchedHandler) { + unmatchedHandler(result.unmatched) + } + + if (checkDuplicateTestResults && duplicatesKeys) { + throw new IllegalStateException(duplicateKeysErrorMessage + duplicatesKeys); + } + } + + + Long getLatestDocVersionId(ProjectData projectData, List < Map > trackingIssues) { + def documentationTrackingIssueFields = projectData.getJiraFieldsForIssueType(IssueTypes.DOCUMENTATION_TRACKING) + def documentVersionField = documentationTrackingIssueFields[CustomIssueFields.DOCUMENT_VERSION].id as String + + // We will use the biggest ID available + def versionList = trackingIssues.collect { issue -> + def versionNumber = 0L + + def version = this.jira.getTextFieldsOfIssue(issue.key as String, [documentVersionField])?.getAt(documentVersionField) + if (version) { + try { + versionNumber = version.toLong() + } catch (NumberFormatException _) { + this.log.warn("Document tracking issue '${issue.key}' does not contain a valid numerical" + + " version. It contains value '${version}'.") + } + } + + return versionNumber + } + + def result = versionList.max() + log.debug("Retrieved max doc version ${versionList.max()} from doc tracking issues " + + "${trackingIssues.collect { it.key } }") + + return result + } + + private void walkTestIssuesAndTestResults(List testIssues, Map testResults, Closure visitor) { + testResults.testsuites.each { testSuite -> + testSuite.testcases.each { testCase -> + def testIssue = testIssues.find { testIssue -> + this.checkTestsIssueMatchesTestCase(testIssue, testCase) + } + + def isMatch = testIssue != null + visitor(testIssue, testCase, isMatch) + } + } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/adapters/jira/LabelPrefix.groovy b/src/main/groovy/org/ods/doc/gen/adapters/jira/LabelPrefix.groovy new file mode 100644 index 00000000..da6e56d8 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/jira/LabelPrefix.groovy @@ -0,0 +1,5 @@ +package org.ods.doc.gen.adapters.jira; + +class LabelPrefix { + static final String DOCUMENT = 'Doc:' +} diff --git a/src/main/groovy/org/ods/doc/gen/adapters/jira/OpenIssuesException.groovy b/src/main/groovy/org/ods/doc/gen/adapters/jira/OpenIssuesException.groovy new file mode 100644 index 00000000..2832082f --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/jira/OpenIssuesException.groovy @@ -0,0 +1,9 @@ +package org.ods.doc.gen.adapters.jira + +class OpenIssuesException extends IllegalArgumentException { + + OpenIssuesException(message) { + super(message) + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/adapters/jira/TestIssueLabels.groovy b/src/main/groovy/org/ods/doc/gen/adapters/jira/TestIssueLabels.groovy new file mode 100644 index 00000000..a12a0756 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/jira/TestIssueLabels.groovy @@ -0,0 +1,9 @@ +package org.ods.doc.gen.adapters.jira; + +enum TestIssueLabels { + Error, + Failed, + Missing, + Skipped, + Succeeded +} diff --git a/src/main/groovy/org/ods/doc/gen/adapters/nexus/NexusService.groovy b/src/main/groovy/org/ods/doc/gen/adapters/nexus/NexusService.groovy new file mode 100644 index 00000000..56b17813 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/adapters/nexus/NexusService.groovy @@ -0,0 +1,172 @@ +package org.ods.doc.gen.adapters.nexus + +import groovy.util.logging.Slf4j +import kong.unirest.HttpResponse +import kong.unirest.Unirest +import net.lingala.zip4j.ZipFile +import org.apache.http.client.utils.URIBuilder +import org.springframework.beans.factory.annotation.Value +import org.springframework.stereotype.Service + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Paths + +@Slf4j +@Service +class NexusService { + + static final String NEXUS_REPOSITORY = "leva-documentation" + private static final String UPLOAD_ARTIFACT_URL_PATH = "service/rest/v1/components?repository=" + private static final String RAW = 'raw' + private static final String UNABLE_TO_STORE_AT = 'Error: unable to store artifact at ' + + URI baseURL + + final String username + final String password + + @Inject + NexusService(@Value('${nexus.url}') String baseURL, + @Value('${nexus.username}') String username, + @Value('${nexus.password}') String password) { + log.info("NexusService - url:[${baseURL}], username:[${username}]") + checkParams(baseURL, username, password) + try { + this.baseURL = new URIBuilder(baseURL).build() + } catch (e) { + throw new IllegalArgumentException( + "Error: unable to connect to Nexus. '${baseURL}' is not a valid URI." + ).initCause(e) + } + + this.username = username + this.password = password + } + + URI storeArtifact(String directory, String name, String artifactPath, String contentType) { + Map nexusParams = [ + 'raw.directory' : directory, + 'raw.asset1.filename': name, + ] + + return storeWithRaw(NEXUS_REPOSITORY, artifactPath, contentType, RAW, nexusParams) + } + + private URI storeWithRaw(String repo, + String artifactPath, + String contentType, + String repoType, + Map nexusParams) { + File artifactFile = Paths.get(artifactPath).toFile() + String targetUrl = new URI("${this.baseURL}/${UPLOAD_ARTIFACT_URL_PATH}${repo}").normalize().toString() + log.info("Nexus store artifact:[${artifactFile}] - repo: [${repo}], url:[${targetUrl}] ") + + try (FileInputStream fis = new FileInputStream(artifactFile)) { + def restCall = Unirest + .post(targetUrl) + .basicAuth(this.username, this.password) + .field(getField(repoType), fis, contentType) + nexusParams.each { key, value -> restCall = restCall.field(key, value) } + + def response = restCall.asString() + response.ifSuccess { + if (response.getStatus() != 204) { + throw new RuntimeException(errorMsg(response, repo, restCall.getUrl())) + } + } + + response.ifFailure { + throw new RuntimeException(errorMsg(response, repo, restCall.getUrl())) + } + } + + if (repoType == RAW) { + String url = "/repository/${repo}/${nexusParams['raw.directory']}/${nexusParams['raw.asset1.filename']}" + return this.baseURL.resolve(url) + } + return this.baseURL.resolve("/repository/${repo}") + } + + private String errorMsg(HttpResponse response, String repo, String targetUrl) { + String message = UNABLE_TO_STORE_AT + targetUrl + "." + + "Nexus responded with code: '${response.getStatus()}' and message: '${response.getBody()}'." + if (response.getStatus() == 404) { + message = "Error: unable to store artifact. Nexus could not be found at: '${this.baseURL}' - repo: ${repo}." + } + return message + } + + private String getField(String repoType) { + repoType == RAW || repoType == 'maven2' ? "${repoType}.asset1" : "${repoType}.asset" + } + + Map retrieveArtifact(String nexusRepository, String nexusDirectory, String name, String extractionPath) { + String urlToDownload = getURL(nexusRepository, nexusDirectory, name) + HttpResponse response = downloadToPath(urlToDownload, extractionPath, name) + return [ + uri : this.baseURL.resolve("/repository/${nexusRepository}/${nexusDirectory}/${name}"), + content: response.getBody(), + ] + } + + private String getURL(String nexusRepository, String nexusDirectory, String name) { + return "/repository/${nexusRepository}/${nexusDirectory}/${name}" + } + + private HttpResponse downloadToPath(String urlToDownload, String extractionPath, String name) { + deleteIfAlreadyExist(extractionPath, name) + String fullUrlToDownload = new URI(baseURL.toString() + "/" + urlToDownload).normalize().toString() + log.info("downloadToPath::${fullUrlToDownload}") + def restCall = Unirest.get(fullUrlToDownload).basicAuth(this.username, this.password) + HttpResponse response = restCall.asFile("${extractionPath}/${name}") + response.ifFailure { + def message = 'Error: unable to get artifact. ' + + "Nexus responded with code: '${response.getStatus()}' and message: '${response.getBody()}'." + + " The url called was: ${fullUrlToDownload}" + if (response.getStatus() == 404) { + message = "Error: unable to get artifact. Nexus could not be found at: '${fullUrlToDownload}'." + } + if (response.getStatus() != 200) { + throw new RuntimeException(message) + } + } + + return response + } + + void downloadAndExtractZip(String urlToDownload, String extractionPath) { + log.debug("downloadAndExtractZip: urlToDownload:${urlToDownload}, extractionPath:${extractionPath}") + String artifactName = urlToDownload.split("/").last() + downloadToPath(urlToDownload, extractionPath, artifactName) + extractZip(extractionPath, artifactName) + } + + private void extractZip(String extractionPath, String artifactName) { + ZipFile zipFile = new ZipFile(Paths.get(extractionPath, artifactName).toString()) + Files.createDirectories(Paths.get(extractionPath)) + zipFile.extractAll(extractionPath) + } + + private void deleteIfAlreadyExist(String extractionPath, String name) { + File artifactExists = new File("${extractionPath}/${name}") + if (artifactExists) { + artifactExists.delete() + } + } + + private void checkParams(String baseURL, String username, String password) { + if (!baseURL?.trim() || baseURL == "null") { + throw new IllegalArgumentException("Error: unable to connect to Nexus. 'baseURL' is undefined.") + } + + if (!username?.trim()) { + throw new IllegalArgumentException("Error: unable to connect to Nexus. 'username' is undefined.") + } + + if (!password?.trim()) { + throw new IllegalArgumentException("Error: unable to connect to Nexus. 'password' is undefined.") + } + } + +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/core/FileSystemHelper.groovy b/src/main/groovy/org/ods/doc/gen/core/FileSystemHelper.groovy new file mode 100644 index 00000000..4eaf2c5b --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/core/FileSystemHelper.groovy @@ -0,0 +1,33 @@ +package org.ods.doc.gen.core + +import groovy.io.FileType +import groovy.util.logging.Slf4j +import org.springframework.cache.annotation.Cacheable +import org.springframework.stereotype.Service + +import java.nio.file.Files +import java.nio.file.Path + +@Slf4j +@Service +class FileSystemHelper { + + @Cacheable(value = "temporalFolder", key = '#id') + Path createTempDirectory(String id){ + return Files.createTempDirectory(id) + } + + List loadFilesFromPath(String path, String fileExtension) { + def result = [] + try { + new File(path).traverse(nameFilter: ~/.*\.${fileExtension}$/, type: FileType.FILES) { file -> + result << file + } + } catch (FileNotFoundException e) { + log.warn("No file of type ${fileExtension}, found here:${path}") + } + + return result + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/core/SortUtil.groovy b/src/main/groovy/org/ods/doc/gen/core/SortUtil.groovy new file mode 100644 index 00000000..2701c0f9 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/core/SortUtil.groovy @@ -0,0 +1,35 @@ +package org.ods.doc.gen.core + + + +class SortUtil { + + + // Sorts a collection of maps in the order of the keys in properties + static List sortIssuesByProperties(Collection issues, List keys) { + return issues.sort { issue -> + issue.subMap(keys).values().collect { value -> + // we use zero padding in Jira key number to allow sorting of Strings in numeric order + value.split('-').last().padLeft(12, '0') + }.join('-') + } + } + + + // Sorts a collection of maps in the order of the jira key + static List sortIssuesByKey(Collection issues) { + return sortIssuesByProperties(issues, ['key']) + } + + + // Sorts a collection of maps in the order of the keys in properties + static List sortHeadingNumbers(Collection issueKeys, String numberKey) { + return issueKeys.sort { number -> + // we use zero padding to allow sorting of Strings in numeric order + number[numberKey].split('\\.').collect { value -> + value.padLeft(12, '0') + }.join('-') + } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/core/StringCleanup.groovy b/src/main/groovy/org/ods/doc/gen/core/StringCleanup.groovy new file mode 100644 index 00000000..819d3e03 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/core/StringCleanup.groovy @@ -0,0 +1,13 @@ +package org.ods.doc.gen.core + +class StringCleanup { + + static removeCharacters(inputString, characters) { + def outputString = inputString + characters.forEach { k, v -> + outputString = outputString.replaceAll(k, v) + } + return outputString + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/core/URLHelper.groovy b/src/main/groovy/org/ods/doc/gen/core/URLHelper.groovy new file mode 100644 index 00000000..d1d575f4 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/core/URLHelper.groovy @@ -0,0 +1,15 @@ +package org.ods.doc.gen.core + +class URLHelper { + + static String replaceHostInUrl(String originalUrl, String newUrlHost) { + URI uri = new URI(originalUrl) + URI newUri = new URI(newUrlHost) + return new URI(newUri.getScheme(), + newUri.getAuthority(), + uri.getPath(), + uri.getQuery(), + uri.getFragment()).toString(); + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/core/ZipFacade.groovy b/src/main/groovy/org/ods/doc/gen/core/ZipFacade.groovy new file mode 100644 index 00000000..d29b3fe1 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/core/ZipFacade.groovy @@ -0,0 +1,43 @@ +package org.ods.doc.gen.core + +import net.lingala.zip4j.ZipFile +import net.lingala.zip4j.model.ZipParameters +import org.springframework.stereotype.Service +import org.springframework.util.FileSystemUtils + +import java.nio.file.Files +import java.nio.file.Path +import java.nio.file.Paths + +@Service +class ZipFacade { + + static final String ARTIFACTS_BASE_DIR = 'artifacts' + + String createZipFileFromFiles(String tmpFolder, String name, Map files) { + String path = "${tmpFolder}/${ARTIFACTS_BASE_DIR}/${name}".toString() + Files.createDirectories(Paths.get(path).parent) + + def zipFile = new ZipFile(path) + files.each { fileName, filePath -> + def params = new ZipParameters() + params.setFileNameInZip(fileName) + try (InputStream is = new FileInputStream(Paths.get(filePath).toFile())) { + zipFile.addStream(is, params) + } + } + + return path + } + + void extractZipArchive(Path zipArchive, Path targetDir) { + cleanTargetFolder(targetDir) + new ZipFile(zipArchive.toFile()).extractAll(targetDir.toString()) + } + + private void cleanTargetFolder(Path targetDir) { + FileSystemUtils.deleteRecursively(targetDir.toFile()) + targetDir.toFile().mkdirs() + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/core/api/HealthController.groovy b/src/main/groovy/org/ods/doc/gen/core/api/HealthController.groovy new file mode 100644 index 00000000..67078a60 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/core/api/HealthController.groovy @@ -0,0 +1,55 @@ +package org.ods.doc.gen.core.api + +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils +import org.ods.doc.gen.pdf.builder.services.HtmlToPDFService +import org.springframework.web.bind.annotation.GetMapping +import org.springframework.web.bind.annotation.RestController + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path + +@Slf4j +@RestController +class HealthController { + + private HtmlToPDFService htmlToPDFService + + @Inject + HealthController(HtmlToPDFService htmlToPDFService) { + this.htmlToPDFService = htmlToPDFService + } + + @GetMapping("/health") + Map check() { + log.info("health check to verify a pdf can be generated, executed") + generatePdfData() + Map result = [ + service: "docgen", + status : "passing", + time : new Date().toString() + ] + + return result + } + + private generatePdfData() { + Path tmpDir = Files.createTempDirectory("generatePdfDataFolderTest") + def documentHtmlFile = Files.createTempFile("document", ".html") << "document" + + try { + def documentPdf = htmlToPDFService.convert(tmpDir, documentHtmlFile) + def data = Files.readAllBytes(documentPdf) + if (!new String(data).startsWith("%PDF-1.4\n")) { + throw new RuntimeException("Conversion form HTML to PDF failed, corrupt data.") + } + } catch (e) { + throw new RuntimeException("Conversion form HTML to PDF failed, corrupt data.", e) + } finally { + Files.delete(documentHtmlFile) + FileUtils.deleteDirectory(tmpDir.toFile()) + } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/api/LevaDocController.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/api/LevaDocController.groovy new file mode 100644 index 00000000..c2a380db --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/api/LevaDocController.groovy @@ -0,0 +1,114 @@ +package org.ods.doc.gen.leva.doc.api + +import groovy.util.logging.Slf4j +import org.apache.commons.lang3.StringUtils +import org.ods.doc.gen.core.FileSystemHelper +import org.ods.doc.gen.leva.doc.services.DocumentHistoryEntry +import org.ods.doc.gen.leva.doc.services.LeVADocumentService +import org.springframework.web.bind.annotation.PathVariable +import org.springframework.web.bind.annotation.PostMapping +import org.springframework.web.bind.annotation.RequestBody +import org.springframework.web.bind.annotation.RequestMapping +import org.springframework.web.bind.annotation.RestController + +import javax.inject.Inject + +import static groovy.json.JsonOutput.prettyPrint +import static groovy.json.JsonOutput.toJson + +@Slf4j +@RestController +@RequestMapping("/levaDoc") +class LevaDocController { + + private LeVADocumentService leVADocumentService + private final FileSystemHelper fileSystemHelper + + @Inject + LevaDocController(LeVADocumentService leVADocumentUseCase, FileSystemHelper fileSystemHelper){ + this.leVADocumentService = leVADocumentUseCase + this.fileSystemHelper = fileSystemHelper + } + + /** + * The url identifies a project with a build that wants to generate a docType + * + * @param projectId + * @param build + * @param levaDocType + * @param body + * @return + */ + @PostMapping("{projectId}/{build}/{levaDocType}") + List buildDocument( + @PathVariable("projectId") String projectId, + @PathVariable("build") String buildNumber, + @PathVariable("levaDocType") LevaDocType levaDocType, + @RequestBody Map body){ + validateRequestParams(body) + logData(projectId, buildNumber, levaDocType, body) + + List result = createDocument(projectId, buildNumber, levaDocType, body) + if (log.isDebugEnabled()) { + log.debug(prettyPrint(toJson(result))) + } + return result + } + + @PostMapping("{projectId}/{build}/overall/{levaDocType}") + void buildOverAllDocument( + @PathVariable("projectId") String projectId, + @PathVariable("build") String buildNumber, + @PathVariable("levaDocType") LevaDocType levaDocType, + @RequestBody Map body){ + validateRequestParams(body) + logData(projectId, buildNumber, levaDocType, body) + createDocument(projectId, buildNumber, levaDocType, body) + } + + private List createDocument(String projectId, String buildNumber, LevaDocType levaDocType, Map data) { + try { + prepareServiceDataParam(projectId, buildNumber, levaDocType, data) + return levaDocType.buildDocument.apply(leVADocumentService, data) + } catch (Throwable e) { + String msg = "Error building document: ${levaDocType} with data:${data}" + log.error(msg, e) + String msgWithDetails = msg; + if (! StringUtils.isEmpty(e.getMessage())) { + msgWithDetails = msg + ". " + e.getMessage(); + } + throw new RuntimeException(msgWithDetails, e) + } + } + + private void prepareServiceDataParam(String projectId, String buildNumber, LevaDocType levaDocType, Map data) { + data.documentType = levaDocType.toString() + data.projectBuild = "${projectId}-${buildNumber}" + data.projectId = projectId + data.buildNumber = buildNumber + data.tmpFolder = fileSystemHelper.createTempDirectory("${data.projectBuild}").toFile().absolutePath + } + + private static void validateRequestParams(Map body) { + /* if (body.levaDocType == null) { + throw new IllegalArgumentException("missing argument 'metadata.type'") + } + if (body.buildParams.projectKey == null) { + throw new IllegalArgumentException("missing argument 'metadata.version'") + } + if (body?.data == null || 0 == body?.data.size()) { + throw new IllegalArgumentException("missing argument 'data'") + }*/ + } + + private static void logData(String projectId, String build, LevaDocType levaDocType, Map body) { + log.info("buildDocument for: \n" + + "- projectId:${projectId} \n" + + "- build:${build} \n" + + "- levaDocType:${levaDocType}") + if (log.isDebugEnabled()) { + log.debug(prettyPrint(toJson(body))) + } + } + +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/api/LevaDocOverallType.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/api/LevaDocOverallType.groovy new file mode 100644 index 00000000..ce31f986 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/api/LevaDocOverallType.groovy @@ -0,0 +1,17 @@ +package org.ods.doc.gen.leva.doc.api + +import org.ods.doc.gen.leva.doc.services.LeVADocumentService + +import java.util.function.BiFunction + +enum LevaDocOverallType { + + OVERALL_DTR(LeVADocumentService::createOverallDTR), + OVERALL_TIR(LeVADocumentService::createOverallTIR) + + public final BiFunction buildDocument; + + private LevaDocOverallType(BiFunction buildDocument) { + this.buildDocument = buildDocument; + } +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/api/LevaDocType.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/api/LevaDocType.groovy new file mode 100644 index 00000000..546787b4 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/api/LevaDocType.groovy @@ -0,0 +1,33 @@ +package org.ods.doc.gen.leva.doc.api + +import org.ods.doc.gen.leva.doc.services.DocumentHistoryEntry +import org.ods.doc.gen.leva.doc.services.LeVADocumentService + +import java.util.function.BiFunction + +enum LevaDocType { + + CSD(LeVADocumentService::createCSD), + DIL(LeVADocumentService::createDIL), + DTP(LeVADocumentService::createDTP), + DTR(LeVADocumentService::createDTR), + RA(LeVADocumentService::createRA), + CFTP(LeVADocumentService::createCFTP), + CFTR(LeVADocumentService::createCFTR), + IVP(LeVADocumentService::createIVP), + IVR(LeVADocumentService::createIVR), + SSDS(LeVADocumentService::createSSDS), + TCP(LeVADocumentService::createTCP), + TCR(LeVADocumentService::createTCR), + TIP(LeVADocumentService::createTIP), + TIR(LeVADocumentService::createTIR), + TRC(LeVADocumentService::createTRC), + OVERALL_DTR(LeVADocumentService::createOverallDTR), + OVERALL_TIR(LeVADocumentService::createOverallTIR) + + public final BiFunction > buildDocument; + + private LevaDocType(BiFunction> buildDocument) { + this.buildDocument = buildDocument; + } +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/api/StringToLevaDocType.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/api/StringToLevaDocType.groovy new file mode 100644 index 00000000..582158dd --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/api/StringToLevaDocType.groovy @@ -0,0 +1,19 @@ +package org.ods.doc.gen.leva.doc.api + + +import org.springframework.core.convert.converter.Converter +import org.springframework.http.HttpStatus +import org.springframework.web.server.ResponseStatusException + +class StringToLevaDocType implements Converter { + + @Override + LevaDocType convert(String source) { + try { + return LevaDocType.valueOf(source.toUpperCase()); + } catch (IllegalArgumentException e) { + throw new ResponseStatusException(HttpStatus.BAD_REQUEST, "unkonw LevaDocType param: ${source}") + } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/repositories/ProjectDataRepository.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/repositories/ProjectDataRepository.groovy new file mode 100644 index 00000000..d8d0fda6 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/repositories/ProjectDataRepository.groovy @@ -0,0 +1,23 @@ +package org.ods.doc.gen.leva.doc.repositories + +import groovy.json.JsonSlurperClassic + +import java.nio.file.NoSuchFileException + +class ProjectDataRepository { + + static final String BASE_DIR = 'projectData' + + static Object loadFile(String tmpFolder, String savedVersion) { + String fileName = "${tmpFolder}/${BASE_DIR}/${savedVersion}.json" + File savedData = new File(fileName) + def data = [:] + if (!savedData.exists()) { + throw new NoSuchFileException("File '${fileName}.json' is expected to be inside the release " + + 'manager repository but was not found and thus, document history cannot be build. If you come from ' + + 'and old ODS version, create one for each document to use the automated document history feature.') + } + return new JsonSlurperClassic().parse(savedData)?: [:] + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/BitbucketTraceabilityService.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/BitbucketTraceabilityService.groovy new file mode 100644 index 00000000..a29ce87d --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/BitbucketTraceabilityService.groovy @@ -0,0 +1,278 @@ +package org.ods.doc.gen.leva.doc.services + +import com.xlson.groovycsv.CsvParser +import com.xlson.groovycsv.PropertyMapper +import groovy.util.logging.Slf4j +import org.ods.doc.gen.adapters.git.BitbucketService +import org.ods.doc.gen.core.StringCleanup +import org.ods.doc.gen.project.data.Project +import org.ods.doc.gen.project.data.ProjectData +import org.springframework.stereotype.Service + +import javax.inject.Inject +import java.text.SimpleDateFormat + +@Slf4j +@Service +class BitbucketTraceabilityService { + + private static final String CSV_FILE = "source-code-review.csv" + static final String CSV_FOLDER = "review" + protected static Map CHARACTER_REMOVEABLE = [ + '/': '/\u200B', + '@': '@\u200B', + ] + + private final BitbucketService bitbucketService + private final Project project + + @Inject + BitbucketTraceabilityService(BitbucketService bitbucketService, Project project) { + this.project = project + this.bitbucketService = bitbucketService + } + + /** + * Create a CSV file that contains the following records + * for every merge event into the integration branch of every ODS component: + * @return absolutePath of the created file + */ + List getPRMergeInfo(ProjectData projectData) { + String csvFIleWithInfo = generateSourceCodeReviewFile(projectData) + return readSourceCodeReviewFile(csvFIleWithInfo) + } + + /** + * Create a CSV file that contains the following records + * for every merge event into the integration branch of every ODS component: + * @return absolutePath of the created file + */ + String generateSourceCodeReviewFile(ProjectData projectData) { + File file = createReportFile(projectData) + List repos = getRepositories(projectData) + + int reposSize = repos.size() + for (def i = 0; i < reposSize; i++) { + def repo = repos[i] + processRepo(repo, projectData, file) + } + + return file.absolutePath + } + + /** + * Read an existing csv file and parse the info to obtaining an structured List of data. + * + * @param filePath The csv + * @return List of commits + */ + @SuppressWarnings(['JavaIoPackageAccess']) + List readSourceCodeReviewFile(String filePath) { + def file = new File(filePath) + def result = [] + def data = processCsv( + file.text, + Record.CSV, + ['commitDate', 'author', 'reviewers', 'pullRequestUrl', 'commitSHA', 'component'] + ).findAll { it != null } + + def dataSize = data.size() + for (def i = 0; i < dataSize; i++) { + def info = data[i] + result << getCommitInfo(info) + } + return result + } + + private Map getCommitInfo(info) { + def authorInfo = processCsvDeveloper(info.author) + def commitInfo = [ + date: info.commitDate, + authorName: removeCharacters(authorInfo, "name"), + authorEmail: removeCharacters(authorInfo, "email"), + reviewers: getReviewers(info), + url: removeCharacters(info, "pullRequestUrl"), + commit: info.commitSHA, + component: info.component, + ] + return commitInfo + } + + private List getReviewers(PropertyMapper info) { + def reviewers = [] + List infoReviewers = info.reviewers.split(Record.REVIEWERS_DELIMITER).findAll { it != null } + def dataSize = infoReviewers.size() + for (def i = 0; i < dataSize; i++) { + def infoReviewer = infoReviewers[i] + PropertyMapper reviewerInfo = processCsvDeveloper(infoReviewer) + String reviewerNameValue = removeCharacters(reviewerInfo, "name") + String reviewerEmailValue = removeCharacters(reviewerInfo, "email") + Map infoMap = [reviewerName: reviewerNameValue, reviewerEmail: reviewerEmailValue,] + reviewers.add(infoMap) + } + return reviewers + } + + private String removeCharacters(PropertyMapper propertyMapper, String columnName) { + String answer + try { + answer = StringCleanup.removeCharacters(propertyMapper.getProperty(columnName), CHARACTER_REMOVEABLE) + } catch (Exception exception) { + answer = "N/A" + } + return answer + } + + @SuppressWarnings(['JavaIoPackageAccess']) + private File createReportFile(ProjectData projectData) { + File file = new File("${projectData.tmpFolder}/${CSV_FOLDER}/${CSV_FILE}") + if (file.exists()) { + file.delete() + } + file.getParentFile().mkdirs() + file.createNewFile() + return file + } + + private List getRepositories(ProjectData projectData) { + String projectDataKey = "${projectData.getKey().toLowerCase()}" + List result = [] + List repos = projectData.getRepositories() + int reposSize = repos.size() + for (def i = 0; i < reposSize; i++) { + def repository = repos[i] + result << [repo: "${projectDataKey}-${repository.id}", branch: repository.branch] + } + return result + } + + private void processRepo(Map repo, ProjectData projectData, File file) { + boolean nextPage = true + int nextPageStart = 0 + while (nextPage) { + Map commits = bitbucketService.getCommitsForIntegrationBranch(repo.repo as String, projectData, nextPageStart) + if (commits.isLastPage) { + nextPage = false + } else { + nextPageStart = commits.nextPageStart + } + processCommits(repo, projectData, commits, file) + } + } + + private void processCommits(Map repo, ProjectData projectData, Map commits, File file) { + commits.values.each { commit -> + Map mergedPR = bitbucketService.getPRforMergedCommit(repo.repo, projectData, commit.id) + // Only changes in PR and destiny integration branch + if (mergedPR.values + && mergedPR.values[0].toRef.displayId == repo.branch) { + def record = new Record(getDateWithFormat(commit.committerTimestamp), + getAuthor(commit.author), + getReviewers(mergedPR.values[0].reviewers), + mergedPR.values[0].links.self[(0)].href, + commit.id, + repo.repo) + writeCSVRecord(file, record) + } + } + } + + private void writeCSVRecord(File file, Record record) { + // Jenkins has his own idea how to concatenate Strings + // Nor '' + '', nor "${}${}", nor StringBuilder nor StringBuffer works properly to + // get a record entry set in an only String, this is the best approach that works as expected. + file << record.commitDate + file << record.CSV + file << record.author.name + file << record.author.FIELD_SEPARATOR + file << record.author.mail + file << record.CSV + record.reviewers.each { reviewer -> + file << reviewer.name + file << reviewer.FIELD_SEPARATOR + file << reviewer.mail + if (reviewer != record.reviewers.last()) { + file << record.REVIEWERS_DELIMITER + } + } + file << record.CSV + file << record.mergeRequestURL + file << record.CSV + file << record.mergeCommitSHA + file << record.CSV + file << record.componentName + file << record.END_LINE + } + + private Developer getAuthor(Map author) { + return new Developer( + author.name, + author.emailAddress) + } + + private List getReviewers(List reviewers) { + List approvals = [] + reviewers.each { + if (it.approved) { + approvals << new Developer( + it.user.name, + it.user.emailAddress) + } + } + return approvals + } + + private String getDateWithFormat(Long timestamp) { + Date dateObj = new Date(timestamp) + return new SimpleDateFormat('yyyy-MM-dd', Locale.getDefault()).format(dateObj) + } + + private Iterator processCsv(String data, String separator, List columnNames) { + Map parseParams = [separator: separator, readFirstLine: true, columnNames: columnNames, ] + return CsvParser.parseCsv(parseParams, data) + } + + private Object processCsvDeveloper(String data) { + return processCsv(data, Developer.FIELD_SEPARATOR, ['name', 'email']).next() + } + + private class Record { + + static final String CSV = ',' + static final String REVIEWERS_DELIMITER = ';' + static final String END_LINE = '\n' + + String commitDate + Developer author + List reviewers + String mergeRequestURL + String mergeCommitSHA + String componentName + + @SuppressWarnings(['ParameterCount']) + Record(String date, Developer author, List reviewers, String mergeRequestURL, + String mergeCommitSHA, String componentName) { + this.commitDate = date + this.author = author + this.reviewers = reviewers + this.mergeRequestURL = mergeRequestURL + this.mergeCommitSHA = mergeCommitSHA + this.componentName = componentName + } + + } + + private class Developer { + + static final String FIELD_SEPARATOR = '|' + String name + String mail + + Developer(String name, String mail) { + this.name = name + this.mail = mail + } + + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/Constants.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/Constants.groovy new file mode 100644 index 00000000..b685af51 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/Constants.groovy @@ -0,0 +1,90 @@ +package org.ods.doc.gen.leva.doc.services + +class Constants { + + enum DocumentType { + + CSD, + DIL, + DTP, + DTR, + RA, + CFTP, + CFTR, + IVP, + IVR, + SSDS, + TCP, + TCR, + TIP, + TIR, + TRC, + OVERALL_DTR, + OVERALL_IVR, + OVERALL_TIR + + } + + public static List OVERALL_DOC_TYPES = [DocumentType.DTR as String, DocumentType.TIR as String, ] + + protected static Map DOCUMENT_TYPE_NAMES = [ + (DocumentType.CSD as String) : 'Combined Specification Document', + (DocumentType.DIL as String) : 'Discrepancy Log', + (DocumentType.DTP as String) : 'Software Development Testing Plan', + (DocumentType.DTR as String) : 'Software Development Testing Report', + (DocumentType.CFTP as String) : 'Combined Functional and Requirements Testing Plan', + (DocumentType.CFTR as String) : 'Combined Functional and Requirements Testing Report', + (DocumentType.IVP as String) : 'Configuration and Installation Testing Plan', + (DocumentType.IVR as String) : 'Configuration and Installation Testing Report', + (DocumentType.RA as String) : 'Risk Assessment', + (DocumentType.TRC as String) : 'Traceability Matrix', + (DocumentType.SSDS as String) : 'System and Software Design Specification', + (DocumentType.TCP as String) : 'Test Case Plan', + (DocumentType.TCR as String) : 'Test Case Report', + (DocumentType.TIP as String) : 'Technical Installation Plan', + (DocumentType.TIR as String) : 'Technical Installation Report', + (DocumentType.OVERALL_DTR as String): 'Overall Software Development Testing Report', + (DocumentType.OVERALL_IVR as String): 'Overall Configuration and Installation Testing Report', + (DocumentType.OVERALL_TIR as String): 'Overall Technical Installation Report', + ] + + static GAMP_CATEGORY_SENSITIVE_DOCS = [ + DocumentType.SSDS as String, + DocumentType.CSD as String, + DocumentType.CFTP as String, + DocumentType.CFTR as String + ] + + static List COMPONENT_TYPE_IS_NOT_INSTALLED = [ + PipelineConfig.REPO_TYPE_ODS_SAAS_SERVICE as String, + PipelineConfig.REPO_TYPE_ODS_TEST as String, + PipelineConfig.REPO_TYPE_ODS_LIB as String + ] + + static Map INTERNAL_TO_EXT_COMPONENT_TYPES = [ + (PipelineConfig.REPO_TYPE_ODS_SAAS_SERVICE as String): 'SAAS Component', + (PipelineConfig.REPO_TYPE_ODS_TEST as String): 'Automated tests', + (PipelineConfig.REPO_TYPE_ODS_SERVICE as String): '3rd Party Service Component', + (PipelineConfig.REPO_TYPE_ODS_CODE as String): 'ODS Software Component', + (PipelineConfig.REPO_TYPE_ODS_INFRA as String): 'Infrastructure as Code Component', + (PipelineConfig.REPO_TYPE_ODS_LIB as String): 'ODS library component' + ] + + public static String DEVELOPER_PREVIEW_WATERMARK = 'Developer Preview' + public static String WORK_IN_PROGRESS_WATERMARK = 'Work in Progress' + public static String WORK_IN_PROGRESS_DOCUMENT_MESSAGE = 'Attention: this document is work in progress!' + + public static List referencedDcocs = [ + DocumentType.CSD, + DocumentType.SSDS, + DocumentType.RA, + DocumentType.TRC, + DocumentType.DTP, + DocumentType.DTR, + DocumentType.CFTP, + DocumentType.CFTR, + DocumentType.TIR, + DocumentType.TIP, + ] + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/DocGenService.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/DocGenService.groovy new file mode 100644 index 00000000..3fc60ce7 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/DocGenService.groovy @@ -0,0 +1,197 @@ +package org.ods.doc.gen.leva.doc.services + +import groovy.json.JsonOutput +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils +import org.ods.doc.gen.adapters.nexus.NexusService +import org.ods.doc.gen.core.ZipFacade +import org.ods.doc.gen.pdf.builder.services.PdfGenerationService +import org.ods.doc.gen.project.data.ProjectData +import org.springframework.stereotype.Service + +import java.nio.file.Files +import java.nio.file.Path +import java.nio.file.Paths + +@Slf4j +@Service +class DocGenService { + + public static final String CONTENT_TPE = "application/zip" + + private final PdfGenerationService pdfGenerationService + private final ZipFacade zip + protected final NexusService nexus + protected final PDFService pdf + + DocGenService(PdfGenerationService pdfGenerationService, + ZipFacade zip, + NexusService nexus, + PDFService pdf) { + this.zip = zip + this.pdfGenerationService = pdfGenerationService + this.nexus = nexus + this.pdf = pdf + } + + String createOverallDocument(String templateName, + String documentType, + Map metadata, + Closure visitor = null, + String watermarkText = null, + ProjectData projectData) { + def documents = [] + def sections = [] + + projectData.getOverallDocsToMerge(documentType).each { Map componentPdf -> + documents << Paths.get(componentPdf.pdfPath) + sections << [ + heading: "${documentType} for component: ${componentPdf.component} (merged)" + ] + } + + def data = [ + metadata: metadata, + data : [ + sections: sections + ], + ] + + if (visitor) { + visitor(data.data) + } + + // Create a cover page and merge all documents into one + def modifier = { document -> + documents.add(0, document) + return this.pdf.merge(projectData.tmpFolder as String, documents) + } + + return createDocument(projectData, documentType, null, data, [:], modifier, templateName, watermarkText) + } + + String createDocument(ProjectData projectData, + String documentType, + Map repo, + Map data, + Map files = [:], + Closure modifier = null, + String templateName = null, + String watermarkText = null) { + Path document = convertToPdf(templateName ?: documentType, getDocumentTemplatesVersion(projectData), data) + + // Apply PDF document modifications, if provided + if (modifier) { + document = modifier(document) + } + + // Apply PDF document watermark, if provided + if (watermarkText) { + document = this.pdf.addWatermarkText(document, watermarkText) + } + + String version = projectData.build.version + String buildId = projectData.build.buildId + String basename = this.getDocumentBasename(projectData, documentType, version, buildId, repo) + String pdfName = "${basename}.pdf" + + Map artifacts = buildArchiveWithPdfAndRawData(projectData.tmpFolder, pdfName, document, basename, data, files) + String pathToFile = this.zip.createZipFileFromFiles(projectData.tmpFolder, "${basename}.zip", artifacts) + + if (Constants.OVERALL_DOC_TYPES.contains(documentType) && repo) { + File pdfFile = Paths.get(projectData.tmpFolder, pdfName).toFile() + FileUtils.copyFile(document.toFile(), pdfFile) + projectData.addOverallDocToMerge(documentType, repo.id as String, pdfFile.absolutePath) + } + + String directory = "${projectData.key.toLowerCase()}-${projectData.build.version}" + URI docURL = nexus.storeArtifact(directory, "${basename}.zip", pathToFile, CONTENT_TPE) + logUploadFile(documentType, repo, docURL) + return docURL.toString() + } + + private void logUploadFile(String documentType, Map repo, URI docURL) { + String message = "Document ${documentType} created and uploaded" + if (repo) { + message += " for ${repo.id}" + } + message += " to [${docURL}]" + log.info message + } + + private Map buildArchiveWithPdfAndRawData(String tmpFolder, + String pdfName, + Path document, + String basename, + Map data, + Map files) { + + Path jsonTemp = Files.createTempFile(Paths.get(tmpFolder), basename, '.json') + try (FileWriter writer = new FileWriter(jsonTemp.toFile())) { + writer.write(JsonOutput.toJson(data)) + } + + Map artifacts = [ + "${pdfName}" : document.toString(), + "raw/${basename}.json": jsonTemp.toString(), + ] + artifacts << files.collectEntries { name, path -> + [name, path] + } + return artifacts + } + + private String getDocumentBasename(ProjectData projectData, + String documentType, + String version, + String build = null, + Map repo = null) { + getDocBasenameWithDocVersion(projectData, documentType, getDocumentVersion(projectData, version, build), repo) + } + + private String getDocBasenameWithDocVersion(ProjectData projectData, + String documentType, + String docVersion, + Map repo = null) { + def result = projectData.key + if (repo) { + result += "-${repo.id}" + } + + return "${documentType}-${result}-${docVersion}".toString() + } + + private String getDocumentVersion(ProjectData projectData, String projectVersion, String build = null) { + if (build) { + "${projectVersion}-${build}" + } else { + "${projectVersion}-${projectData.build.buildId}" + } + } + + private String getDocumentTemplatesVersion(ProjectData projectData) { + def capability = projectData.getCapability('LeVADocs') + return capability.templatesVersion + } + + private Path convertToPdf(String type, String version, Map data) { + def body = [ + metadata: [ + type : type, + version: version + ], + data : data + ] + Path tmpDir + Path documentPdf + try { + tmpDir = Files.createTempDirectory("${body.metadata.type}-v${body.metadata.version}") + documentPdf = pdfGenerationService.generatePdfFile(body.metadata as Map, body.data as Map, tmpDir) + } catch (Throwable e) { + throw new RuntimeException("Conversion form HTML to PDF failed, corrupt data.", e) + } + + return documentPdf + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/DocumentHistory.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/DocumentHistory.groovy new file mode 100644 index 00000000..db294e03 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/DocumentHistory.groovy @@ -0,0 +1,412 @@ +package org.ods.doc.gen.leva.doc.services + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.core.SortUtil +import org.ods.doc.gen.leva.doc.repositories.ProjectDataRepository +import org.ods.doc.gen.project.data.Environment +import org.ods.doc.gen.project.data.JiraDataItem +import org.ods.doc.gen.project.data.ProjectData + +import java.nio.file.NoSuchFileException + +/** + * This class contains the logic for keeping a consistent document version. + */ +@Slf4j +class DocumentHistory { + + static final String ADD = 'add' + static final String ADDED = ADD + 'ed' + static final String DELETE = 'discontinue' + static final String DELETED = DELETE + 'd' + static final String CHANGE = 'change' + static final String CHANGED = CHANGE + 'd' + + protected List data = [] + private String sourceEnvironment + protected String targetEnvironment + /** + * Autoincremental number containing the internal version Id of the document + */ + protected Long latestVersionId + protected final String documentName + protected Boolean allIssuesAreValid = true + protected String allIssuesAreNotValidMessage = '' + + DocumentHistory(String targetEnvironment, String documentName) { + this.documentName = documentName + if (!targetEnvironment) { + throw new RuntimeException('Variable \'targetEnvironment\' cannot be empty for computing Document History') + } + this.latestVersionId = 0L + this.targetEnvironment = targetEnvironment + // Retrieve the history from the previous environment, + // unless the target environment is the first one where the document is generated. + sourceEnvironment = getSourceEnvironment(documentName, targetEnvironment) + } + + DocumentHistory load(ProjectData projectData, Map jiraData, List filterKeys) { + this.latestVersionId = 0L + try { + def docHistories = sortDocHistoriesReversed(this.loadSavedDocHistoryData(projectData)) + if (docHistories) { + this.latestVersionId = docHistories.first().getEntryId() + log.debug("Retrieved latest ${documentName} version ${latestVersionId} from saved history") + this.data = docHistories + } + } catch (NoSuchFileException e) { + if (sourceEnvironment != targetEnvironment) { + this.log.warn("No saved history found. Exception message: ${e.message}") + } else { + this.log.debug("No saved history found. Exception message: ${e.message}") + } + } + // Only update the history if the target environment is the first one where the document is created, + // or if no saved history was found + if (sourceEnvironment == targetEnvironment || !latestVersionId) { + this.latestVersionId += 1L + def newDocDocumentHistoryEntry = parseJiraDataToDocumentHistoryEntry(jiraData, filterKeys) + if (this.allIssuesAreValid) { + log.debug("Creating a new history entry with version ${latestVersionId} for ${documentName}") + newDocDocumentHistoryEntry.rational = createRational(newDocDocumentHistoryEntry) + this.data.add(0, newDocDocumentHistoryEntry) + this.data = sortDocHistoriesReversed(this.data) + } else { + // We only want to update the document version when we are actually adding a new entry. + this.latestVersionId -= 1L + log.warn("Not all issues for ${documentName} had version. Not creating a new history entry.") + } + } + return this + } + + + Long getVersion() { + this.latestVersionId + } + + private List loadSavedDocHistoryData(ProjectData projectData) { + def fileName = this.getSavedDocumentName(sourceEnvironment) + this.log.debug("Retrieving saved document history with name '${fileName}' from '${projectData.tmpFolder}'.") + + def content = ProjectDataRepository.loadFile(projectData.tmpFolder, fileName) + try { + return content.collect { Map entry -> + if (!entry.entryId) { + throw new IllegalArgumentException('EntryId cannot be empty') + } + if (!entry.projectVersion) { + throw new IllegalArgumentException('projectVersion cannot be empty') + } + return new DocumentHistoryEntry( + entry as Map, + entry.entryId as Long, + entry.projectVersion as String, + entry.previousProjectVersion as String, + entry.rational as String + ) + } + } catch (Exception e) { + throw new IllegalArgumentException('Unable to load saved document history for file ' + + "'${fileName}': ${e.message}", e) + } + } + + List getDocGenFormat() { + def issueTypes = JiraDataItem.TYPES - JiraDataItem.TYPE_DOCS + def transformEntry = { DocumentHistoryEntry e -> + if (e.getEntryId() == 1L) { + return [ + entryId: e.getEntryId(), + rational: e.getRational(), + ] + } + def formatedIssues = issueTypes.collect { type -> + def issues = e[type] ?: [] + if (issues.isEmpty()) { + return null + } + def changed = issues.findAll { it.action == CHANGE }.clone() + .collect { [key: it.key, predecessors: it.predecessors.join(", ")] } + + [ type: type, + (ADDED): SortUtil.sortIssuesByKey(issues.findAll { it.action == ADD }), + (CHANGED): SortUtil.sortIssuesByKey(changed), + (DELETED): SortUtil.sortIssuesByKey(issues.findAll { it.action == DELETE }), + ] + }.findAll { it } + + return [entryId: e.getEntryId(), + rational: e.getRational(), + issueType: formatedIssues + computeDocChaptersOfDocument(e) + ] + } + sortDocHistories(this.data).collect { transformEntry(it) } + } + + @SuppressWarnings(['UseCollectMany']) + + protected List getDocumentKeys() { + def result = this.data + .collect { e -> + e.findAll { JiraDataItem.TYPES.contains(it.key) } + .collect { type, actions -> actions.collect { it.key } } + }.flatten() + if (result) { + return result + } + return [] + } + + + protected Map computeDocChaptersOfDocument(DocumentHistoryEntry entry) { + def docIssues = SortUtil.sortHeadingNumbers(entry[JiraDataItem.TYPE_DOCS] ?: [], 'number') + .collect { + def issue = [action: it.action, key: "${it.key}", details: "${it.number} ${it.heading}"] + if (it.action == CHANGE) { + issue.predecessors = it.predecessors.join(", ") + } + return issue + } + return [ type: 'documentation chapters', + (ADDED): docIssues.findAll { it.action == ADD }, + (CHANGED): docIssues.findAll { it.action == CHANGE }, + (DELETED): docIssues.findAll { it.action == DELETE }, + ] + + } + + + protected String getSavedDocumentName(String environment = targetEnvironment) { + def suffix = (documentName) ? '-' + documentName : '' + return "documentHistory-${environment}${suffix}" + } + + // Do not remove me. Sort is not supported by the Jenkins runtime + + protected static List sortDocHistories(List dhs) { + dhs.sort { it.getEntryId() } + } + + + protected static List sortDocHistoriesReversed(List dhs) { + sortDocHistories(dhs).reverse() + } + + // Find the previous environment where the document was generated, if it exists. + // Otherwise, use the target environment. + + private getSourceEnvironment(String documentName, String targetEnvironment) { + def documentType = LeVADocumentUtil.getTypeFromName(documentName) + return Environment.getPreviousCreationEnvironment(documentType, targetEnvironment) + } + + + private Map computeDiscontinuations(Map jiraData, List previousDocumentIssues) { + (jiraData.discontinuationsPerType ?: [:]) + .collectEntries { String issueType, List issues -> + def discont = discontinuedIssuesThatWereInDocument(issueType, previousDocumentIssues, issues) + [(issueType): discont.collect { computeIssueContent(issueType, DELETE, it) } ] + } + } + + + private static List discontinuedIssuesThatWereInDocument(String issuesType, List previousDocIssues, + List discontinued) { + if (issuesType.equalsIgnoreCase(JiraDataItem.TYPE_DOCS)) { + discontinued + } else { + discontinued.findAll { previousDocIssues.contains(it.key) } + } + } + + + private static Map computeIssueContent(String issueType, String action, Map issue) { + def result = [key: issue.key, action: action] + if (JiraDataItem.TYPE_DOCS.equalsIgnoreCase(issueType)) { + result << issue.subMap(['documents', 'number', 'heading']) + } + if (action.equalsIgnoreCase(CHANGE)) { + result << [predecessors: issue.predecessors] + } + return result + } + + + private static List getConcurrentVersions(List versions, String previousProjVersion) { + // DO NOT remove this method. Takewhile is not supported by Jenkins and must be used in a Non-CPS method + versions.takeWhile { it.version != previousProjVersion }.collect { it.id } + } + + + private void checkIfAllIssuesHaveVersions(Collection jiraIssues) { + if (jiraIssues) { + def issuesWithNoVersion = jiraIssues.findAll { Map i -> + (i.versions) ? false : true + } + + if (!issuesWithNoVersion.isEmpty()) { + //throw new RuntimeException('In order to build a coherent document history we need to have a' + + // ' version for all the elements. In this case, the following items have this state: ' + + // "'${issuesWithNoVersion*.key.join(', ')}'") + this.allIssuesAreNotValidMessage = 'Document history not valid. We don\'t have a version for ' + + "the following elements'${issuesWithNoVersion.collect { it.key }.join(', ')}'. " + + 'If you are not using versioning ' + + 'and its automated document history you can ignore this warning. Otherwise, make sure ' + + 'all the issues have a version attached to it.' + this.allIssuesAreValid = false + } + } + } + + + private String createRational(DocumentHistoryEntry currentEntry) { + if (currentEntry.getEntryId() == 1L) { + return "Initial document version." + } + def versionText = "Modifications for project version '${currentEntry.getProjectVersion()}'." + return versionText + rationaleIfConcurrentVersionsAreFound(currentEntry) + } + + /** + * Adds a rational in case concurrent versions are found. This can only be achieved + * @param currentEntry current document history entry + * @return rational message + */ + + private String rationaleIfConcurrentVersionsAreFound(DocumentHistoryEntry currentEntry) { + def oldVersionsSimplified = this.data.collect { + [id: it.getEntryId(), version: it.getProjectVersion(), previousVersion: it.getPreviousProjectVersion()] + }.findAll { it.id != currentEntry.getEntryId() } + def concurrentVersions = getConcurrentVersions(oldVersionsSimplified, currentEntry.getPreviousProjectVersion()) + + if (currentEntry.getPreviousProjectVersion() && oldVersionsSimplified.size() == concurrentVersions.size() && + LeVADocumentUtil.isFullDocument(documentName)) { + throw new RuntimeException('Inconsistent state found when building DocumentHistory. ' + + "Project has as previous project version '${currentEntry.getPreviousProjectVersion()}' " + + 'but no document history containing that ' + + 'version can be found. Please check the file named ' + + "'${this.getSavedDocumentName(sourceEnvironment)}.json'" + + ' in your release manager repository') + } + + if (concurrentVersions.isEmpty()) { + return '' + } else { + def pluralS = (concurrentVersions.size() == 1) ? '' : 's' + return " This document version invalidates the changes done in document version${pluralS} " + + "'${concurrentVersions.join(', ')}'." + } + } + + private DocumentHistoryEntry parseJiraDataToDocumentHistoryEntry(Map jiraData, List keysInDocument) { + log.debug("Parsing jira data to document history") + def projectVersion = jiraData.version + def previousProjectVersion = jiraData.previousVersion ?: '' + this.allIssuesAreValid = true + + def versionMap = this.computeEntryData(jiraData, projectVersion, keysInDocument) + if (!this.allIssuesAreValid){ + log.warn(this.allIssuesAreNotValidMessage) + } + log.debug("parseJiraDataToDocumentHistoryEntry: versionMap = ${versionMap.toString()}") + return new DocumentHistoryEntry(versionMap, this.latestVersionId, projectVersion, previousProjectVersion, '') + } + + + private Map computeEntryData(Map jiraData, String projectVersion, List keysInDocument) { + + def previousDocumentIssues = this.getDocumentKeys() + def additionsAndUpdates = this.computeAdditionsAndUpdates(jiraData, projectVersion) + def discontinuations = computeDiscontinuations(jiraData, previousDocumentIssues) + + def addUpdDisc = JiraDataItem.TYPES.collectEntries { String issueType -> + [(issueType): (additionsAndUpdates[issueType] ?: []) + (discontinuations[issueType] ?: [])] + } as Map + + return this.computeActionsThatBelongToTheCurrentHistoryData(previousDocumentIssues, addUpdDisc, keysInDocument) + } + + /** + * From the set of all issues that belong to the current project version, versionActions, + * determine the actual set of issues and actions to be included in the current document history being generated. + * This is done based on the issues in the previous version of the same history, previousDocIssues, + * and the list of issues that should go into the current version, issuesInDoc. + * These are generated in function of the document type and sometimes also in the concrete component. + * + * The resulting set of issues is not in general a subset of versionActions, + * because some discontinuations must be added. + * These are discontinuations to issues that are not listed in issuesInDoc. + * + * @param previousDocIssues list of issue keys that were in the previous document version. + * @param versionActions map with all the issues that belong to the current project version by issue type. + * @param issuesInDoc list of the keys of the issues that should be included in the current document version. + * @return the map with all the issues and actions to be included in the current document history entry, by type. + */ + + private Map computeActionsThatBelongToTheCurrentHistoryData ( + List previousDocIssues, Map versionActions, List issuesInDoc) { + // Guard against the possibility that a null issuesInDoc is provided + if (issuesInDoc == null) { + issuesInDoc = [] + } + + // Traverse the collection of all the issues that belong to the current project version, + // in order to determine which of them are to be included in the current history data. + def issues = versionActions.collectEntries { issueType, actions -> + def typeResult = actions.collect { Map action -> + // If the key belongs to the current history data, include it regardless of the action + if (issuesInDoc.contains(action.key)) { + return action + } + // If we are here, the current issue doesn't belong to the current document history entry, + // but we still need to add discontinuations for some of these issues. + def ret = [] + // If it is a discontinuation, add it unconditionally. + if (DELETE.equalsIgnoreCase(action.action)) { + ret << action + } + // If this is not the first version, let's treat the predecessors of the current issue. + // As the current issue won't be in the document anymore, the predecessors may need to disappear, too. + if (this.latestVersionId > 1L) { + // Any predecessors that were in the previous document history are discontinued. + // Note that there will never be more than one predecessor, but it's still a list. + ret += (action.predecessors ?: []).findAll { previousDocIssues.contains(it) } + .collect { computeIssueContent(issueType, DELETE, [key: it]) } + } + return ret + } + [(issueType): typeResult.flatten()] + } + return issues + } + + + private Map computeAdditionsAndUpdates(Map jiraData, String projectVersion) { + jiraData.findAll { JiraDataItem.TYPES.contains(it.key) } + .collectEntries { String issueType, Map issues -> + checkIfAllIssuesHaveVersions(issues.values()) + def issuesOfThisVersion = this.getIssueChangesForVersion(projectVersion, issueType, issues) + [(issueType): issuesOfThisVersion] + } + } + + + private List getIssueChangesForVersion(String version, String issueType, Map issues) { + // Filter chapter issues for this document only + if (issueType == JiraDataItem.TYPE_DOCS) { + def docType = LeVADocumentUtil.getTypeFromName(this.documentName) + issues = issues.findAll { it.value.documents.contains(docType) } + } + + issues.findAll { it.value.versions?.contains(version) } + .collect { issueKey, issue -> + def isAnUpdate = issue.predecessors + if (isAnUpdate) { + computeIssueContent(issueType, CHANGE, issue) + } else { + computeIssueContent(issueType, ADD, issue) + } + } + } +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/DocumentHistoryEntry.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/DocumentHistoryEntry.groovy new file mode 100644 index 00000000..892bc81b --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/DocumentHistoryEntry.groovy @@ -0,0 +1,148 @@ +package org.ods.doc.gen.leva.doc.services + +class DocumentHistoryEntry implements Map, Serializable { + + private final Long entryId + private final Map delegate + private final String projectVersion + private final String previousProjectVersion + String rational + + DocumentHistoryEntry(Map map, Long entryId, String projectVersion, + String previousProjectVersion, String rational) { + def delegate = (Map) map.clone() + delegate.keySet().removeAll(['entryId', 'projectVersion', 'previousProjectVersion', 'rational']) + this.delegate = delegate + this.entryId = entryId + this.projectVersion = projectVersion + this.previousProjectVersion = previousProjectVersion + this.rational = rational + } + + + @Override + int size() { + return delegate.size() + } + + + @Override + boolean isEmpty() { + return delegate.isEmpty() + } + + + @Override + boolean containsKey(Object key) { + return delegate.containsKey(key) + } + + + @Override + boolean containsValue(Object value) { + return delegate.containsValue(value) + } + + + @Override + Object get(Object key) { + return delegate.get(key) + } + + + @Override + Object put(Object key, Object value) { + return delegate.put(key, value) + } + + + @Override + Object remove(Object key) { + return delegate.remove(key) + } + + + @Override + void putAll(Map m) { + delegate.putAll(m) + } + + + @Override + void clear() { + delegate.clear() + } + + + @Override + Set keySet() { + return (delegate + [ + id: entryId, + projectVersion: projectVersion, + previousProjectVersion: previousProjectVersion, + rational: rational, + ]).keySet() + } + + + @Override + Collection values() { + return (delegate + [ + entryId: entryId, + projectVersion: projectVersion, + previousProjectVersion: previousProjectVersion, + rational: rational, + ]).values() + } + + + @Override + Set entrySet() { + return (delegate + [ + entryId: entryId, + projectVersion: projectVersion, + previousProjectVersion: previousProjectVersion, + rational: rational, + ]).entrySet() + } + + + Long getEntryId() { + return entryId + } + + + String getRational() { + return rational + } + + + String getProjectVersion() { + return projectVersion + } + + + String getPreviousProjectVersion() { + return previousProjectVersion + } + + + Map getDelegate() { + return delegate + } + + + DocumentHistoryEntry cloneIt() { + def bos = new ByteArrayOutputStream() + def os = new ObjectOutputStream(bos) + os.writeObject(this.delegate) + def ois = new ObjectInputStream(new ByteArrayInputStream(bos.toByteArray())) + + def newDelegate = ois.readObject() + DocumentHistoryEntry result = new DocumentHistoryEntry(newDelegate, + entryId, projectVersion, previousProjectVersion) + result.rational = this.rational + return result + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentChaptersFileService.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentChaptersFileService.groovy new file mode 100644 index 00000000..1208a506 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentChaptersFileService.groovy @@ -0,0 +1,53 @@ +package org.ods.doc.gen.leva.doc.services + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.project.data.ProjectData +import org.springframework.stereotype.Service +import org.yaml.snakeyaml.Yaml + +import java.nio.file.Paths + +@Slf4j +@Service +class LeVADocumentChaptersFileService { + + static final String DOCUMENT_CHAPTERS_BASE_DIR = 'docs' + + Map getDocumentChapterData(ProjectData projectData, String documentType) { + if (!documentType?.trim()) { + throw new IllegalArgumentException( + "Error: unable to load document chapters. 'documentType' is undefined." + ) + } + + String yamlText + def file = Paths.get(projectData.tmpFolder as String, DOCUMENT_CHAPTERS_BASE_DIR, "${documentType}.yaml").toFile() + if (!file.exists()) { + try { + yamlText = new File("${projectData.tmpFolder}/docs/${documentType}.yaml")?.text + } catch(Exception exception){ + yamlText = "" // TODO s2o throw exception?? + } + } else { + yamlText = file.text + } + + def data = [:] + if (!yamlText) { + throw new RuntimeException( + "Error: unable to load document chapters. File 'docs/${documentType}.yaml' could not be read." + ) + } else { + data = new Yaml().load(yamlText) ?: [:] + } + + return data.collectEntries { chapter -> + def number = chapter.number.toString() + chapter.number = number + chapter.content = chapter.content ?: '' + chapter['status'] = 'done' + [ "sec${number.replaceAll(/\./, 's')}".toString(), chapter ] + } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentService.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentService.groovy new file mode 100644 index 00000000..5519651d --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentService.groovy @@ -0,0 +1,1619 @@ +package org.ods.doc.gen.leva.doc.services + +import groovy.util.logging.Slf4j +import groovy.xml.XmlUtil +import org.ods.doc.gen.adapters.jira.CustomIssueFields +import org.ods.doc.gen.adapters.jira.IssueTypes +import org.ods.doc.gen.adapters.jira.JiraUseCase +import org.ods.doc.gen.adapters.jira.LabelPrefix +import org.ods.doc.gen.adapters.nexus.NexusService +import org.ods.doc.gen.core.SortUtil +import org.ods.doc.gen.leva.doc.services.xunit.JUnitReportsService +import org.ods.doc.gen.project.data.Environment +import org.ods.doc.gen.project.data.JiraDataItem +import org.ods.doc.gen.project.data.Project +import org.ods.doc.gen.project.data.ProjectData +import org.ods.doc.gen.project.data.TestType +import org.springframework.stereotype.Service + +import javax.inject.Inject +import java.nio.file.Paths +import java.time.Clock +import java.time.LocalDateTime + +import static groovy.json.JsonOutput.prettyPrint +import static groovy.json.JsonOutput.toJson + +@Slf4j +@Service +class LeVADocumentService { + + private static final String DOC_ID_VERSION = "Doc ID/Version: see auto-generated cover page" + public static final String INTEGRATION = "Integration" + public static final String ACCEPTANCE = "Acceptance" + public static final String OVER_COVER = 'Overall-Cover' + + private final Project project + private final DocGenService docGenUseCase + private final JiraUseCase jiraUseCase + private final JUnitReportsService junit + private final LeVADocumentChaptersFileService levaFiles + private final BitbucketTraceabilityService bbt + private final NexusService nexus + + @Inject + Clock clock + + @Inject + LeVADocumentService(Project project, + DocGenService docGenUseCase, + NexusService nexus, + JiraUseCase jiraUseCase, + JUnitReportsService junit, + LeVADocumentChaptersFileService levaFiles, + BitbucketTraceabilityService bbt) { + this.project = project + this.docGenUseCase = docGenUseCase + this.nexus = nexus + this.jiraUseCase = jiraUseCase + this.junit = junit + this.levaFiles = levaFiles + this.bbt = bbt + } + + @SuppressWarnings('CyclomaticComplexity') + List createCSD(Map data) { + log.info("createCSD for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + String documentType = data.documentType as String + + def sections = this.getDocumentSections(documentType, projectData) + def watermarkText = this.getWatermarkText(projectData) + + def requirements = projectData.getSystemRequirements() + def reqsWithNoGampTopic = getReqsWithNoGampTopic(requirements) + def reqsGroupedByGampTopic = getReqsGroupedByGampTopic(requirements) + reqsGroupedByGampTopic << ['uncategorized': reqsWithNoGampTopic] + + def requirementsForDocument = reqsGroupedByGampTopic.collectEntries { gampTopic, reqs -> + def updatedReqs = reqs.collect { req -> + def epics = req.getResolvedEpics() + def epic = epics.isEmpty() ? null : epics.first() + return [ + key : req.key, + applicability : 'Mandatory', + ursName : req.name, + ursDescription : this.convertImages(req.description ?: ''), + csName : req.configSpec.name ?: 'N/A', + csDescription : this.convertImages(req.configSpec.description ?: ''), + fsName : req.funcSpec.name ?: 'N/A', + fsDescription : this.convertImages(req.funcSpec.description ?: ''), + epic : epic?.key, + epicName : epic?.epicName, + epicTitle : epic?.title, + epicDescription : this.convertImages(epic?.description), + ] + } + + Map output = sortByEpicAndRequirementKeys(updatedReqs) + + return [ + (gampTopic.replaceAll(' ', '').toLowerCase()): output + ] + } + + List keysInDoc = computeKeysInDocForCSD(projectData.getRequirements()) + if (projectData.data?.jira?.discontinuationsPerType) { + keysInDoc += projectData.data.jira.discontinuationsPerType.requirements*.key + keysInDoc += projectData.data.jira.discontinuationsPerType.epics*.key + } + + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + sections : sections, + requirements: requirementsForDocument, + documentHistory: docHistory?.getDocGenFormat() ?: [] + ] + ] + + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, + getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + log.info("createCSD - data:${prettyPrint(toJson(docHistory.data))}") + return docHistory.data + } + + List createDIL(Map data) { + log.info("createDIL for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentType = Constants.DocumentType.DIL as String + + def watermarkText = this.getWatermarkText(projectData) + + def bugs = projectData.getBugs().each { bug -> + bug.tests = bug.getResolvedTests() + } + + def acceptanceTestBugs = bugs.findAll { bug -> + bug.tests.findAll { test -> + test.testType == TestType.ACCEPTANCE + } + } + + def integrationTestBugs = bugs.findAll { bug -> + bug.tests.findAll { test -> + test.testType == TestType.INTEGRATION + } + } + + Map metadata = this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType] as String) + metadata.orientation = "Landscape" + + Map data_ = [ + metadata: metadata, + data : [:] + ] + + if (!integrationTestBugs.isEmpty()) { + data_.data.integrationTests = buildTestBugsDIL(integrationTestBugs, INTEGRATION) + } + + if (!acceptanceTestBugs.isEmpty()) { + data_.data.acceptanceTests = buildTestBugsDIL(acceptanceTestBugs, ACCEPTANCE) + } + + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri) + return [] + } + + List createDTP(Map data) { + log.info("createDTP for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentType = Constants.DocumentType.DTP as String + + def sections = this.getDocumentSectionsFileOptional(projectData, documentType) + def watermarkText = this.getWatermarkText(projectData) + + def unitTests = projectData.getAutomatedTestsTypeUnit() + def tests = this.computeTestsWithRequirementsAndSpecs(projectData, unitTests) + def modules = this.getReposWithUnitTestsInfo(projectData, unitTests) + + def keysInDoc = this.computeKeysInDocForDTP(modules, tests) + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + sections: sections, + tests: tests, + modules: modules, + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + List createRA(Map data) { + log.info("createRA for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentType = Constants.DocumentType.RA as String + + def sections = this.getDocumentSections(documentType, projectData) + def watermarkText = this.getWatermarkText(projectData) + + def obtainEnum = { category, value -> + return projectData.getEnumDictionary(category)[value as String] + } + + def risks = projectData.getRisks() + .findAll { it != null } + .collect { r -> + def mitigationsText = this.replaceDashToNonBreakableUnicode(r.mitigations ? r.mitigations.join(", ") : "None") + def testsText = this.replaceDashToNonBreakableUnicode(r.tests ? r.tests.join(", ") : "None") + def requirements = (r.getResolvedSystemRequirements() + r.getResolvedTechnicalSpecifications()) + def gxpRelevance = obtainEnum("GxPRelevance", r.gxpRelevance) + def probabilityOfOccurrence = obtainEnum("ProbabilityOfOccurrence", r.probabilityOfOccurrence) + def severityOfImpact = obtainEnum("SeverityOfImpact", r.severityOfImpact) + def probabilityOfDetection = obtainEnum("ProbabilityOfDetection", r.probabilityOfDetection) + def riskPriority = obtainEnum("RiskPriority", r.riskPriority) + + return [ + key: r.key, + name: r.name, + description: convertImages(r.description), + proposedMeasures: "Mitigations: ${ mitigationsText }
Tests: ${ testsText }", + requirements: requirements.findAll { it != null }.collect { it.name }.join("
"), + requirementsKey: requirements.findAll { it != null }.collect { it.key }.join("
"), + gxpRelevance: gxpRelevance ? gxpRelevance."short" : "None", + probabilityOfOccurrence: probabilityOfOccurrence ? probabilityOfOccurrence."short" : "None", + severityOfImpact: severityOfImpact ? severityOfImpact."short" : "None", + probabilityOfDetection: probabilityOfDetection ? probabilityOfDetection."short" : "None", + riskPriority: riskPriority ? riskPriority.value : "N/A", + riskPriorityNumber: r.riskPriorityNumber ?: "N/A", + riskComment: r.riskComment ? r.riskComment : "N/A", + ] + } + + def proposedMeasuresDesription = projectData.getRisks().collect { r -> + (r.getResolvedTests().collect { + if (!it) throw new IllegalArgumentException("Error: test for requirement ${r.key} could not be obtained. Check if all of ${r.tests.join(", ")} exist in JIRA") + [key: it.key, name: it.name, description: it.description, type: "test", referencesRisk: r.key] + } + r.getResolvedMitigations().collect { [key: it.key, name: it.name, description: it.description, type: "mitigation", referencesRisk: r.key] }) + }.flatten() + + if (!sections."sec4s2s1") sections."sec4s2s1" = [:] + sections."sec4s2s1".nonGxpEvaluation = projectData.getProjectProperties()."PROJECT.NON-GXP_EVALUATION" ?: 'n/a' + + if (!sections."sec4s2s2") sections."sec4s2s2" = [:] + + if (projectData.getProjectProperties()."PROJECT.USES_POO" == "true") { + sections."sec4s2s2" = [ + usesPoo : "true", + lowDescription : projectData.getProjectProperties()."PROJECT.POO_CAT.LOW", + mediumDescription: projectData.getProjectProperties()."PROJECT.POO_CAT.MEDIUM", + highDescription : projectData.getProjectProperties()."PROJECT.POO_CAT.HIGH" + ] + } + + if (!sections."sec5") sections."sec5" = [:] + sections."sec5".risks = SortUtil.sortIssuesByProperties(risks, ["requirementsKey", "key"]) + sections."sec5".proposedMeasures = SortUtil.sortIssuesByKey(proposedMeasuresDesription) + + def metadata = this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]) + metadata.orientation = "Landscape" + + def keysInDoc = this.computeKeysInDocForRA(projectData.getRisks()) + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + + def data_ = [ + metadata: metadata, + data : [ + sections: sections, + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + List createCFTP(Map data) { + log.info("createCFTP for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentType = Constants.DocumentType.CFTP as String + + def sections = this.getDocumentSections(documentType, projectData) + def watermarkText = this.getWatermarkText(projectData) + + def keysInDoc = [] + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + sections : sections, + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + List createIVP(Map data) { + log.info("createIVP for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentType = Constants.DocumentType.IVP as String + + def sections = this.getDocumentSections(documentType, projectData) + def watermarkText = this.getWatermarkText(projectData) + + def installationTestIssues = projectData.getAutomatedTestsTypeInstallation() + + def testsGroupedByRepoType = groupTestsByRepoType(installationTestIssues, projectData) + + def testsOfRepoTypeOdsCode = [] + def testsOfRepoTypeOdsService = [] + testsGroupedByRepoType.each { repoTypes, tests -> + if (repoTypes.contains(PipelineConfig.REPO_TYPE_ODS_CODE)) { + testsOfRepoTypeOdsCode.addAll(tests) + } + + if (repoTypes.contains(PipelineConfig.REPO_TYPE_ODS_SERVICE)) { + testsOfRepoTypeOdsService.addAll(tests) + } + } + + def keysInDoc = this.computeKeysInDocForIPV(installationTestIssues) + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + + def installedRepos = projectData.repositories.collect { + it << [ doInstall: !Constants.COMPONENT_TYPE_IS_NOT_INSTALLED.contains(it.type?.toLowerCase())] + } + + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + repositories : installedRepos.collect { [id: it.id, type: it.type, doInstall: it.doInstall, data: [git: [url: it.data.git == null ? null : it.data.git.url]]] }, + sections : sections, + tests : SortUtil.sortIssuesByKey(installationTestIssues.collect { testIssue -> + [ + key : testIssue.key, + summary : testIssue.name, + techSpec: testIssue.techSpecs.join(", ") ?: "N/A" + ] + }), + testsOdsService: testsOfRepoTypeOdsService, + testsOdsCode : testsOfRepoTypeOdsCode + ], + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + List createSSDS(Map data) { + log.info("createSSDS for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentType = Constants.DocumentType.SSDS as String + + def bbInfo = this.bbt.getPRMergeInfo(projectData) + def sections = this.getDocumentSections(documentType, projectData) + def watermarkText = this.getWatermarkText(projectData) + + def componentsMetadata = SortUtil.sortIssuesByKey(this.computeComponentMetadata(projectData, documentType).values()) + def systemDesignSpecifications = projectData.getTechnicalSpecifications() + .findAll { it.systemDesignSpec } + .collect { techSpec -> + [ + key : techSpec.key, + req_key : techSpec.requirements?.join(", ") ?: "None", + description: this.convertImages(techSpec.systemDesignSpec) + ] + } + + if (!sections."sec2s3") sections."sec2s3" = [:] + sections."sec2s3".bitbucket = SortUtil.sortIssuesByProperties(bbInfo ?: [], ["component", "date", "url"]) + + if (!sections."sec3s1") sections."sec3s1" = [:] + sections."sec3s1".specifications = SortUtil.sortIssuesByProperties(systemDesignSpecifications, ["req_key", "key"]) + + if (!sections."sec5s1") sections."sec5s1" = [:] + sections."sec5s1".components = componentsMetadata.collect { c -> + [ + key : c.key, + nameOfSoftware: c.nameOfSoftware, + componentType : c.componentType, + componentId : c.componentId, + description : this.convertImages(c.description ?: ''), + supplier : c.supplier, + version : c.version, + references : c.references, + doInstall : c.doInstall + ] + } + + // Get the components that we consider modules in SSDS (the ones you have to code) + def modules = componentsMetadata + .findAll { it.odsRepoType.toLowerCase() == PipelineConfig.REPO_TYPE_ODS_CODE.toLowerCase() } + .collect { component -> + // We will set-up a double loop in the template. For moustache limitations we need to have lists + component.requirements = component.requirements.findAll { it != null }.collect { r -> + [key: r.key, name: r.name, + reqDescription: this.convertImages(r.description), gampTopic: r.gampTopic ?: "uncategorized"] + }.groupBy { it.gampTopic.toLowerCase() } + .collect { k, v -> [gampTopic: k, requirementsofTopic: v] } + + return component + } + + if (!sections."sec10") sections."sec10" = [:] + sections."sec10".modules = modules + + def keysInDoc = this.computeKeysInDocForSSDS(projectData.getTechnicalSpecifications(), componentsMetadata, modules) + DocumentHistory docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + Map data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + sections: sections, + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + List createTCP(Map data) { + log.info("createTCP for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + String documentType = Constants.DocumentType.TCP as String + + def sections = this.getDocumentSections(documentType, projectData) + def watermarkText = this.getWatermarkText(projectData) + + def integrationTestIssues = projectData.getAutomatedTestsTypeIntegration() + def acceptanceTestIssues = projectData.getAutomatedTestsTypeAcceptance() + + def keysInDoc = computeKeysInDocForTCP(integrationTestIssues + acceptanceTestIssues) + + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + sections : sections, + integrationTests: SortUtil.sortIssuesByKey(integrationTestIssues.collect { testIssue -> + [ + key : testIssue.key, + description : this.convertImages(testIssue.description ?: ''), + requirements: testIssue.requirements ? testIssue.requirements.join(", ") : "N/A", + bugs : testIssue.bugs ? testIssue.bugs.join(", ") : "N/A", + steps : sortTestSteps(testIssue.steps) + ] + }), + acceptanceTests : SortUtil.sortIssuesByKey(acceptanceTestIssues.collect { testIssue -> + [ + key : testIssue.key, + description : this.convertImages(testIssue.description ?: ''), + requirements: testIssue.requirements ? testIssue.requirements.join(", ") : "N/A", + bugs : testIssue.bugs ? testIssue.bugs.join(", ") : "N/A", + steps : sortTestSteps(testIssue.steps) + ] + }), + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + List createTIP(Map data) { + log.info("createTIP for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentType = Constants.DocumentType.TIP as String + + def sections = this.getDocumentSectionsFileOptional(projectData, documentType) + def watermarkText = this.getWatermarkText(projectData) + + def keysInDoc = this.computeKeysInDocForTIP(projectData.getComponents()) + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + project_key : projectData.key, + repositories: data.repositories, + sections : sections, + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + List createTRC(Map data) { + log.info("createTRC for ${data.projectBuild}") + log.trace("createTRC - data:${data}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentType = Constants.DocumentType.TRC as String + def sections = this.getDocumentSections(documentType, projectData) + def systemRequirements = projectData.getSystemRequirements() + + def testIssues = systemRequirements + .collect { it.getResolvedTests() } + .flatten().unique().findAll{it != null} + .findAll { + [TestType.ACCEPTANCE, + TestType.INSTALLATION, + TestType.INTEGRATION].contains(it.testType) + } + + systemRequirements = systemRequirements.collect { r -> + def predecessors = r.expandedPredecessors.collect { [key: it.key, versions: it.versions.join(', ')] } + def testWithoutUnit = r.tests.collect() + // Only if test key from requirements are also in testIssues (Acceptance, Integration, Installation) but no + // Unit tests + testWithoutUnit.retainAll(testIssues.key) + [ + key : r.key, + name : r.name, + description : this.convertImages(r.description ?: ''), + techSpecs : r.techSpecs.join(", "), + risks : (r.getResolvedTechnicalSpecifications().risks + r.risks).flatten().unique().join(", "), + tests : testWithoutUnit.join(", "), + predecessors: predecessors, + ] + } + + if (!sections."sec4") sections."sec4" = [:] + sections."sec4".systemRequirements = SortUtil.sortIssuesByKey(systemRequirements) + + def keysInDoc = this.computeKeysInDocForTRC(projectData.getSystemRequirements()) + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + sections: sections, + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + def watermarkText = this.getWatermarkText(projectData) + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + // DocTypeProjectFixtureWithTestData + @SuppressWarnings('CyclomaticComplexity') + List createTCR(Map data) { + log.info("createTCR for ${data.projectBuild}") + log.trace("createTCR - data:${data}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + + String documentType = Constants.DocumentType.TCR as String + + def sections = this.getDocumentSections(documentType, projectData) + def watermarkText = this.getWatermarkText(projectData) + + List testsTypes = [TestType.ACCEPTANCE.uncapitalize(), TestType.INTEGRATION.uncapitalize()] + Map testData = junit.getTestData(data, testsTypes) + Map integrationTestData = testData.integration + List integrationTestIssues = projectData.getAutomatedTestsTypeIntegration() + Map acceptanceTestData = testData.acceptance + List acceptanceTestIssues = projectData.getAutomatedTestsTypeAcceptance() + + def matchedHandler = { result -> + result.each { testIssue, testCase -> + testIssue.isSuccess = !(testCase.error || testCase.failure || testCase.skipped + || !testIssue.getResolvedBugs(). findAll { bug -> bug.status?.toLowerCase() != "done" }.isEmpty() + || testIssue.isUnexecuted) + testIssue.comment = testIssue.isUnexecuted ? "This Test Case has not been executed" : "" + testIssue.timestamp = testIssue.isUnexecuted ? "N/A" : testCase.timestamp + testIssue.isUnexecuted = false + testIssue.actualResult = testIssue.isSuccess ? "Expected result verified by automated test" : + testIssue.isUnexecuted ? "Not executed" : "Test failed. Correction will be tracked by Jira issue task \"bug\" listed below." + } + } + + def unmatchedHandler = { result -> + result.each { testIssue -> + testIssue.isSuccess = false + testIssue.isUnexecuted = true + testIssue.comment = testIssue.isUnexecuted ? "This Test Case has not been executed" : "" + testIssue.actualResult = testIssue.isUnexecuted ? "Not executed" : "Test failed. Correction will be tracked by Jira issue task \"bug\" listed below." + } + } + + this.jiraUseCase.matchTestIssuesAgainstTestResults(integrationTestIssues, integrationTestData?.testResults ?: [:], matchedHandler, unmatchedHandler) + this.jiraUseCase.matchTestIssuesAgainstTestResults(acceptanceTestIssues, acceptanceTestData?.testResults ?: [:], matchedHandler, unmatchedHandler) + + List keysInDoc = this.computeKeysInDocForTCR(integrationTestIssues + acceptanceTestIssues) + DocumentHistory docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + sections : sections, + integrationTests : buildTestsResultsTCR(integrationTestIssues), + acceptanceTests : buildTestsResultsTCR(acceptanceTestIssues), + integrationTestFiles: buildTestsResultsFiles(integrationTestData), + acceptanceTestFiles : buildTestsResultsFiles(acceptanceTestData), + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + String templateName = getDocumentTemplateName(projectData, documentType) + String uri = docGenUseCase.createDocument(projectData, documentType, null, data_, [:], null, templateName, watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + @SuppressWarnings('CyclomaticComplexity') + List createCFTR(Map data) { + log.info("createCFTR for ${data.projectBuild}") + log.trace("createCFTR - data:${data}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + + def documentType = Constants.DocumentType.CFTR as String + + List testsTypes = [TestType.ACCEPTANCE.uncapitalize(), TestType.INTEGRATION.uncapitalize()] + Map testData = junit.getTestData(data, testsTypes) + def acceptanceTestData = testData.acceptance + def integrationTestData = testData.integration + + def sections = this.getDocumentSections(documentType, projectData) + def watermarkText = this.getWatermarkText(projectData) + + def acceptanceTestIssues = SortUtil.sortIssuesByKey(projectData.getAutomatedTestsTypeAcceptance()) + def integrationTestIssues = SortUtil.sortIssuesByKey(projectData.getAutomatedTestsTypeIntegration()) + Map combinedTestResults = junit.combineTestResults( + [acceptanceTestData.testResults, integrationTestData.testResults]) + def discrepancies = this + .computeTestDiscrepancies("Integration and Acceptance Tests", + (acceptanceTestIssues + integrationTestIssues), + combinedTestResults, + false) + + def keysInDoc = this.computeKeysInDocForCFTR(integrationTestIssues + acceptanceTestIssues) + + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + sections : sections, + numAdditionalAcceptanceTests : getNumAdditionalTest(acceptanceTestData, acceptanceTestIssues), + numAdditionalIntegrationTests: getNumAdditionalTest(integrationTestData, integrationTestIssues), + conclusion : [ + summary : discrepancies.conclusion.summary, + statement: discrepancies.conclusion.statement + ], + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + if (!acceptanceTestIssues.isEmpty()) { + data_.data.acceptanceTests = buildTestIssuesCFTR(acceptanceTestIssues) + } + + if (!integrationTestIssues.isEmpty()) { + data_.data.integrationTests = buildTestIssuesCFTR(integrationTestIssues) + } + + def files = (acceptanceTestData.testReportFiles + integrationTestData.testReportFiles).collectEntries { file -> + ["raw/${file.getName()}", file.getPath()] + } + + def uri = docGenUseCase.createDocument(projectData, documentType, null, data_, files, null, getDocumentTemplateName(projectData, documentType), watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + List createIVR(Map data) { + log.info("createIVR for ${data.projectBuild}") + log.trace("createIVR - data:${data}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + + def documentType = Constants.DocumentType.IVR as String + + def testData = junit.getTestData(data, [TestType.INSTALLATION.uncapitalize()]) + def installationTestData = testData.installation + + def sections = this.getDocumentSections(documentType, projectData) + def watermarkText = this.getWatermarkText(projectData) + + def installationTestIssues = projectData.getAutomatedTestsTypeInstallation() + def discrepancies = this.computeTestDiscrepancies("Installation Tests", installationTestIssues, installationTestData.testResults) + + def testsOfRepoTypeOdsCode = [] + def testsOfRepoTypeOdsService = [] + def testsGroupedByRepoType = groupTestsByRepoType(installationTestIssues, projectData) + testsGroupedByRepoType.each { repoTypes, tests -> + if (repoTypes.contains(PipelineConfig.REPO_TYPE_ODS_CODE)) { + testsOfRepoTypeOdsCode.addAll(tests) + } + + if (repoTypes.contains(PipelineConfig.REPO_TYPE_ODS_SERVICE)) { + testsOfRepoTypeOdsService.addAll(tests) + } + } + + def keysInDoc = this.computeKeysInDocForIVR(installationTestIssues) + def docHistory = this.getAndStoreDocumentHistory(documentType, keysInDoc, projectData) + + def installedRepos = projectData.repositories.collect { + it << [ doInstall: !Constants.COMPONENT_TYPE_IS_NOT_INSTALLED.contains(it.type?.toLowerCase())] + } + + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType]), + data : [ + repositories : installedRepos.collect { [id: it.id, type: it.type, doInstall: it.doInstall, data: [git: [url: it.data.git == null ? null : it.data.git.url]]] }, + sections : sections, + tests : buildTestResultsIVR(installationTestIssues), + numAdditionalTests: getNumAdditionalTest(installationTestData, installationTestIssues), + testFiles : buildTestsResultsFiles(installationTestData), + discrepancies : discrepancies.discrepancies, + conclusion : [ + summary : discrepancies.conclusion.summary, + statement: discrepancies.conclusion.statement + ], + testsOdsService : testsOfRepoTypeOdsService, + testsOdsCode : testsOfRepoTypeOdsCode + ], + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + + def files = installationTestData.testReportFiles.collectEntries { file -> + ["raw/${file.getName()}", file.getPath()] + } + + String templateName = getDocumentTemplateName(projectData, documentType) + String uri = docGenUseCase.createDocument(projectData, documentType, null, data_, files, null, templateName, watermarkText) + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docHistory?.getVersion() as String) + return docHistory.data + } + + List createDTR(Map data) { + log.info("createDTR for ${data.projectBuild}") + log.trace("createDTR - data:${prettyPrint(toJson(data))}") + + Map repo = data.repo + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + String documentType = Constants.DocumentType.DTR as String + + Map unitTestData = junit.getTestData(data, [TestType.UNIT.uncapitalize()]).unit + Map sections = this.getDocumentSectionsFileOptional(projectData, documentType) + String watermarkText = this.getWatermarkText(projectData) + List testIssues = projectData.getAutomatedTestsTypeUnit("Technology-${repo.id}") + Map discrepancies = computeTestDiscrepancies("Development Tests", testIssues, unitTestData.testResults) + + def obtainEnum = { category, value -> + return projectData.getEnumDictionary(category)[value as String] + } + + def tests = testIssues.collect { testIssue -> + def description = '' + if (testIssue.description) { + description += testIssue.description + } else { + description += testIssue.name + } + + def riskLevels = testIssue.getResolvedRisks(). collect { + def value = obtainEnum("SeverityOfImpact", it.severityOfImpact) + return value ? value.text : "None" + } + + def softwareDesignSpecs = testIssue.getResolvedTechnicalSpecifications() + .findAll { it.softwareDesignSpec } + .collect { it.key } + + [ + key : testIssue.key, + description : this.convertImages(description ?: 'N/A'), + systemRequirement : testIssue.requirements.join(", "), + success : testIssue.isSuccess ? "Y" : "N", + remarks : testIssue.isUnexecuted ? "Not executed" : "N/A", + softwareDesignSpec: (softwareDesignSpecs.join(", ")) ?: "N/A", + riskLevel : riskLevels ? riskLevels.join(", ") : "N/A" + ] + } + + List keysInDoc = this.computeKeysInDocForDTR(tests) + String documentName = "${documentType}-${repo.id}" + DocumentHistory docHistory = this.getAndStoreDocumentHistory(documentName, keysInDoc, projectData) + + def data_ = [ + metadata: this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType], repo), + data : [ + repo : repo, + sections : sections, + tests : tests, + numAdditionalTests: getNumAdditionalTest(unitTestData, testIssues), + testFiles : SortUtil.sortIssuesByProperties(unitTestData.testReportFiles.collect { file -> + [name: file.name, path: file.path, text: XmlUtil.serialize(file.text)] + } ?: [], ["name"]), + discrepancies : discrepancies.discrepancies, + conclusion : [ + summary : discrepancies.conclusion.summary, + statement: discrepancies.conclusion.statement + ], + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + def files = unitTestData.testReportFiles.collectEntries { file -> + ["raw/${file.getName()}", file.getPath()] + } + + def modifier = { document -> return document } + def templateName = getDocumentTemplateName(projectData, documentType, repo) + docGenUseCase.createDocument(projectData, documentType, repo, data_, files, modifier, templateName, watermarkText) + return docHistory.data + } + + @SuppressWarnings('CyclomaticComplexity') + List createTIR(Map data) { + log.info("createTIR for ${data.projectBuild}") + log.trace("createTIR - data:${prettyPrint(toJson(data))}") + + Map repo = data.repo + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + + def documentType = Constants.DocumentType.TIR as String + + def testData = junit.getTestData(data, [TestType.INSTALLATION.uncapitalize()]) + def installationTestData = testData.installation + + def sections = this.getDocumentSectionsFileOptional(projectData, documentType) + def watermarkText = this.getWatermarkText(projectData) + + def deploynoteData = 'Components were built & deployed during installation.' + if (repo.data.openshift.resurrectedBuild) { + deploynoteData = "Components were found, and are 'up to date' with version control -no deployments happend!\r" + + " SCRR was restored from the corresponding creation build (${repo.data.openshift.resurrectedBuild})" + } else if (!repo.data.openshift.builds) { + deploynoteData = 'NO Components were built during installation, existing components (created in Dev) were deployed.' + } + + def keysInDoc = ['Technology-' + repo.id] + def docHistory = this.getAndStoreDocumentHistory(documentType + '-' + repo.id, keysInDoc,projectData) + + repo << [ doInstall: !Constants.COMPONENT_TYPE_IS_NOT_INSTALLED.contains(repo.type?.toLowerCase())] + + def data_ = [ + metadata : this.getDocumentMetadata(projectData, Constants.DOCUMENT_TYPE_NAMES[documentType], repo), + deployNote : deploynoteData, + openShiftData: [ + builds : repo.data.openshift.builds ?: '', + deployments: repo.data.openshift.deployments ?: '' + ], + testResults: [ + installation: installationTestData?.testResults + ], + data: [ + repo : repo, + sections: sections, + documentHistory: docHistory?.getDocGenFormat() ?: [], + ] + ] + + def modifier = { document -> return document } + docGenUseCase.createDocument(projectData, documentType, repo, data_, [:], modifier, getDocumentTemplateName(projectData, documentType, repo), watermarkText) + return docHistory.data + } + + List createOverallDTR(Map data) { + log.info("createOverallDTR for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentTypeName = Constants.DOCUMENT_TYPE_NAMES[Constants.DocumentType.OVERALL_DTR as String] + Map metadata = this.getDocumentMetadata(projectData, documentTypeName) + def documentType = Constants.DocumentType.DTR as String + + def watermarkText = this.getWatermarkText(projectData) + + String uri = docGenUseCase.createOverallDocument(OVER_COVER, documentType, metadata, null, watermarkText, projectData) + def docVersion = projectData.getDocumentVersionFromHistories(documentType) as String + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docVersion) + + def docHistory = this.getAndStoreDocumentHistory(documentType, [], projectData) + return docHistory.data + } + + List createOverallTIR(Map data) { + log.info("createOverallTIR for ${data.projectBuild}") + + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + def documentTypeName = Constants.DOCUMENT_TYPE_NAMES[Constants.DocumentType.OVERALL_TIR as String] + def metadata = this.getDocumentMetadata(projectData, documentTypeName) + + def documentType = Constants.DocumentType.TIR as String + + def watermarkText = this.getWatermarkText(projectData) + + def visitor = { data_ -> + // Prepend a section for the Jenkins build log + data_.sections.add(0, [ + heading: 'Installed Component Summary' + ]) + data_.sections.add(1, [ + heading: 'Jenkins Build Log' + ]) + + nexus.downloadAndExtractZip(data.build.jenkinsLog as String, projectData.tmpFolder) + data_.jenkinsData = [ + log: Paths.get(projectData.tmpFolder, "jenkins-job-log.txt" ).toFile().text + ] + + data_.repositories = data.repositories + } + + String uri = docGenUseCase.createOverallDocument('Overall-TIR-Cover', documentType, metadata, visitor, watermarkText, projectData) + def docVersion = projectData.getDocumentVersionFromHistories(documentType) as String + this.updateJiraDocumentationTrackingIssue(projectData, documentType, uri, docVersion) + + def docHistory = this.getAndStoreDocumentHistory(documentType, [], projectData) + return docHistory.data + } + + private def computeKeysInDocForDTR(def data) { + return data.collect { + [it.key, it.systemRequirement.split(', '), it.softwareDesignSpec.split(', ')] + }.flatten() + } + + private def computeKeysInDocForCFTR(def data) { + return data.collect { it.subMap(['key']).values() }.flatten() + } + + //TODO Use this method to generate the test description everywhere + def getTestDescription(testIssue) { + return testIssue.description ?: testIssue.name ?: 'N/A' + } + + private def computeKeysInDocForRA(def data) { + return data + .collect { it.subMap(['key', 'requirements', 'techSpecs', 'mitigations', 'tests']).values() } + .flatten() + } + + private def computeKeysInDocForIPV(def data) { + return data + .collect { it.subMap(['key', 'components', 'techSpecs']).values() } + .flatten() + } + + private def computeKeysInDocForIVR(def data) { + return data + .collect { it.subMap(['key', 'components', 'techSpecs']).values() } + .flatten() + } + + def sortTestSteps(def testSteps) { + return testSteps?.sort(false) { it.orderId } + } + + private def computeKeysInDocForSSDS(def techSpecs, def componentsMetadata, def modules) { + def specs = techSpecs.collect { it.subMap(['key', 'requirements']).values() }.flatten() + def components = componentsMetadata.collect { it.key } + def mods = modules.collect { it.subMap(['requirementKeys', 'softwareDesignSpecKeys']).values() }.flatten() + return specs + components + mods + } + + private def computeKeysInDocForTIP(def data) { + return data.collect { it.key } + } + + private def computeKeysInDocForTRC(def data) { + return data.collect { it.subMap(['key', 'risks', 'tests']).values() }.flatten() + } + + private String getDocumentTemplateName(ProjectData projectData, String documentType, Map repo = null) { + def capability = projectData.getCapability("LeVADocs") + if (!capability) { + return documentType + } + + def suffix = "" + // compute suffix based on repository type + if (repo != null) { + if (repo.type.toLowerCase() == PipelineConfig.REPO_TYPE_ODS_INFRA) { + if (documentType == Constants.DocumentType.TIR as String) { + suffix += "-infra" + } + } + } + + // compute suffix based on gamp category + if (Constants.GAMP_CATEGORY_SENSITIVE_DOCS.contains(documentType)) { + suffix += "-" + capability.GAMPCategory + } + + return documentType + suffix + } + + private computeKeysInDocForTCP(def data) { + return data.collect { it.subMap(['key', 'requirements', 'bugs']).values() }.flatten() + } + + private String convertImages(String content) { + def result = content + if (content && content.contains(" + matched.each { testIssue, testCase -> + testIssue.isSuccess = !(testCase.error || testCase.failure || testCase.skipped) + testIssue.isUnexecuted = !!testCase.skipped + testIssue.timestamp = testCase.timestamp + } + } + + def unmatchedHandler = { unmatched -> + unmatched.each { testIssue -> + testIssue.isSuccess = false + testIssue.isUnexecuted = true + } + } + + this.jiraUseCase.matchTestIssuesAgainstTestResults(testIssues, testResults ?: [:], matchedHandler, unmatchedHandler, checkDuplicateTestResults) + + // Compute failed and missing Jira test issues + def failedTestIssues = testIssues.findAll { testIssue -> + return !testIssue.isSuccess && !testIssue.isUnexecuted + } + + def unexecutedTestIssues = testIssues.findAll { testIssue -> + return !testIssue.isSuccess && testIssue.isUnexecuted + } + + // Compute extraneous failed test cases + def extraneousFailedTestCases = [] + testResults.testsuites.each { testSuite -> + extraneousFailedTestCases.addAll(testSuite.testcases.findAll { testCase -> + return (testCase.error || testCase.failure) && !failedTestIssues.any { this.jiraUseCase.checkTestsIssueMatchesTestCase(it, testCase) } + }) + } + + // Compute test discrepancies + def isMajorDiscrepancy = failedTestIssues || unexecutedTestIssues || extraneousFailedTestCases + if (isMajorDiscrepancy) { + result.discrepancies = 'The following major discrepancies were found during testing.' + result.conclusion.summary = 'No success - major discrepancies found' + result.conclusion.statement = 'Some discrepancies found as' + + if (failedTestIssues || extraneousFailedTestCases) { + result.conclusion.statement += ' tests did fail' + } + + if (failedTestIssues) { + result.discrepancies += " Failed tests: ${failedTestIssues.collect { it.key }.join(', ')}." + } + + if (extraneousFailedTestCases) { + result.discrepancies += " Other failed tests: ${extraneousFailedTestCases.size()}." + } + + if (unexecutedTestIssues) { + result.discrepancies += " Unexecuted tests: ${unexecutedTestIssues.collect { it.key }.join(', ')}." + + if (failedTestIssues || extraneousFailedTestCases) { + result.conclusion.statement += ' and others were not executed' + } else { + result.conclusion.statement += ' tests were not executed' + } + } + + result.conclusion.statement += '.' + } + + return result + } + + private List computeTestsWithRequirementsAndSpecs(ProjectData projectData, List tests) { + def obtainEnum = { category, value -> + return projectData.getEnumDictionary(category)[value as String] + } + + tests.collect { testIssue -> + def softwareDesignSpecs = testIssue.getResolvedTechnicalSpecifications() + .findAll { it.softwareDesignSpec } + .collect { it.key } + def riskLevels = testIssue.getResolvedRisks(). collect { + def value = obtainEnum("SeverityOfImpact", it.severityOfImpact) + return value ? value.text : "None" + } + def description = '' + if (testIssue.description) { + description += testIssue.description + } else { + description += testIssue.name + } + + [ + moduleName: testIssue.components.join(", "), + testKey: testIssue.key, + description: this.convertImages(description ?: 'N/A'), + systemRequirement: testIssue.requirements ? testIssue.requirements.join(", ") : "N/A", + softwareDesignSpec: (softwareDesignSpecs.join(", ")) ?: "N/A", + riskLevel: riskLevels ? riskLevels.join(", ") : "N/A" + ] + } + } + + /** + * This computes the information related to the components (modules) that are being developed + * @documentType documentType + * @return component metadata with software design specs, requirements and info comming from the component repo + */ + private Map computeComponentMetadata(ProjectData projectData, String documentType) { + return projectData.components.collectEntries { component -> + def normComponentName = component.name.replaceAll('Technology-', '') + + if (isReleaseManagerComponent(projectData, normComponentName)) { + return [ : ] + } + + def repo_ = projectData.repositories.find { + [it.id, it.name, it.metadata.name].contains(normComponentName) + } + if (!repo_) { + List repoNamesAndIds = projectData.repositories. collect { [id: it.id, name: it.name] } + throw new RuntimeException("Error: unable to create ${documentType}. Could not find a repository " + + "configuration with id or name equal to '${normComponentName}' for " + + "Jira component '${component.name}' in project '${projectData.key}'. Please check " + + "the metatada.yml file. In this file there are the following repositories " + + "configured: ${repoNamesAndIds}") + } + + def metadata = repo_.metadata + + List softwareDesignSpecs = component.getResolvedTechnicalSpecifications() + .findAll { it.softwareDesignSpec } + .collect { [key: it.key, softwareDesignSpec: this.convertImages(it.softwareDesignSpec)] } + + return [ + (component.name): [ + key : component.name, + componentName : component.name, + componentId : metadata.id ?: 'N/A - part of this application', + componentType : Constants.INTERNAL_TO_EXT_COMPONENT_TYPES.get(repo_.type?.toLowerCase()), + doInstall : !Constants.COMPONENT_TYPE_IS_NOT_INSTALLED.contains(repo_.type?.toLowerCase()), + odsRepoType : repo_.type?.toLowerCase(), + description : metadata.description, + nameOfSoftware : normComponentName ?: metadata.name, + references : metadata.references ?: 'N/A', + supplier : metadata.supplier, + version : (repo_.type?.toLowerCase() == PipelineConfig.REPO_TYPE_ODS_CODE) ? + projectData.build.version : + metadata.version, + requirements : component.getResolvedSystemRequirements(), + requirementKeys : component.requirements, + softwareDesignSpecKeys: softwareDesignSpecs.collect { it.key }, + softwareDesignSpec: softwareDesignSpecs + ] + ] + } + } + + private boolean isReleaseManagerComponent(ProjectData projectData, normComponentName) { + String releaseManagerRepo = "${projectData.data.git.releaseManagerRepo}" + String thisComponentRepo = "${projectData.key}-${normComponentName}" + return thisComponentRepo.equalsIgnoreCase(releaseManagerRepo) + } + + private Map computeComponentsUnitTests(List tests) { + def issueComponentMapping = tests.collect { test -> + test.getResolvedComponents().collect { [test: test.key, component: it.name] } + }.flatten() + issueComponentMapping.groupBy { it.component }.collectEntries { c, v -> + [(c.replaceAll("Technology-", "")): v.collect { it.test } ] + } + } + + private List getReposWithUnitTestsInfo(ProjectData projectData, List unitTests) { + def componentTestMapping = computeComponentsUnitTests(unitTests) + projectData.repositories.collect { + [ + id: it.id, + description: it.metadata?.description, + tests: componentTestMapping[it.id]? componentTestMapping[it.id].join(", "): "None defined" + ] + } + } + + private Map groupTestsByRepoType(List jiraTestIssues, ProjectData projectData) { + return jiraTestIssues.collect { test -> + def components = test.getResolvedComponents() + test.repoTypes = components.collect { component -> + def normalizedComponentName = component.name.replaceAll('Technology-', '') + def repository = projectData.repositories.find { repository -> + [repository.id, repository.name].contains(normalizedComponentName) + } + + if (!repository) { + throw new IllegalArgumentException("Error: \n" + + "unable to find a repository definition with id/name:'${normalizedComponentName}' \n" + + "for Jira component '${component.name}'") + } + + return repository.type + } as Set + + return test + }.groupBy { it.repoTypes } + } + + private Map getDocumentMetadata(ProjectData projectData, String documentTypeName, Map repo = null) { + def name = projectData.name + if (repo) { + name += ": ${repo.id}" + } + + def metadata = [ + id : null, // unused + name : name, + description : projectData.description, + type : documentTypeName, + version : projectData.build.version, + date_created : LocalDateTime.now(clock).toString(), + buildParameter: projectData.build, + git : repo ? repo.data.git : projectData.gitData, + openShift : [apiUrl: projectData.getOpenShiftApiUrl()], + jenkins : [ + buildNumber: projectData.build.buildNumber, + buildUrl : projectData.build.buildURL, + jobName : projectData.build.jobName + ], + referencedDocs : this.getReferencedDocumentsVersion(projectData) + ] + + metadata.header = ["${documentTypeName}, Config Item: ${metadata.buildParameter.configItem}", DOC_ID_VERSION] + + return metadata + } + + private List getJiraTrackingIssueLabels(ProjectData projectData, String documentType, List envs = null) { + def labels = [] + + def environments = envs ?: projectData.build.targetEnvironmentToken + environments.each { env -> + Environment.ENVIRONMENT_TYPE[env].get(documentType).each { label -> + labels.add("${LabelPrefix.DOCUMENT}${label}") + } + } + + if (projectData.isDeveloperPreviewMode()) { + // Assumes that every document we generate along the pipeline has a tracking issue in Jira + labels.add("${LabelPrefix.DOCUMENT}${documentType}") + } + + return labels + } + + private String getWatermarkText(ProjectData projectData) { + def result = null + + if (projectData.isDeveloperPreviewMode()) { + result = Constants.DEVELOPER_PREVIEW_WATERMARK + } + + if (projectData.hasWipJiraIssues()) { + result = Constants.WORK_IN_PROGRESS_WATERMARK + } + + return result + } + + private void updateJiraDocumentationTrackingIssue(ProjectData projectData, + String documentType, + String docLocation, + String documentVersionId = null) { + def jiraIssues = this.getDocumentTrackingIssues(projectData, documentType) + def msg = "A new ${Constants.DOCUMENT_TYPE_NAMES[documentType]} has been generated and is available at: ${docLocation}." + def sectionsNotDone = projectData.getWIPDocChaptersForDocument(documentType) + // Append a warning message for documents which are considered work in progress + if (!sectionsNotDone.isEmpty()) { + msg += " ${Constants.WORK_IN_PROGRESS_DOCUMENT_MESSAGE} See issues:" + + " ${sectionsNotDone.join(', ')}" + } + + // Append a warning message if there are any open tasks. Documents will not be considered final + // TODO review me + if (documentVersionId && !projectData.isDeveloperPreviewMode() && projectData.hasWipJiraIssues()) { + msg += "\n *Since there are WIP issues in Jira that affect one or more documents," + + " this document cannot be considered final.*" + } + + if (! documentVersionId) { + def metadata = this.getDocumentMetadata(projectData, documentType) + documentVersionId = "${metadata.version}-${metadata.jenkins.buildNumber}" + } + + jiraIssues.each { Map jiraIssue -> + this.updateValidDocVersionInJira(jiraIssue.key as String, documentVersionId, projectData) + this.jiraUseCase.jira.appendCommentToIssue(jiraIssue.key as String, msg) + } + } + + private List computeSectionsNotDone(Map issues = [:]) { + if (!issues) return [] + return issues.values().findAll { !it.status?.equalsIgnoreCase('done') }.collect { it.key } + } + + private DocumentHistory getAndStoreDocumentHistory(String documentName, + List keysInDoc = [], + ProjectData projectData) { + // If we have already saved the version, load it from project + if (projectData.historyForDocumentExists(documentName)) { + return projectData.getHistoryForDocument(documentName) + } else { + def documentType = LeVADocumentUtil.getTypeFromName(documentName) + def jiraData = projectData.data.jira as Map + def environment = this.computeSavedDocumentEnvironment(documentType, projectData) + def docHistory = new DocumentHistory(environment, documentName) + def docChapters = projectData.getDocumentChaptersForDocument(documentType) + def docChapterKeys = docChapters.collect { chapter -> + chapter.key + } + docHistory.load(projectData, jiraData, (keysInDoc + docChapterKeys).unique()) + + // Save the doc history to project class, so it can be persisted when considered + projectData.setHistoryForDocument(docHistory, documentName) + + return docHistory + } + } + + private String computeSavedDocumentEnvironment(String documentType, ProjectData projectData) { + def environment = projectData.build.targetEnvironmentToken + if (projectData.isWorkInProgress) { + environment = Environment.getEnvironment(documentType) + } + return environment + } + + private void updateValidDocVersionInJira(String jiraIssueKey, String docVersionId, ProjectData projectData) { + def documentationTrackingIssueFields = projectData.getJiraFieldsForIssueType(IssueTypes.DOCUMENTATION_TRACKING) + def documentationTrackingIssueDocumentVersionField = documentationTrackingIssueFields[CustomIssueFields.DOCUMENT_VERSION] + + if (projectData.isVersioningEnabled) { + if (!projectData.isDeveloperPreviewMode() && !projectData.hasWipJiraIssues()) { + // In case of generating a final document, we add the label for the version that should be released + this.jiraUseCase.jira.updateTextFieldsOnIssue(jiraIssueKey, + [(documentationTrackingIssueDocumentVersionField.id): "${docVersionId}"]) + } + } else { + // TODO removeme for ODS 4.0 + this.jiraUseCase.jira.updateTextFieldsOnIssue(jiraIssueKey, + [(documentationTrackingIssueDocumentVersionField.id): "${docVersionId}"]) + } + } + + private List getDocumentTrackingIssues(ProjectData projectData, String documentType, List environments = null) { + def jiraDocumentLabels = this.getJiraTrackingIssueLabels(projectData, documentType, environments) + def jiraIssues = projectData.getDocumentTrackingIssues(jiraDocumentLabels) + if (jiraIssues.isEmpty()) { + throw new RuntimeException("Error: no Jira tracking issue associated with document type '${documentType}'.") + } + return jiraIssues + } + + private List getDocumentTrackingIssuesForHistory(ProjectData projectData, String documentType, List environments = null) { + def jiraDocumentLabels = this.getJiraTrackingIssueLabels(projectData, documentType, environments) + def jiraIssues = projectData.getDocumentTrackingIssuesForHistory(jiraDocumentLabels) + if (jiraIssues.isEmpty()) { + throw new RuntimeException("Error: no Jira tracking issue associated with document type '${documentType}'.") + } + return jiraIssues + } + + private Map getDocumentSections(String documentType, ProjectData projectData) { + def sections = projectData.getDocumentChaptersForDocument(documentType) + + if (!sections) { + throw new RuntimeException("Error: unable to create ${documentType}. " + + 'Could not obtain document chapter data from Jira.') + } + // Extract-out the section, as needed for the DocGen interface + return sections.collectEntries { sec -> + [(sec.section): sec + [content: this.convertImages(sec.content)]] + } + } + + private Map getDocumentSectionsFileOptional(ProjectData projectData, String documentType) { + def sections = projectData.getDocumentChaptersForDocument(documentType) + sections = sections?.collectEntries { sec -> + [(sec.section): sec + [content: this.convertImages(sec.content)]] + } + if (!sections || sections.isEmpty() ) { + sections = this.levaFiles.getDocumentChapterData(projectData, documentType) + if (!projectData.data.jira.undoneDocChapters) { + projectData.data.jira.undoneDocChapters = [:] + } + projectData.data.jira.undoneDocChapters[documentType] = this.computeSectionsNotDone(sections) + sections = sections?.collectEntries { key, sec -> + [(key): sec + [content: this.convertImages(sec.content)]] + } + } + + if (!sections) { + throw new RuntimeException("Error: unable to create ${documentType}. " + + 'Could not obtain document chapter data from Jira nor files.') + } + // Extract-out the section, as needed for the DocGen interface + return sections + } + + /** + * gets teh document version IDS at the start ... can't do that... + * @return Map + */ + private Map getReferencedDocumentsVersion(ProjectData projectData) { + if (!this.jiraUseCase) return [:] + if (!this.jiraUseCase.jira) return [:] + + Constants.referencedDcocs.collectEntries { dt -> + def doc = dt as String + def version = getVersion(projectData, doc) + + return [(doc): "${projectData.build.configItem} / ${version}"] + } + } + + private String getVersion(ProjectData projectData, String doc) { + String version = getVersionFromDocuments(projectData, doc) + if (projectData.isWorkInProgress) { + // If this is a developer preview, the document version is always a WIP, because, + // if we have the document history, it has already been updated to a new version. + return "${version}-WIP" + } + return version + } + + private String getVersionFromDocuments(ProjectData projectData, String doc) { + String version + if (projectData.isVersioningEnabled) { + version = projectData.getDocumentVersionFromHistories(doc) + if (!version) { + // The document has not (yet) been generated in this pipeline run. + def envs = Environment.values().collect { it.toString() } + def trackingIssues = this.getDocumentTrackingIssuesForHistory(projectData, doc, envs) + version = this.jiraUseCase.getLatestDocVersionId(projectData, trackingIssues) + if (projectData.isWorkInProgress || + LeVADocumentScheduler.getFirstCreationEnvironment(doc) == //TODO s2o see what we do + projectData.build.targetEnvironmentToken) { + // Either this is a developer preview or the history is to be updated in this environment. + version += 1L + } + } + } else { + // TODO removeme in ODS 4.x + version = "${projectData.build.version}-${projectData.build.buildNumber}" + } + return version + } + + private def computeKeysInDocForTCR(def data) { + return data.collect { it.subMap(['key', 'requirements', 'bugs']).values() }.flatten() + } + private String replaceDashToNonBreakableUnicode(theString) { + return theString?.replaceAll('-', '‑') + } + + private def getReqsWithNoGampTopic(def requirements) { + return requirements.findAll { it.gampTopic == null } + } + + private def getReqsGroupedByGampTopic(def requirements) { + return requirements.findAll { it.gampTopic != null } + .groupBy { it.gampTopic.toLowerCase() } + } + + private Map sortByEpicAndRequirementKeys(List updatedReqs) { + def sortedUpdatedReqs = SortUtil.sortIssuesByKey(updatedReqs) + def reqsGroupByEpic = sortedUpdatedReqs.findAll { + it.epic != null }.groupBy { it.epic }.sort() + + List reqsGroupByEpicUpdated = reqsGroupByEpic.values().indexed(1).collect { index, List epicStories -> + def aStory = epicStories.first() + [ + epicName : aStory.epicName, + epicTitle : aStory.epicTitle, + epicDescription : this.convertImages(aStory.epicDescription ?: ''), + key : aStory.epic, + epicIndex : index, + stories : epicStories, + ] + } + def output = [ + noepics: sortedUpdatedReqs.findAll { it.epic == null }, + epics : reqsGroupByEpicUpdated + ] + + return output + } + + private List computeKeysInDocForCSD(def data) { + return data.collect { it.subMap(['key', 'epics']).values() }.flatten().unique() as List + } + + private def computeKeysInDocForDTP(def data, def tests) { + return data.collect { 'Technology-' + it.id } + tests + .collect { [it.testKey, it.systemRequirement.split(', '), it.softwareDesignSpec.split(', ')] } + .flatten() + } + + private List buildTestIssuesCFTR(List acceptanceTestIssues) { + return acceptanceTestIssues.collect { testIssue -> + [ + key : testIssue.key, + datetime : testIssue.timestamp ? testIssue.timestamp.replaceAll("T", "
") : "N/A", + description: getTestDescription(testIssue), + remarks : testIssue.isUnexecuted ? "Not executed" : "", + risk_key : testIssue.risks ? testIssue.risks.join(", ") : "N/A", + success : testIssue.isSuccess ? "Y" : "N", + ur_key : testIssue.requirements ? testIssue.requirements.join(", ") : "N/A" + ] + } + } + + private List buildTestResultsIVR(List installationTestIssues) { + SortUtil.sortIssuesByKey(installationTestIssues.collect { testIssue -> + [ + key : testIssue.key, + description: this.convertImages(testIssue.description ?: ''), + remarks : testIssue.isUnexecuted ? "Not executed" : "", + success : testIssue.isSuccess ? "Y" : "N", + summary : testIssue.name, + techSpec : testIssue.techSpecs.join(", ") ?: "N/A" + ] + }) + } + + private List buildTestsResultsFiles(Map acceptanceTestData) { + SortUtil.sortIssuesByProperties(acceptanceTestData.testReportFiles.collect { file -> + [name: file.name, path: file.path, text: file.text] + } ?: [], ["name"]) + } + + private List buildTestsResultsTCR(List testIssues) { + SortUtil.sortIssuesByKey(testIssues.collect { testIssue -> + [ + key : testIssue.key, + description : this.convertImages(getTestDescription(testIssue)), + requirements: testIssue.requirements ? testIssue.requirements.join(", ") : "N/A", + isSuccess : testIssue.isSuccess, + bugs : testIssue.bugs ? testIssue.bugs.join(", ") : (testIssue.comment ? "" : "N/A"), + steps : sortTestSteps(testIssue.steps), + timestamp : testIssue.timestamp ? testIssue.timestamp.replaceAll("T", " ") : "N/A", + comment : testIssue.comment, + actualResult: testIssue.actualResult + ] + }) + } + + private List> buildTestBugsDIL(List testBugs, String type) { + SortUtil.sortIssuesByKey(testBugs).collect { bug -> + [ + discrepancyID : bug.key, + testcaseID : bug.tests.collect { it.key }.join(", "), + level : type, + description : bug.name, + remediation : "To be fixed", + responsibleAndDueDate: "${bug.assignee ? bug.assignee : 'N/A'} / ${bug.dueDate ? bug.dueDate : 'N/A'}", + outcomeResolution : bug.status, + resolved : bug.status == "Done" ? "Yes" : "No" + ] + } + } + + private void getNumAdditionalTest(Map testData, List testIssues) { + junit.getNumberOfTestCases(testData.testResults) - testIssues.count { !it.isUnexecuted } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentUtil.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentUtil.groovy new file mode 100644 index 00000000..c097e47b --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentUtil.groovy @@ -0,0 +1,25 @@ +package org.ods.doc.gen.leva.doc.services + +class LeVADocumentUtil { + + private LeVADocumentUtil() { + } + + static List splitName(String name) { + def components = name.split('-') as List + return components + } + + static String getTypeFromName(String name) { + return splitName(name)[0] + } + + static String getRepoFromName(String name) { + return splitName(name)[1] + } + + static boolean isFullDocument(String name) { + return !getRepoFromName(name) + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/PDFService.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/PDFService.groovy new file mode 100644 index 00000000..3e84837d --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/PDFService.groovy @@ -0,0 +1,104 @@ +package org.ods.doc.gen.leva.doc.services + +import groovy.util.logging.Slf4j +import org.apache.pdfbox.multipdf.PDFMergerUtility +import org.apache.pdfbox.pdmodel.PDDocument +import org.apache.pdfbox.pdmodel.PDPage +import org.apache.pdfbox.pdmodel.PDPageContentStream +import org.apache.pdfbox.pdmodel.font.PDFont +import org.apache.pdfbox.pdmodel.font.PDType1Font +import org.apache.pdfbox.pdmodel.graphics.blend.BlendMode +import org.apache.pdfbox.pdmodel.graphics.state.PDExtendedGraphicsState +import org.apache.pdfbox.util.Matrix +import org.springframework.stereotype.Service + +import java.nio.file.Files +import java.nio.file.Path +import java.nio.file.Paths + +@SuppressWarnings(['JavaIoPackageAccess', 'LineLength', 'UnnecessaryObjectReferences']) +@Slf4j +@Service +class PDFService { + + Path addWatermarkText(Path filePath, String text) { + Path result = Files.createTempFile(Paths.get(filePath.toString()).parent, "temp", '.pdf') + + PDDocument doc + try (FileInputStream fis = new FileInputStream(filePath.toFile())) { + doc = PDDocument.load(fis) + doc.getPages().each { page -> + def font = PDType1Font.HELVETICA + addWatermarkTextToPage(doc, page, font, text) + } + + doc.save(result.toFile()) + } catch (e) { + throw new RuntimeException("Error: unable to add watermark to PDF document: ${e.message}").initCause(e) + } finally { + if (doc) { + doc.close() + } + } + + return result + } + + Path merge(String workspacePath, List files) { + Path tmp + try { + tmp = Files.createTempFile(Paths.get(workspacePath), "merge", "pdf") + def merger = new PDFMergerUtility() + merger.setDestinationStream(new FileOutputStream(tmp.toFile())) + + files.each { file -> + merger.addSource(new FileInputStream(file.toFile())) + } + + merger.mergeDocuments() + } catch (e) { + throw new RuntimeException("Error: unable to merge PDF documents: ${e.message}").initCause(e) + } + + return tmp + } + + // Courtesy of https://svn.apache.org/viewvc/pdfbox/trunk/examples/src/main/java/org/apache/pdfbox/examples/util/AddWatermarkText.java + private addWatermarkTextToPage(PDDocument doc, PDPage page, PDFont font, String text) { + def cs + try { + cs = new PDPageContentStream(doc, page, PDPageContentStream.AppendMode.APPEND, true, true) + + def fontHeight = 100 // arbitrary for short text + def width = page.getMediaBox().getWidth() + def height = page.getMediaBox().getHeight() + float stringWidth = font.getStringWidth(text) / 1000 * fontHeight + float diagonalLength = (float) Math.sqrt(width * width + height * height) + float angle = (float) Math.atan2(height, width) + float x = (diagonalLength - stringWidth) / 2 // "horizontal" position in rotated world + float y = -fontHeight / 4 // 4 is a trial-and-error thing, this lowers the text a bit + cs.transform(Matrix.getRotateInstance(angle, 0, 0)) + cs.setFont(font, fontHeight) + + def gs = new PDExtendedGraphicsState() + gs.setNonStrokingAlphaConstant(0.05f) + gs.setStrokingAlphaConstant(0.05f) + gs.setBlendMode(BlendMode.MULTIPLY) + gs.setLineWidth(3f) + cs.setGraphicsStateParameters(gs) + + // some API weirdness here. When int, range is 0..255. + // when float, this would be 0..1f + cs.setNonStrokingColor(0, 0, 0) + cs.setStrokingColor(0, 0, 0) + + cs.beginText() + cs.newLineAtOffset(x, y) + cs.showText(text) + cs.endText() + } finally { + cs.close() + } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/PipelineConfig.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/PipelineConfig.groovy new file mode 100644 index 00000000..a8b13ca4 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/PipelineConfig.groovy @@ -0,0 +1,12 @@ +package org.ods.doc.gen.leva.doc.services; + +class PipelineConfig { + + static final String REPO_TYPE_ODS_CODE = "ods" + static final String REPO_TYPE_ODS_INFRA = "ods-infra" + static final String REPO_TYPE_ODS_SAAS_SERVICE = "ods-saas-service" + static final String REPO_TYPE_ODS_SERVICE = "ods-service" + static final String REPO_TYPE_ODS_TEST = "ods-test" + static final String REPO_TYPE_ODS_LIB = "ods-library" + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/PipelineEnvs.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/PipelineEnvs.groovy new file mode 100644 index 00000000..f5be3768 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/PipelineEnvs.groovy @@ -0,0 +1,7 @@ +package org.ods.doc.gen.leva.doc.services; + +class PipelineEnvs { + static final String DEV = "dev" + static final String QA = "qa" + static final String PROD = "prod" +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/xunit/JUnitReportsService.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/xunit/JUnitReportsService.groovy new file mode 100644 index 00000000..e732f6dd --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/xunit/JUnitReportsService.groovy @@ -0,0 +1,126 @@ +package org.ods.doc.gen.leva.doc.services.xunit + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.adapters.nexus.NexusService +import org.ods.doc.gen.core.FileSystemHelper +import org.ods.doc.gen.leva.doc.services.xunit.parser.JUnitParser +import org.springframework.stereotype.Service + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path +import java.nio.file.Paths + +@Slf4j +@Service +class JUnitReportsService { + + private final NexusService nexusService + private final FileSystemHelper fileSystemHelper + + @Inject + JUnitReportsService(NexusService nexusService, FileSystemHelper fileSystemHelper) { + this.fileSystemHelper = fileSystemHelper + this.nexusService = nexusService + } + + Map combineTestResults(List testResults) { + List testSuites = [] + for (def i = 0; i < testResults.size(); i++) { + List elementsToAdd = testResults[i].testsuites as List + testSuites.addAll(elementsToAdd as List) + } + return [ testsuites: testSuites ] + } + + int getNumberOfTestCases(Map testResults) { + def result = 0 + + testResults.testsuites.each { testsuite -> + result += testsuite.testcases.size() + } + + return result + } + + Map parseTestReportFiles(List files) { + List testResults = [] + for (def i = 0; i < files.size(); i++) { + testResults.add(JUnitParser.parseJUnitXML(files[i].text)) + } + return this.combineTestResults(testResults) + } + + Map getTestData(Map data, List testsTypes) { + String tmpFolder = data.tmpFolder as String + Map testResultsURLs = data.build.testResultsURLs as Map + String component = data.repo?.id?.capitalize() + + Map tests = downloadTestsResults(testResultsURLs as Map, tmpFolder, testsTypes, component) + + tests.each { + String targetFolder = it.value.targetFolder as String + Map testResult = getTestResults(it.key.capitalize(), targetFolder, component) + it.value.testReportFiles = testResult.testReportFiles + it.value.testResults = testResult.testResults + } + return tests + } + + private Map downloadTestsResults(Map testResultsURLs, + String targetFolder, + List testsTypes, + String component) { + Map testsResults = createTestDataStructure(testsTypes, component) + testsResults.each {testResult -> + String testType = (component)? "${testResult.key}-${component.toLowerCase()}" : "${testResult.key}" + String url = testResultsURLs[testType] + if (url){ + testResult.value.targetFolder = downloadAndExtractZip(url, targetFolder, testType) + } else { + log.warn("There are no test results of type ${testType}.") + } + } + + return testsResults + } + + private String downloadAndExtractZip(String urlToDownload, String targetFolder, String subFolder) { + Path targetFolderWithKey = Paths.get(targetFolder, subFolder) + Files.createDirectories(targetFolderWithKey) + nexusService.downloadAndExtractZip(urlToDownload, targetFolderWithKey.toString()) + return targetFolderWithKey.toString() + } + + private Map createTestDataStructure(List testsTypes, String component = null) { + Map testData = [ : ] + testsTypes.each { + testData.put(it, [:]) + } + + testData.each { + it.value.testReportFiles = [] + it.value.testResults = [ testsuites: [] ] + } + return testData + } + + private Map getTestResults(String typeIn, String targetFolder, String component) { + if (targetFolder == null) { + // When targetFolder is null, we need to initialize testsuites !! + return [ + testReportFiles: [], + testResults: [ + testsuites:[] + ], + ] + } + List testReportFiles = fileSystemHelper.loadFilesFromPath(targetFolder, "xml") + Map testResults = parseTestReportFiles(testReportFiles) + return [ + testReportFiles: testReportFiles, + testResults: testResults, + ] + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/leva/doc/services/xunit/parser/JUnitParser.groovy b/src/main/groovy/org/ods/doc/gen/leva/doc/services/xunit/parser/JUnitParser.groovy new file mode 100644 index 00000000..d30fd022 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/leva/doc/services/xunit/parser/JUnitParser.groovy @@ -0,0 +1,232 @@ +package org.ods.doc.gen.leva.doc.services.xunit.parser + + + +import groovy.json.JsonBuilder + +// JUnit XML 5 Schema: +// https://github.com/junit-team/junit5/blob/master/platform-tests/src/test/resources/jenkins-junit.xsd +// Collection.find() failing in Jenkins: +// https://stackoverflow.com/questions/54364380/ +// same-script-work-well-at-the-jenkins-script-console-but-not-at-the-pipline +class JUnitParser { + + // Parse a JUnit XML element + private static def parseJUnitXMLPropertyElement(def property) { + if (!property.@name) { + throw new IllegalArgumentException( + "Error: unable to parse JUnit XML element. Required attribute 'name' is missing." + ) + } + + if (!property.@value) { + throw new IllegalArgumentException( + "Error: unable to parse JUnit XML element. Required attribute 'value' is missing." + ) + } + + return property.attributes() + } + + + // Parse a JUnit XML element + private static def parseJUnitXMLTestCaseElement(def testcase) { + if (testcase.@name.isEmpty()) { + throw new IllegalArgumentException( + "Error: unable to parse JUnit XML element. Required attribute 'name' is missing." + ) + } + + def result = [:] + + // Parse attributes + result << testcase.attributes() + + // Parse /(|) elements + result << testcase."*" + .findAll { ["error", "failure"].contains(it.name()) } + .collectEntries {[ + it.name(), + [:] << it.attributes() << [ "text": it.text() ] + ]} + + // Parse / elements + result << [ + "skipped": testcase."*".find { it.name() == "skipped" } ? true : false + ] + + // Parse / elements + result << [ + "systemOut": testcase."*".find { it.name() == "system-out" }.text() + ] + + // Parse / elements + result << [ + "systemErr": testcase."*".find { it.name() == "system-err" }.text() + ] + + return result + } + + + // Parse a JUnit XML element + private static def parseJUnitXMLTestSuiteElement(def testsuite) { + if (testsuite.@name.isEmpty()) { + throw new IllegalArgumentException( + "Error: unable to parse JUnit XML element. Required attribute 'name' is missing." + ) + } + + if (testsuite.@tests.isEmpty()) { + throw new IllegalArgumentException( + "Error: unable to parse JUnit XML element. Required attribute 'tests' is missing." + ) + } + + def result = [:] + + // Parse attributes + result << testsuite.attributes() + + // Parse /**/ elements + result << [ "properties": testsuite."**" + .findAll { it.name() == "property" } + .collect { parseJUnitXMLPropertyElement(it) } + ] + + // Parse / elements + result << [ "testcases": testsuite."*" + .findAll { it.name() == "testcase" } + .collect { + def testcase = parseJUnitXMLTestCaseElement(it) + + if (result.timestamp) { + testcase.timestamp = result.timestamp + } + + return testcase + } + ] + + // Parse / elements + result << [ + "systemOut": testsuite."*".find { it.name() == "system-out" }.text() + ] + + // Parse / elements + result << [ + "systemErr": testsuite."*".find { it.name() == "system-err" }.text() + ] + + return result + } + + + // Parse a JUnit XML element + private static def parseJUnitXMLTestSuitesElement(def testsuites) { + def result = [:] + + // Parse attributes + result << testsuites.attributes() + + // Parse / elements + result << [(testsuites.name()): testsuites."*" + .findAll { it.name() == "testsuite" } + .collect { parseJUnitXMLTestSuiteElement(it) } + ] + + return result + } + + + // Parse a JUnit 4/5 XML document + static Map parseJUnitXML(String xml) { + if (!xml || xml.isEmpty()) { + throw new IllegalArgumentException( + "Error: unable to transform JUnit XML document to JSON. 'xml' is not in a valid JUnit XML format:" + + " No XML or empty XML provided" + ) + } + + def root = new XmlSlurper().parseText(xml) + if (!["testsuites", "testsuite"].contains(root.name())) { + throw new IllegalArgumentException( + "Error: unable to transform JUnit XML document to JSON. 'xml' is not in a valid JUnit XML format:" + + " Required attribute 'testsuite(s)' is missing." + ) + } + + def result = [:] + if (root.name() == "testsuite") { + result = [ + "testsuites": [ parseJUnitXMLTestSuiteElement(root) ] + ] + } else if (root.name() == "testsuites") { + result = parseJUnitXMLTestSuitesElement(root) + } + + return result + } + + class Helper { + + private static Set getIssues(Map testResults, String type) { + // Compute a unique set of issues + def issues = [] as Set + testResults.testsuites.each { testsuite -> + testsuite.testcases.each { testcase -> + if (testcase[type]) { + issues << testcase[type] + } + } + } + + def result = issues + result.each { issue -> + // Find all testcases that exhibit the current issue + testResults.testsuites.each { testsuite -> + testsuite.testcases.each { testcase -> + def i = issue.findAll { it.key != "testsuites" } + if (testcase[type] && testcase[type] == i) { + if (!issue.containsKey("testsuites")) { + issue.testsuites = [] + } + + // Check if the current testsuite already exists in the issue + def issueTestsuite = issue.testsuites.find { it.name == testsuite.name } + if (!issueTestsuite) { + issueTestsuite = [ + name: testsuite.name, + testcases: [] + ] + + issue.testsuites << issueTestsuite + } + + // Add the current testcase to the issue + issueTestsuite.testcases << [ + name: testcase.name + ] + } + } + } + } + + return result + } + + static Set getErrors(Map testResults) { + return getIssues(testResults, "error") + } + + static Set getFailures(Map testResults) { + return getIssues(testResults, "failure") + } + + + // Transform the parser's result into a JSON string. + static String toJSONString(Map xml) { + new JsonBuilder(xml).toPrettyString() + } + } +} diff --git a/src/main/groovy/org/ods/doc/gen/pdf/builder/api/DocGenController.groovy b/src/main/groovy/org/ods/doc/gen/pdf/builder/api/DocGenController.groovy new file mode 100644 index 00000000..a62d5762 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/pdf/builder/api/DocGenController.groovy @@ -0,0 +1,98 @@ +package org.ods.doc.gen.pdf.builder.api + +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils +import org.apache.commons.io.IOUtils +import org.ods.doc.gen.core.FileSystemHelper +import org.ods.doc.gen.pdf.builder.services.PdfGenerationService +import org.springframework.web.bind.annotation.PostMapping +import org.springframework.web.bind.annotation.RequestBody +import org.springframework.web.bind.annotation.RequestMapping +import org.springframework.web.bind.annotation.RestController + +import javax.inject.Inject +import javax.servlet.http.HttpServletResponse +import java.nio.file.Files +import java.nio.file.Path +import java.nio.file.StandardOpenOption + +import static groovy.json.JsonOutput.prettyPrint +import static groovy.json.JsonOutput.toJson + +@Slf4j +@RestController +@RequestMapping("/document") +class DocGenController { + + private static final RES_PREFIX = '{"data":"'.getBytes('US-ASCII') + private static final RES_SUFFIX = '"}'.getBytes('US-ASCII') + + private PdfGenerationService pdfGeneration + private final FileSystemHelper fileSystemHelper + + @Inject + DocGenController(PdfGenerationService pdfGenerationService, FileSystemHelper fileSystemHelper) { + this.fileSystemHelper = fileSystemHelper + this.pdfGeneration = pdfGenerationService + } + + @PostMapping + void convertDocument(@RequestBody Map body, HttpServletResponse response) { + validateRequestParams(body) + logData(body) + Path tmpDir + try { + tmpDir = fileSystemHelper.createTempDirectory("${body.metadata.type}-v${body.metadata.version}") + Path pdf = convertToPdf(body, tmpDir) + + def dataLength = Files.size(pdf) + response.setContentLength(RES_PREFIX.length + dataLength + RES_SUFFIX.length as int) + def prefixIs = new ByteArrayInputStream(RES_PREFIX) + def suffixIs = new ByteArrayInputStream(RES_SUFFIX) + + Files.newInputStream(pdf, StandardOpenOption.DELETE_ON_CLOSE).withStream { dataIs -> + IOUtils.copy(new SequenceInputStream(Collections.enumeration([prefixIs, dataIs, suffixIs])), response.getOutputStream()) + } + } finally { + if (tmpDir) { + FileUtils.deleteDirectory(tmpDir.toFile()) + } + } + } + + private Path convertToPdf(Map body, Path tmpDir) { + try { + Path documentPdf = pdfGeneration.generatePdfFile(body.metadata as Map, body.data as Map, tmpDir) + Path tempFile = Files.createTempFile(tmpDir, 'temp', '.b64') + tempFile.toFile().withOutputStream { os -> + Base64.getEncoder().wrap(os).withStream { encOs -> + Files.copy(documentPdf, encOs) + } + } + return tempFile + } catch (Throwable e) { + throw new RuntimeException("Conversion form HTML to PDF failed, corrupt data.", e) + } + } + + private static void logData(Map body) { + if (log.isDebugEnabled()) { + log.debug("Input request body data before send it to convert it to a pdf: ") + log.debug(prettyPrint(toJson(body.data))) + } + } + + private static void validateRequestParams(Map body) { + if (body?.metadata?.type == null) { + throw new IllegalArgumentException("missing argument 'metadata.type'") + } + + if (body?.metadata?.version == null) { + throw new IllegalArgumentException("missing argument 'metadata.version'") + } + + if (body?.data == null || 0 == body?.data.size()) { + throw new IllegalArgumentException("missing argument 'data'") + } + } +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/pdf/builder/api/RestResponseEntityExceptionHandler.groovy b/src/main/groovy/org/ods/doc/gen/pdf/builder/api/RestResponseEntityExceptionHandler.groovy new file mode 100644 index 00000000..e3d7ebf3 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/pdf/builder/api/RestResponseEntityExceptionHandler.groovy @@ -0,0 +1,28 @@ +package org.ods.doc.gen.pdf.builder.api + +import groovy.util.logging.Slf4j +import org.springframework.http.HttpHeaders +import org.springframework.http.HttpStatus +import org.springframework.http.ResponseEntity +import org.springframework.web.bind.annotation.ControllerAdvice +import org.springframework.web.bind.annotation.ExceptionHandler +import org.springframework.web.context.request.WebRequest +import org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler + +@Slf4j +@ControllerAdvice +class RestResponseEntityExceptionHandler extends ResponseEntityExceptionHandler { + + @ExceptionHandler(value = [ IllegalArgumentException.class ]) + protected ResponseEntity handleArgumentError(RuntimeException ex, WebRequest request) { + log.error("ExceptionHandler, handleArgumentError:${ex.message}", ex) + return handleExceptionInternal(ex, ex.message, new HttpHeaders(), HttpStatus.PRECONDITION_FAILED, request) + } + + @ExceptionHandler(value = [ RuntimeException.class ]) + protected ResponseEntity runtimeError(RuntimeException ex, WebRequest request) { + log.error("ExceptionHandler, runtimeError:${ex.message}", ex) + return handleExceptionInternal(ex, ex.message, new HttpHeaders(), HttpStatus.CONFLICT, request) + } + +} \ No newline at end of file diff --git a/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/BitBucketDocumentTemplatesRepository.groovy b/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/BitBucketDocumentTemplatesRepository.groovy new file mode 100644 index 00000000..ed2b429f --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/BitBucketDocumentTemplatesRepository.groovy @@ -0,0 +1,59 @@ +package org.ods.doc.gen.pdf.builder.repository + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.adapters.git.BitbucketService +import org.ods.doc.gen.core.ZipFacade +import org.springframework.beans.factory.annotation.Value +import org.springframework.core.annotation.Order +import org.springframework.stereotype.Repository + +import javax.inject.Inject +import java.nio.file.Path +import java.nio.file.Paths + +@Slf4j +@Order(0) +@Repository +class BitBucketDocumentTemplatesRepository implements DocumentTemplatesRepository { + + public static final String BRANCH = "refs/heads/release/v" + public static final String NONE = "none" + + private final ZipFacade zipFacade + private final String basePath + private final BitbucketService bitbucketService + String bbDocProject + String bbRepo + + @Inject + BitBucketDocumentTemplatesRepository(BitbucketService bitbucketService, + ZipFacade zipFacade, + @Value('${cache.documents.basePath}') String basePath, + @Value('${bitbucket.documents.project}') String bbDocProject, + @Value('${bitbucket.documents.repo}') String bbRepo){ + this.bitbucketService = bitbucketService + this.basePath = basePath + this.zipFacade = zipFacade + this.bbDocProject = bbDocProject + this.bbRepo = bbRepo + } + + Path getTemplatesForVersion(String version) { + log.info ("getTemplatesForVersion version:${version}") + Path targetDir = Paths.get(basePath, version) + if (!targetDir.toFile().exists()) { + bitbucketService.downloadRepo(bbDocProject, bbRepo, "${BRANCH}${version}", targetDir.toString()) + } + return targetDir + } + + boolean isApplicableToSystemConfig () { + if (bbDocProject== NONE) { + log.warn "Bitbucket adapter not applicable. If needed review BITBUCKET env params - Using Github'" + return false + } + + return true + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/DocumentTemplateFactory.groovy b/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/DocumentTemplateFactory.groovy new file mode 100644 index 00000000..c546165b --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/DocumentTemplateFactory.groovy @@ -0,0 +1,20 @@ +package org.ods.doc.gen.pdf.builder.repository + +import org.springframework.stereotype.Repository + +import javax.inject.Inject + +@Repository +class DocumentTemplateFactory { + + private final List docTemplates + + @Inject + DocumentTemplateFactory(List docTempls){ + this.docTemplates = docTempls + } + + DocumentTemplatesRepository get(){ + return docTemplates.get(0).isApplicableToSystemConfig() ? docTemplates.get(0) : docTemplates.get(1) + } +} diff --git a/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/DocumentTemplatesRepository.groovy b/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/DocumentTemplatesRepository.groovy new file mode 100644 index 00000000..f0b64a88 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/DocumentTemplatesRepository.groovy @@ -0,0 +1,16 @@ +package org.ods.doc.gen.pdf.builder.repository + +import org.springframework.cache.annotation.Cacheable +import org.springframework.stereotype.Repository + +import java.nio.file.Path + +@Repository +interface DocumentTemplatesRepository { + + @Cacheable(value = "templates", key = '#version') + Path getTemplatesForVersion(String version) + + boolean isApplicableToSystemConfig() + +} diff --git a/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/GithubDocumentTemplatesRepository.groovy b/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/GithubDocumentTemplatesRepository.groovy new file mode 100644 index 00000000..6ef6f125 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/pdf/builder/repository/GithubDocumentTemplatesRepository.groovy @@ -0,0 +1,54 @@ +package org.ods.doc.gen.pdf.builder.repository + +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils +import org.ods.doc.gen.adapters.git.GithubService +import org.ods.doc.gen.core.ZipFacade +import org.springframework.beans.factory.annotation.Value +import org.springframework.core.annotation.Order +import org.springframework.stereotype.Repository + +import javax.inject.Inject +import java.nio.file.Path +import java.nio.file.Paths + +@Slf4j +@Order(1) +@Repository +class GithubDocumentTemplatesRepository implements DocumentTemplatesRepository { + + private final ZipFacade zipFacade + private final String basePath + private final GithubService githubService + + @Inject + GithubDocumentTemplatesRepository(GithubService githubService, + ZipFacade zipFacade, + @Value('${cache.documents.basePath}') String basePath){ + this.githubService = githubService + this.zipFacade = zipFacade + this.basePath = basePath + } + + Path getTemplatesForVersion(String version) { + log.info ("getTemplatesForVersion version:${version}") + + def targetDir = Paths.get(basePath, version) + if (!targetDir.toFile().exists()){ + githubService.downloadRepo(version, targetDir) + moveContentToRootFolder(targetDir, "ods-document-generation-templates-${version}") + } + + return targetDir + } + + boolean isApplicableToSystemConfig () { + return true + } + + private void moveContentToRootFolder(targetDir, startAtDir){ + FileUtils.copyDirectory(new File(targetDir.toFile(), startAtDir), targetDir.toFile()) + FileUtils.deleteDirectory(new File(targetDir.toFile(), startAtDir)) + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/pdf/builder/services/HtmlToPDFService.groovy b/src/main/groovy/org/ods/doc/gen/pdf/builder/services/HtmlToPDFService.groovy new file mode 100644 index 00000000..623f7e9e --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/pdf/builder/services/HtmlToPDFService.groovy @@ -0,0 +1,176 @@ +package org.ods.doc.gen.pdf.builder.services + +import com.github.jknack.handlebars.Handlebars +import com.github.jknack.handlebars.io.FileTemplateLoader +import groovy.util.logging.Slf4j +import org.apache.pdfbox.io.MemoryUsageSetting +import org.apache.pdfbox.pdmodel.PDDocument +import org.apache.pdfbox.pdmodel.PDDocumentNameDestinationDictionary +import org.apache.pdfbox.pdmodel.PDPage +import org.apache.pdfbox.pdmodel.common.PDNameTreeNode +import org.apache.pdfbox.pdmodel.interactive.action.PDActionGoTo +import org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationLink +import org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageDestination +import org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineNode +import org.springframework.stereotype.Service + +import javax.inject.Inject +import java.nio.file.Path +import java.nio.file.Paths + +@Slf4j +@Service +class HtmlToPDFService { + + private final WkhtmltopdfService wkhtmltopdfService + + @Inject + HtmlToPDFService(WkhtmltopdfService wkhtmltopdfService){ + this.wkhtmltopdfService = wkhtmltopdfService + } + + String executeTemplate(Path path, Object data) { + def loader = new FileTemplateLoader("", "") + return new Handlebars(loader).compile(path.toString()).apply(data) + } + + Path convert(Path tmpDir, Path documentHtmlFile, Map data = null) { + Path documentPDFFile = Paths.get(tmpDir.toString(), "document.pdf") + def cmd = generateCmd(data) + cmd << documentHtmlFile.toFile().absolutePath + cmd << documentPDFFile.toFile().absolutePath + wkhtmltopdfService.executeCmd(tmpDir, documentHtmlFile, cmd) + fixDestinations(documentPDFFile.toFile()) + return documentPDFFile + } + + private List generateCmd(Map data) { + def cmd = ["wkhtmltopdf", "--encoding", "UTF-8", "--no-outline", "--print-media-type"] + cmd << "--enable-local-file-access" + cmd.addAll(["-T", "40", "-R", "25", "-B", "25", "-L", "25"]) + + if (data?.metadata?.header) { + if (data.metadata.header.size() > 1) { + cmd.addAll(["--header-center", """${data.metadata.header[0]} +${data.metadata.header[1]}"""]) + } else { + cmd.addAll(["--header-center", data.metadata.header[0]]) + } + + cmd.addAll(["--header-font-size", "10", "--header-spacing", "10"]) + } + + cmd.addAll(["--footer-center", "'Page [page] of [topage]'", "--footer-font-size", "10"]) + + if (data?.metadata?.orientation) { + cmd.addAll(["--orientation", data.metadata.orientation]) + } + + return cmd + } + + private static final long MAX_MEMORY_TO_FIX_DESTINATIONS = 8192L + + /** + * Fixes malformed PDF documents which use page numbers in local destinations, referencing the same document. + * Page numbers should be used only for references to external documents. + * These local destinations must use indirect page object references. + * Note that these malformed references are not correctly renumbered when merging documents. + * This method finds these malformed references and replaces the page numbers by the corresponding + * page object references. + * If the document is not malformed, this method will leave it unchanged. + * + * @param pdf a PDF file. + */ + private void fixDestinations(File pdf) { + def memoryUsageSetting = MemoryUsageSetting.setupMixed(MAX_MEMORY_TO_FIX_DESTINATIONS) + PDDocument.load(pdf, memoryUsageSetting).withCloseable { doc -> + fixDestinations(doc) + doc.save(pdf) + } + } + + /** + * Fixes malformed PDF documents which use page numbers in local destinations, referencing the same document. + * Page numbers should be used only for references to external documents. + * These local destinations must use indirect page object references. + * Note that these malformed references are not correctly renumbered when merging documents. + * This method finds these malformed references and replaces the page numbers by the corresponding + * page object references. + * If the document is not malformed, this method will leave it unchanged. + * + * @param doc a PDF document. + */ + private void fixDestinations(PDDocument doc) { + def pages = doc.pages as ArrayList // Accessing pages by index is slow. This will make it fast. + fixExplicitDestinations(pages) + def catalog = doc.documentCatalog + fixNamedDestinations(catalog, pages) + fixOutline(catalog, pages) + } + + private fixExplicitDestinations(pages) { + pages.each { page -> + page.getAnnotations { it instanceof PDAnnotationLink }.each { link -> + fixDestinationOrAction(link, pages) + } + } + } + + private fixNamedDestinations(catalog, pages) { + fixStringDestinations(catalog.names?.dests, pages) + fixNameDestinations(catalog.dests, pages) + } + + private fixOutline(catalog, pages) { + def outline = catalog.documentOutline + if (outline != null) { + fixOutlineNode(outline, pages) + } + } + + private fixStringDestinations(PDNameTreeNode node, pages) { + if (node) { + node.names?.each { name, dest -> fixDestination(dest, pages) } + node.kids?.each { fixStringDestinations(it, pages) } + } + } + + private fixNameDestinations(PDDocumentNameDestinationDictionary dests, pages) { + dests?.COSObject?.keySet()*.name.each { name -> + def dest = dests.getDestination(name) + if (dest instanceof PDPageDestination) { + fixDestination(dest, pages) + } + } + } + + private fixOutlineNode(PDOutlineNode node, pages) { + node.children().each { item -> + fixDestinationOrAction(item, pages) + fixOutlineNode(item, pages) + } + } + + private fixDestinationOrAction(item, pages) { + def dest = item.destination + if (dest == null) { + def action = item.action + if (action instanceof PDActionGoTo) { + dest = action.destination + } + } + if (dest instanceof PDPageDestination) { + fixDestination(dest, pages) + } + } + + // We need a RandomAccess List implementation. Enforcing ArrayList. + private fixDestination(PDPageDestination dest, ArrayList pages) { + def pageNum = dest.pageNumber + if (pageNum != -1) { + dest.setPage(pages[pageNum]) + } + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/pdf/builder/services/PdfGenerationService.groovy b/src/main/groovy/org/ods/doc/gen/pdf/builder/services/PdfGenerationService.groovy new file mode 100644 index 00000000..d8128607 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/pdf/builder/services/PdfGenerationService.groovy @@ -0,0 +1,81 @@ +package org.ods.doc.gen.pdf.builder.services + + +import org.apache.commons.io.FileUtils +import org.apache.commons.io.FilenameUtils +import org.ods.doc.gen.pdf.builder.repository.DocumentTemplateFactory +import org.springframework.stereotype.Service + +import javax.inject.Inject +import java.nio.file.Path +import java.nio.file.Paths + +@Service +class PdfGenerationService { + + private final HtmlToPDFService htmlToPDFService + private final DocumentTemplateFactory documentTemplateFactory + + @Inject + PdfGenerationService(HtmlToPDFService htmlToPDFService, DocumentTemplateFactory documentTemplateFactory) { + this.htmlToPDFService = htmlToPDFService + this.documentTemplateFactory = documentTemplateFactory + } + + Path generatePdfFile(Map metadata, Map data, Path tmpDir) { + copyTemplatesToTempFolder(metadata.version as String, tmpDir) + Map partials = getPartialTemplates(metadata.type as String, tmpDir) + Map partialsWithPathOk = generateHtmlFromTemplates(partials, data) + return htmlToPDFService.convert(tmpDir, partialsWithPathOk.document, data) + } + + private copyTemplatesToTempFolder(String version, Path tmpDir) { + File templatesFolder = documentTemplateFactory.get().getTemplatesForVersion(version).toFile() + FileUtils.copyDirectory(templatesFolder, tmpDir.toFile()) + } + + private Map generateHtmlFromTemplates(Map partials, data) { + return partials.collectEntries { name, path -> + def htmlFile = new File(FilenameUtils.removeExtension(path.toString())) + htmlFile.setText(htmlToPDFService.executeTemplate(path, data)) + return [name, htmlFile.toPath()] + } + } + + private Map getPartialTemplates(String type, Path tmpDir) { + return getPartialTemplates(type, tmpDir) { name, template -> + return template.replaceAll(System.getProperty("line.separator"), "").replaceAll("\t", "") + } + } + + private Map getPartialTemplates(String type, Path tmpDir, Closure visitor) { + def partials = [ + document: Paths.get(tmpDir.toString(), "templates", "${type}.html.tmpl"), + header: Paths.get(tmpDir.toString(), "templates", "header.inc.html.tmpl"), + footer: Paths.get(tmpDir.toString(), "templates", "footer.inc.html.tmpl") + ] + + partials.each { name, path -> + File file = getPartialTemplate(path, name) + def template = file.text + def templateNew = visitor(name, template) + if (isTemplateModified(template, templateNew)) { + file.text = templateNew + } + } + return partials + } + + private boolean isTemplateModified(String template, templateNew) { + template != templateNew + } + + private File getPartialTemplate(path, name) { + def file = path.toFile() + if (!file.exists()) { + throw new FileNotFoundException("could not find required template part '${name}' at '${path}'") + } + return file + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/pdf/builder/services/WkhtmltopdfService.groovy b/src/main/groovy/org/ods/doc/gen/pdf/builder/services/WkhtmltopdfService.groovy new file mode 100644 index 00000000..8ccfcd42 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/pdf/builder/services/WkhtmltopdfService.groovy @@ -0,0 +1,35 @@ +package org.ods.doc.gen.pdf.builder.services + +import groovy.util.logging.Slf4j +import org.apache.commons.io.output.TeeOutputStream +import org.springframework.stereotype.Service + +import java.nio.file.Path +import java.nio.file.Paths + +@Slf4j +@Service +class WkhtmltopdfService { + + void executeCmd(Path tmpDir, Path documentHtmlFile, List cmd) { + log.info "executing cmd: ${cmd}" + + def proc = cmd.execute() + File tempFile = Paths.get(tmpDir.toString(), "shell.bin").toFile() + FileOutputStream tempFileOutputStream = new FileOutputStream(tempFile) + def errOutputStream = new TeeOutputStream(tempFileOutputStream, System.err) + try { + proc.waitForProcessOutput(System.out, errOutputStream) + if (proc.exitValue() != 0) { + String errorDesc = "${documentHtmlFile} failed: code:${proc.exitValue()}\r Description:${tempFile.text}" + log.error errorDesc + throw new IllegalStateException(errorDesc) + } + } finally { + tempFileOutputStream.close() + } + + log.info "executing cmd end" + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/project/data/Environment.groovy b/src/main/groovy/org/ods/doc/gen/project/data/Environment.groovy new file mode 100644 index 00000000..1d255b1a --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/project/data/Environment.groovy @@ -0,0 +1,65 @@ +package org.ods.doc.gen.project.data + + +import org.ods.doc.gen.leva.doc.services.Constants + +enum Environment { + + D, Q, P + + static String getEnvironment(documentType){ + return values().collect { it.toString() }.find { env -> + ENVIRONMENT_TYPE[env].containsKey(documentType) + } + } + + static String getPreviousCreationEnvironment(String documentType, String environment) { + def previousEnvironment = null + values()*.toString() + .takeWhile { it != environment } + .each { env -> + if (ENVIRONMENT_TYPE[env].containsKey(documentType)) { + previousEnvironment = env + } + } + return previousEnvironment ?: environment + } + + // Document types per environment token and label to track with Jira + @SuppressWarnings('NonFinalPublicField') + public final static Map ENVIRONMENT_TYPE = [ + "D": [ + (Constants.DocumentType.CSD as String) : ["${Constants.DocumentType.CSD}"], + (Constants.DocumentType.SSDS as String) : ["${Constants.DocumentType.SSDS}"], + (Constants.DocumentType.RA as String) : ["${Constants.DocumentType.RA}"], + (Constants.DocumentType.TIP as String) : ["${Constants.DocumentType.TIP}_Q", + "${Constants.DocumentType.TIP}_P"], + (Constants.DocumentType.TIR as String) : ["${Constants.DocumentType.TIR}"], + (Constants.DocumentType.OVERALL_TIR as String): ["${Constants.DocumentType.TIR}"], + (Constants.DocumentType.IVP as String) : ["${Constants.DocumentType.IVP}_Q", + "${Constants.DocumentType.IVP}_P"], + (Constants.DocumentType.CFTP as String) : ["${Constants.DocumentType.CFTP}"], + (Constants.DocumentType.TCP as String) : ["${Constants.DocumentType.TCP}"], + (Constants.DocumentType.DTP as String) : ["${Constants.DocumentType.DTP}"], + (Constants.DocumentType.DTR as String) : ["${Constants.DocumentType.DTR}"], + (Constants.DocumentType.OVERALL_DTR as String) : ["${Constants.DocumentType.DTR}"], + ], + "Q": [ + (Constants.DocumentType.TIR as String) : ["${Constants.DocumentType.TIR}_Q"], + (Constants.DocumentType.OVERALL_TIR as String) : ["${Constants.DocumentType.TIR}_Q"], + (Constants.DocumentType.IVR as String) : ["${Constants.DocumentType.IVR}_Q"], + (Constants.DocumentType.OVERALL_IVR as String) : ["${Constants.DocumentType.IVR}_Q"], + (Constants.DocumentType.CFTR as String) : ["${Constants.DocumentType.CFTR}"], + (Constants.DocumentType.TCR as String) : ["${Constants.DocumentType.TCR}"], + (Constants.DocumentType.TRC as String) : ["${Constants.DocumentType.TRC}"], + (Constants.DocumentType.DIL as String) : ["${Constants.DocumentType.DIL}_Q"] + ], + "P": [ + (Constants.DocumentType.TIR as String) : ["${Constants.DocumentType.TIR}_P"], + (Constants.DocumentType.OVERALL_TIR as String) : ["${Constants.DocumentType.TIR}_P"], + (Constants.DocumentType.IVR as String) : ["${Constants.DocumentType.IVR}_P"], + (Constants.DocumentType.OVERALL_IVR as String) : ["${Constants.DocumentType.IVR}_P"], + (Constants.DocumentType.DIL as String) : ["${Constants.DocumentType.DIL}_P"] + ], + ] +} diff --git a/src/main/groovy/org/ods/doc/gen/project/data/GampTopic.groovy b/src/main/groovy/org/ods/doc/gen/project/data/GampTopic.groovy new file mode 100644 index 00000000..e1772b01 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/project/data/GampTopic.groovy @@ -0,0 +1,10 @@ +package org.ods.doc.gen.project.data; + +class GampTopic { + + static final String AVAILABILITY_REQUIREMENT = 'Availability Requirement' + static final String CONSTRAINT = 'Constraint' + static final String FUNCTIONAL_REQUIREMENT = 'Functional Requirement' + static final String INTERFACE_REQUIREMENT = 'Interface Requirement' + +} diff --git a/src/main/groovy/org/ods/doc/gen/project/data/JiraDataItem.groovy b/src/main/groovy/org/ods/doc/gen/project/data/JiraDataItem.groovy new file mode 100644 index 00000000..7fa855fa --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/project/data/JiraDataItem.groovy @@ -0,0 +1,209 @@ +package org.ods.doc.gen.project.data + +class JiraDataItem implements Map, Serializable { + static final String TYPE_BUGS = 'bugs' + static final String TYPE_COMPONENTS = 'components' + static final String TYPE_EPICS = 'epics' + static final String TYPE_MITIGATIONS = 'mitigations' + static final String TYPE_REQUIREMENTS = 'requirements' + static final String TYPE_RISKS = 'risks' + static final String TYPE_TECHSPECS = 'techSpecs' + static final String TYPE_TESTS = 'tests' + static final String TYPE_DOCS = 'docs' + static final String TYPE_DOCTRACKING = 'docTrackings' + + static final List TYPES = [ + TYPE_BUGS, + TYPE_COMPONENTS, + TYPE_EPICS, + TYPE_MITIGATIONS, + TYPE_REQUIREMENTS, + TYPE_RISKS, + TYPE_TECHSPECS, + TYPE_TESTS, + TYPE_DOCS, + ] + + static final List TYPES_WITH_STATUS = [ + TYPE_BUGS, + TYPE_EPICS, + TYPE_MITIGATIONS, + TYPE_REQUIREMENTS, + TYPE_RISKS, + TYPE_TECHSPECS, + TYPE_TESTS, + TYPE_DOCS, + ] + + static final List TYPES_TO_BE_CLOSED = [ + TYPE_EPICS, + TYPE_MITIGATIONS, + TYPE_REQUIREMENTS, + TYPE_RISKS, + TYPE_TECHSPECS, + TYPE_TESTS, + TYPE_DOCS, + ] + + static final String ISSUE_STATUS_DONE = 'done' + static final String ISSUE_STATUS_CANCELLED = 'cancelled' + + static final String ISSUE_TEST_EXECUTION_TYPE_AUTOMATED = 'automated' + + private final ProjectData project; + private final String type + private HashMap delegate + + JiraDataItem(ProjectData project, Map map, String type) { + this.project = project; + this.delegate = new HashMap(map) + this.type = type + } + + + @Override + int size() { + return delegate.size() + } + + + @Override + boolean isEmpty() { + return delegate.isEmpty() + } + + + @Override + boolean containsKey(Object key) { + return delegate.containsKey(key) + } + + + @Override + boolean containsValue(Object value) { + return delegate.containsValue(value) + } + + + @Override + Object get(Object key) { + return delegate.get(key) + } + + + @Override + Object put(Object key, Object value) { + return delegate.put(key, value) + } + + + @Override + Object remove(Object key) { + return delegate.remove(key) + } + + + @Override + void putAll(Map m) { + delegate.putAll(m) + } + + + @Override + void clear() { + delegate.clear() + } + + + @Override + Set keySet() { + return delegate.keySet() + } + + + @Override + Collection values() { + return delegate.values() + } + + + @Override + Set entrySet() { + return delegate.entrySet() + } + + + String getType() { + return type + } + + + Map getDelegate() { + return delegate + } + + + JiraDataItem cloneIt() { + def bos = new ByteArrayOutputStream() + def os = new ObjectOutputStream(bos) + os.writeObject(this.delegate) + def ois = new ObjectInputStream(new ByteArrayInputStream(bos.toByteArray())) + + def newDelegate = ois.readObject() + JiraDataItem result = new JiraDataItem(newDelegate, type) + return result + } + + // FIXME: why can we not invoke derived methods in short form, e.g. .resolvedBugs? + // Reason: that is because when you do this.resolvedBugs it goes to the get method for delegate dictionary + // and does deletage.resolvedBugs And we have no entry there + // An option would be to put some logic for this in the get() method of this class + + private List getResolvedReferences(String type) { + // Reference this within jiraResolved (contains readily resolved references to other entities) + def item = project.data.jiraResolved[this.type][this.key] + def references = item && item[type] ? item[type] : [] + return references.findAll { it != null } + } + + + List getResolvedBugs() { + return this.getResolvedReferences(TYPE_BUGS) + } + + + List getResolvedComponents() { + return this.getResolvedReferences(TYPE_COMPONENTS) + } + + + List getResolvedEpics() { + return this.getResolvedReferences(TYPE_EPICS) + } + + + List getResolvedMitigations() { + return this.getResolvedReferences(TYPE_MITIGATIONS) + } + + + List getResolvedSystemRequirements() { + return this.getResolvedReferences(TYPE_REQUIREMENTS) + } + + + List getResolvedRisks() { + return this.getResolvedReferences(TYPE_RISKS) + } + + + List getResolvedTechnicalSpecifications() { + return this.getResolvedReferences(TYPE_TECHSPECS) + } + + + List getResolvedTests() { + return this.getResolvedReferences(TYPE_TESTS) + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/project/data/Project.groovy b/src/main/groovy/org/ods/doc/gen/project/data/Project.groovy new file mode 100644 index 00000000..fe051370 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/project/data/Project.groovy @@ -0,0 +1,33 @@ +package org.ods.doc.gen.project.data + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.adapters.git.BitbucketService +import org.ods.doc.gen.adapters.jira.JiraService +import org.ods.doc.gen.leva.doc.services.xunit.JUnitReportsService +import org.springframework.cache.annotation.Cacheable +import org.springframework.stereotype.Service + +import javax.inject.Inject + +@Slf4j +@Service +class Project { + + private final JiraService jira + private final BitbucketService bitbucketService + private final JUnitReportsService jUnitReportsService + + @Inject + Project(JiraService jira, BitbucketService bitbucketService, JUnitReportsService jUnitReportsService){ + this.jira = jira + this.bitbucketService = bitbucketService + this.jUnitReportsService = jUnitReportsService + } + + @Cacheable(value = "projectData", key = '#projectBuildId') + ProjectData getProjectData(String projectBuildId, Map data){ + log.info("build project data for projectBuildId:${projectBuildId}") + return new ProjectData(jira, bitbucketService, jUnitReportsService).init(data).load() + } + +} diff --git a/src/main/groovy/org/ods/doc/gen/project/data/ProjectData.groovy b/src/main/groovy/org/ods/doc/gen/project/data/ProjectData.groovy new file mode 100644 index 00000000..1fdd6134 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/project/data/ProjectData.groovy @@ -0,0 +1,1176 @@ +package org.ods.doc.gen.project.data + +import groovy.json.JsonOutput +import groovy.util.logging.Slf4j +import org.ods.doc.gen.adapters.git.BitbucketService +import org.ods.doc.gen.adapters.jira.CustomIssueFields +import org.ods.doc.gen.adapters.jira.IssueTypes +import org.ods.doc.gen.adapters.jira.JiraService +import org.ods.doc.gen.adapters.jira.LabelPrefix +import org.ods.doc.gen.adapters.jira.OpenIssuesException +import org.ods.doc.gen.leva.doc.repositories.ProjectDataRepository +import org.ods.doc.gen.leva.doc.services.DocumentHistory +import org.ods.doc.gen.leva.doc.services.LeVADocumentUtil +import org.ods.doc.gen.leva.doc.services.PipelineConfig +import org.ods.doc.gen.leva.doc.services.xunit.JUnitReportsService +import org.springframework.stereotype.Service +import org.yaml.snakeyaml.Yaml + +import java.nio.file.Paths + +@Slf4j +@Service +class ProjectData { + + static final String BUILD_PARAM_VERSION_DEFAULT = 'WIP' + static final String METADATA_FILE_NAME = 'metadata.yml' + + protected Map config + protected Boolean isVersioningEnabled = false + + private final JiraService jira + private final BitbucketService bitbucketService + private final JUnitReportsService jUnitReportsService + + String tmpFolder + Map data = [:] + Map build = [:] + private Map overallSubDocs = [:] + + ProjectData(JiraService jira, BitbucketService bitbucketService, JUnitReportsService jUnitReportsService) { + this.jira = jira + this.bitbucketService = bitbucketService + this.jUnitReportsService = jUnitReportsService + this.config = [:] + this.build = [ + hasFailingTests: false, + hasUnexecutedJiraTests: false, + ] + this.data.documentHistories = [:] + } + + ProjectData init(Map data) { + this.tmpFolder = data.tmpFolder + this.build << data.build + this.data.projectId = data.projectId + this.build.buildNumber = data.buildNumber + this.data.openshift = data.openshift + this.data.documents = [:] + this.data.jira = [project: [ : ]] + this.data.repo = data.repo + this.data.git = data.git + this.data.git.url = bitbucketService.buildReleaseManagerUrl( + data.projectId as String, + data.git.releaseManagerRepo as String + ) + return this + } + + ProjectData load() { + bitbucketService.downloadRepo( + data.projectId as String, + data.git.releaseManagerRepo as String, + data.git.releaseManagerBranch as String, + tmpFolder + "/releasemanager") + + this.data.metadata = loadMetadata(tmpFolder + "/releasemanager") + this.data.jira.issueTypes = this.loadJiraDataIssueTypes() + this.data.jira << this.loadJiraData(this.jiraProjectKey) + + // Get more info of the versions from Jira + this.data.jira.project.version = this.loadCurrentVersionDataFromJira() + def version = this.data.jira.version + + // FIXME: contrary to the comment below, the bug data from this method is still relevant + // implementation needs to be cleaned up and bug data should be delivered through plugin's + // REST endpoint, not plain Jira + this.data.jira.bugs = this.loadJiraDataBugs(this.data.jira.tests, version) // TODO removeme when endpoint is updated + this.data.jira = this.convertJiraDataToJiraDataItems(this.data.jira) + this.data.jiraResolved = this.resolveJiraDataItemReferences(this.data.jira) + + this.data.jira.trackingDocs = this.loadJiraDataTrackingDocs(version) + this.data.jira.trackingDocsForHistory = this.loadJiraDataTrackingDocs() + this.data.jira.undone = this.computeWipJiraIssues(this.data.jira) + this.data.jira.undoneDocChapters = this.computeWipDocChapterPerDocument(this.data.jira) + + if (this.hasWipJiraIssues()) { + String message = ProjectMessagesUtil.generateWIPIssuesMessage(this) + + if(!this.isWorkInProgress){ + throw new OpenIssuesException(message) + } + this.addCommentInReleaseStatus(message) + } + + log.debug("Verify that each unit test in Jira project ${this.key} has exactly one component assigned.") + def faultMap = [:] + this.data.jira.tests + .findAll { it.value.get("testType") == "Unit" } + .each { entry -> + if(entry.value.get("components").size() != 1) { + faultMap.put(entry.key, entry.value.get("components").size()) + } + } + if(faultMap.size() != 0) { + def faultyTestIssues = faultMap.keySet() + .collect { key -> key + ": " + faultMap.get(key) + "; " } + .inject("") { temp, val -> temp + val } + throw new IllegalArgumentException("Error: unit tests must have exactly 1 component assigned. Following unit tests have an invalid number of components: ${faultyTestIssues}") + } + + this.updateJiraReleaseStatusBuildNumber() + return this + } + + + private Map loadMetadata(String workspace){ + Map result = parseMetadataFile(workspace) + result.description = (result.description)?: "" + result.repositories = (result.repositories)?: "" + updateRepositories(result) + result.capabilities = (result.capabilities )?: [] + updateLevaDocCapability(result) + result.environments = (result.environments)?: [:] + return result + } + + private void updateLevaDocCapability(Map result) { + def levaDocsCapabilities = result.capabilities.findAll { it instanceof Map && it.containsKey('LeVADocs') } + if (levaDocsCapabilities) { + if (levaDocsCapabilities.size() > 1) { + throw new IllegalArgumentException( + "Error: unable to parse project metadata. More than one 'LeVADoc' capability has been defined.") + } + + def levaDocsCapability = levaDocsCapabilities.first() + + def gampCategory = levaDocsCapability.LeVADocs?.GAMPCategory + if (!gampCategory) { + throw new IllegalArgumentException( + "Error: 'LeVADocs' capability has been defined but contains no 'GAMPCategory'.") + } + + def templatesVersion = levaDocsCapability.LeVADocs?.templatesVersion + if (!templatesVersion) { + levaDocsCapability.LeVADocs.templatesVersion = DEFAULT_TEMPLATE_VERSION + } + } + } + + private void updateRepositories(Map result) { + result.repositories.eachWithIndex { repo, index -> + // Check for existence of required attribute 'repositories[i].id' + if (!repo.id?.trim()) { + throw new IllegalArgumentException( + "Error: unable to parse project meta data. Required attribute 'repositories[${index}].id' is undefined.") + } + + repo.data = [ + openshift: [:], + documents: [:], + ] + + // Set repo type, if not provided + if (!repo.type?.trim()) { + repo.type = PipelineConfig.REPO_TYPE_ODS_CODE + } + + repo.metadata = loadMetadataRepo(repo) + } + } + + private Map loadMetadataRepo(repo) { + return [ + id: repo.id, + name: repo.name, + description: "myDescription-A", + supplier: "mySupplier-A", + version: "myVersion-A", + references: "myReferences-A" + ] + } + + private Map parseMetadataFile(String workspace) { + String filename = METADATA_FILE_NAME + def file = Paths.get(workspace, filename).toFile() + if (!file.exists()) { + throw new RuntimeException("Error: unable to load project meta data. File '${workspace}/${filename}' does not exist.") + } + + Map result = new Yaml().load(file.text) + + // Check for existence of required attribute 'id' + if (!result?.id?.trim()) { + throw new IllegalArgumentException("Error: unable to parse project meta data. Required attribute 'id' is undefined.") + } + // Check for existence of required attribute 'name' + if (!result?.name?.trim()) { + throw new IllegalArgumentException("Error: unable to parse project meta data. Required attribute 'name' is undefined.") + } + + result.id = result.id.toUpperCase() + return result + } + + void updateJiraReleaseStatusBuildNumber() { + String releaseStatusIssueKey = buildParams.releaseStatusJiraIssueKey + Map releaseStatusIssueFields = getJiraFieldsForIssueType(IssueTypes.RELEASE_STATUS) + Map releaseStatusIssueBuildNumberField = releaseStatusIssueFields['Release Build'] + Map testFields = [(releaseStatusIssueBuildNumberField.id): "${buildParams.version}-${build.buildNumber}"] + this.jira.updateTextFieldsOnIssue(releaseStatusIssueKey, testFields) + } + + Map getWipJiraIssues() { + return this.data.jira.undone + } + + boolean hasWipJiraIssues() { + def values = this.getWipJiraIssues().values() + values = values.collect { it instanceof Map ? it.values() : it }.flatten() + return !values.isEmpty() + } + + protected Map computeWipJiraIssues(Map data) { + def result = [:] + JiraDataItem.TYPES_WITH_STATUS.each { type -> + if (data.containsKey(type)) { + result[type] = data[type].findAll { k, v -> issueIsWIP(v) }.keySet() as List + } + } + return result + } + + /** + * Gets the document chapter issues and puts in a format ready to query from levadocumentusecase when retrieving + * the sections not done + * @param data jira data + * @return dict with map documentTypes -> sectionsNotDoneKeys + */ + protected Map computeWipDocChapterPerDocument(Map data) { + (data[JiraDataItem.TYPE_DOCS] ?: [:]) + .values() + .findAll { issueIsWIP(it) } + .collect { chapter -> + chapter.documents.collect { [doc: it, key: chapter.key] } + }.flatten() + .groupBy { it.doc } + .collectEntries { doc, issues -> + [(doc as String): issues.collect { it.key } as List] + } + } + + protected boolean issueIsWIP(Map issue) { + issue.status != null && + !issue.status.equalsIgnoreCase(JiraDataItem.ISSUE_STATUS_DONE) && + !issue.status.equalsIgnoreCase(JiraDataItem.ISSUE_STATUS_CANCELLED) + } + + protected Map convertJiraDataToJiraDataItems(Map data) { + JiraDataItem.TYPES.each { type -> + if (data.containsKey(type)) { + data[type] = data[type].collectEntries { key, item -> + [key, new JiraDataItem(this, item, type)] + } + } //else { + //throw new IllegalArgumentException( + // "Error: Jira data does not include references to items of type '${type}'.") + //} + } + + return data + } + + List getAutomatedTests(String componentName = null, List testTypes = []) { + return this.data.jira.tests.findAll { key, testIssue -> + return isAutomatedTest(testIssue) && hasGivenTypes(testTypes, testIssue) && hasGivenComponent(testIssue, componentName) + }.values() as List + } + + boolean isAutomatedTest(testIssue) { + testIssue.executionType?.toLowerCase() == JiraDataItem.ISSUE_TEST_EXECUTION_TYPE_AUTOMATED + } + + boolean hasGivenTypes(List testTypes, testIssue) { + def result = true + if (testTypes) { + result = testTypes*.toLowerCase().contains(testIssue.testType.toLowerCase()) + } + return result + } + + boolean hasGivenComponent(testIssue, String componentName) { + def result = true + if (componentName) { + result = testIssue.getResolvedComponents().collect { + if (!it || !it.name) { + throw new RuntimeException("Error with testIssue key: ${testIssue.key}, no component assigned or it is wrong.") + } + it.name.toLowerCase() + }.contains(componentName.toLowerCase()) + } + return result + } + + Map getEnumDictionary(String name) { + return this.data.jira.project.enumDictionary[name] + } + + Map getProjectProperties() { + return this.data.jira.project.projectProperties + } + + List getAutomatedTestsTypeAcceptance(String componentName = null) { + return this.getAutomatedTests(componentName, [TestType.ACCEPTANCE]) + } + + List getAutomatedTestsTypeInstallation(String componentName = null) { + return this.getAutomatedTests(componentName, [TestType.INSTALLATION]) + } + + List getAutomatedTestsTypeIntegration(String componentName = null) { + return this.getAutomatedTests(componentName, [TestType.INTEGRATION]) + } + + List getAutomatedTestsTypeUnit(String componentName = null) { + return this.getAutomatedTests(componentName, [TestType.UNIT]) + } + + boolean getIsVersioningEnabled() { + isVersioningEnabled + } + + boolean getIsWorkInProgress() { + isWorkInProgress(buildParams.version) + } + + boolean isDeveloperPreviewMode() { + return BUILD_PARAM_VERSION_DEFAULT.equalsIgnoreCase(this.build.version) && + this.build.targetEnvironmentToken == "D" + } + + static boolean isWorkInProgress(String version) { + version == BUILD_PARAM_VERSION_DEFAULT + } + + Map getBuildParams() { + return this.build + } + + List getCapabilities() { + return this.data.metadata.capabilities + } + + Object getCapability(String name) { + def entry = this.getCapabilities().find { it instanceof Map ? it.find { it.key == name } : it == name } + if (entry) { + return entry instanceof Map ? entry[name] : true + } + + return null + } + + List getBugs() { + return this.data.jira.bugs.values() as List + } + + List getComponents() { + return this.data.jira.components.values() as List + } + + String getDescription() { + return this.data.metadata.description + } + + List getDocumentTrackingIssues() { + return this.data.jira.trackingDocs.values() as List + } + + List getDocumentTrackingIssues(List labels) { + def result = [] + + def issues = this.getDocumentTrackingIssues() + labels.each { label -> + issues.each { issue -> + if (issue.labels.collect { it.toLowerCase() }.contains(label.toLowerCase())) { + result << [key: issue.key, status: issue.status] + } + } + } + + return result.unique() + } + + List getDocumentTrackingIssuesForHistory() { + return this.data.jira.trackingDocsForHistory.values() as List + } + + List getDocumentTrackingIssuesForHistory(List labels) { + def result = [] + + def issues = this.getDocumentTrackingIssuesForHistory() + labels.each { label -> + issues.each { issue -> + if (issue.labels.collect { it.toLowerCase() }.contains(label.toLowerCase())) { + result << [key: issue.key, status: issue.status] + } + } + } + + return result.unique() + } + + Map getGitData() { + return this.data.git + } + + Map getDocumentHistories() { + return this.data.documentHistories + } + + /** + * Obtains the mapping of Jira fields for a given issue type from the saved data + * @param issueTypeName Jira issue type + * @return Map containing [id: "customfield_XYZ", name:"name shown in jira"] + */ + Map getJiraFieldsForIssueType(String issueTypeName) { + return this.data.jira?.issueTypes[issueTypeName]?.fields ?: [:] + } + + String getKey() { + return this.data.metadata.id + } + + String getJiraProjectKey() { + def services = this.getServices() + if (services?.jira?.project) { + return services.jira.project + } + + return getKey() + } + + List getMitigations() { + return this.data.jira.mitigations.values() as List + } + + String getName() { + return this.data.metadata.name + } + + List getRepositories() { + return this.data.metadata.repositories + } + + List getRequirements() { + return this.data.jira.requirements.values() as List + } + + List getRisks() { + return this.data.jira.risks.values() as List + } + + Map getServices() { + return this.data.metadata.services + } + + List getSystemRequirements(String componentName = null, List gampTopics = []) { + return this.data.jira.requirements.findAll { key, req -> + def result = true + + if (result && componentName) { + result = req.getResolvedComponents().collect { it.name.toLowerCase() }. + contains(componentName.toLowerCase()) + } + + if (result && gampTopics) { + result = gampTopics.collect { it.toLowerCase() }.contains(req.gampTopic.toLowerCase()) + } + + return result + }.values() as List + } + + List getTechnicalSpecifications(String componentName = null) { + return this.data.jira.techSpecs.findAll { key, techSpec -> + def result = true + + if (result && componentName) { + result = techSpec.getResolvedComponents().collect { it.name.toLowerCase() }. + contains(componentName.toLowerCase()) + } + + return result + }.values() as List + } + + List getDocumentChaptersForDocument(String document) { + def docs = this.data.jira[JiraDataItem.TYPE_DOCS] ?: [:] + return docs.findAll { k, v -> v.documents && v.documents.contains(document) }.values() as List + } + + List getWIPDocChaptersForDocument(String documentType) { + def docs = this.getWIPDocChapters() + return docs[documentType] ?: [] + } + + Map getWIPDocChapters() { + return this.data.jira.undoneDocChapters ?: [:] + } + + // Deprecated in favour of getOpenShiftTargetApiUrl + String getOpenShiftApiUrl() { + this.data.openshift.targetApiUrl + } + + boolean historyForDocumentExists(String document) { + return this.getHistoryForDocument(document) ? true : false + } + + DocumentHistory getHistoryForDocument(String document) { + return this.documentHistories[document] + } + + Long getDocumentVersionFromHistories(String documentType) { + def history = getHistoryForDocument(documentType) + if (!history) { + // All docHistories for DTR and TIR should have the same version + history = this.documentHistories.find { + LeVADocumentUtil.getTypeFromName(it.key) == documentType + }?.value + } + return history?.version + } + + void setHistoryForDocument(DocumentHistory docHistory, String document) { + this.documentHistories[document] = docHistory + } + + protected Map loadJiraData(String projectKey) { + // FIXME: getVersionFromReleaseStatusIssue loads data from Jira and should therefore be called not more + // than once. However, it's also called via this.project.versionFromReleaseStatusIssue in JiraUseCase.groovy. + def currentVersion = this.getVersionFromReleaseStatusIssue() // TODO why is param.version not sufficient here? + return this.loadJiraDataForCurrentVersion(projectKey, currentVersion) + } + + String getVersionFromReleaseStatusIssue() { + def releaseStatusIssueKey = buildParams.releaseStatusJiraIssueKey as String + def releaseStatusIssueFields = getJiraFieldsForIssueType(IssueTypes.RELEASE_STATUS) + + def productReleaseVersionField = releaseStatusIssueFields[CustomIssueFields.RELEASE_VERSION] + def versionField = jira.getTextFieldsOfIssue(releaseStatusIssueKey, [productReleaseVersionField.id]) + if (!versionField || !versionField[productReleaseVersionField.id]?.name) { + throw new IllegalArgumentException('Unable to obtain version name from release status issue' + + " ${releaseStatusIssueKey}. Please check that field with name" + + " '${productReleaseVersionField.name}' and id '${productReleaseVersionField.id}' " + + 'has a correct version value.') + } + + return versionField[productReleaseVersionField.id].name + } + + protected Map loadVersionJiraData(String projectKey, String versionName) { + def result = jira.getDeltaDocGenData(projectKey, versionName) + if (result?.project?.id == null) { + throw new IllegalArgumentException( + "Error: unable to load documentation generation data from Jira. 'project.id' is undefined.") + } + + def docChapterData = this.getDocumentChapterData(projectKey, versionName) + result << [(JiraDataItem.TYPE_DOCS as String): docChapterData] + return result + } + + /** + * Obtains all document chapter data attached attached to a given version + * @param versionName the version name from jira + * @return Map (key: issue) with all the document chapter issues and its relevant content + */ + @SuppressWarnings(['AbcMetric']) + protected Map getDocumentChapterData(String projectKey, String versionName = null) { + def docChapterIssueFields = getJiraFieldsForIssueType(IssueTypes.DOCUMENTATION_CHAPTER) + def contentField = docChapterIssueFields[CustomIssueFields.CONTENT].id + def headingNumberField = docChapterIssueFields[CustomIssueFields.HEADING_NUMBER].id + + def jql = "project = ${projectKey} AND issuetype = '${IssueTypes.DOCUMENTATION_CHAPTER}'" + + if (versionName) { + jql = jql + " AND fixVersion = '${versionName}'" + } + + def jqlQuery = [ + fields: ['key', 'status', 'summary', 'labels', 'issuelinks', contentField, headingNumberField], + jql: jql, + expand: ['renderedFields'], + ] + + def result = this.jira.searchByJQLQuery(jqlQuery) + if (!result || result.total == 0) { + this.log.warn("There are no document chapters assigned to this version. Using JQL query: '${jqlQuery}'.") + return [:] + } + + return result.issues.collectEntries { issue -> + def number = issue.fields.find { field -> + headingNumberField == field.key && field.value + } + if (!number) { + throw new IllegalArgumentException("Error: could not find heading number for issue '${issue.key}'.") + } + number = number.getValue().trim() + + def content = issue.renderedFields.find { field -> + contentField == field.key && field.value + } + content = content ? content.getValue() : "" + + this.thumbnailImageReplacement(content) + + def documentTypes = (issue.fields.labels ?: []) + .findAll { String l -> l.startsWith(LabelPrefix.DOCUMENT) } + .collect { String l -> l.replace(LabelPrefix.DOCUMENT, '') } + if (documentTypes.size() == 0) { + throw new IllegalArgumentException("Error: issue '${issue.key}' of type " + + "'${IssueTypes.DOCUMENTATION_CHAPTER}' contains no " + + "document labels. There should be at least one label starting with '${LabelPrefix.DOCUMENT}'") + } + + def predecessorLinks = issue.fields.issuelinks + .findAll { it.type.name == "Succeeds" && it.outwardIssue?.key } + .collect { it.outwardIssue.key } + + return [(issue.key as String): [ + section: "sec${number.replaceAll(/\./, "s")}".toString(), + number: number, + heading: issue.fields.summary, + documents: documentTypes, + content: content?.replaceAll("\u00a0", " ") ?: " ", + status: issue.fields.status.name, + key: issue.key as String, + predecessors: predecessorLinks.isEmpty()? [] : predecessorLinks, + versions: versionName? [versionName] : [], + ] + ] + } + } + + protected Map loadJiraDataForCurrentVersion(String projectKey, String versionName) { + def result = [:] + def newData = this.loadVersionJiraData(projectKey, versionName) + + // Get more info of the versions from Jira + def predecessors = newData.precedingVersions ?: [] + String previousVersionId + if (predecessors && ! predecessors.isEmpty()) { + previousVersionId = predecessors.first() + } + + if (previousVersionId) { + log.info("Found a predecessor project version with ID '${previousVersionId}'. Loading its data.") + def savedDataFromOldVersion = ProjectDataRepository.loadFile(tmpFolder, previousVersionId) + def mergedData = this.mergeJiraData(savedDataFromOldVersion, newData) + result << this.addKeyAndVersionToComponentsWithout(mergedData) + result.previousVersion = previousVersionId + } else { + log.info("No predecessor project version found. Loading only data from Jira.") + result << this.addKeyAndVersionToComponentsWithout(newData) + } + + // Get more info of the versions from Jira + result.project << [previousVersion: this.loadVersionDataFromJira(previousVersionId)] + + return result + } + + protected Map loadJiraDataBugs(Map tests, String versionName = null) { + def fields = ['assignee', 'duedate', 'issuelinks', 'status', 'summary'] + def jql = "project = ${this.jiraProjectKey} AND issuetype = Bug AND status != Done" + + if (versionName) { + fields << 'fixVersions' + jql = jql + " AND fixVersion = '${versionName}'" + } + + def jqlQuery = [ + fields: fields, + jql: jql, + expand: [] + ] + + def jiraBugs = jira.getIssuesForJQLQuery(jqlQuery) ?: [] + + return jiraBugs.collectEntries { jiraBug -> + def bug = [ + key: jiraBug.key, + name: jiraBug.fields.summary, + assignee: jiraBug.fields.assignee ? [jiraBug.fields.assignee.displayName, jiraBug.fields.assignee.name, jiraBug.fields.assignee.emailAddress].find { it != null } : "Unassigned", + dueDate: '', // TODO: currently unsupported for not being enabled on a Bug issue + status: jiraBug.fields.status.name, + versions: jiraBug.fields.fixVersions.collect { it.name } + ] + + def testKeys = [] + if (jiraBug.fields.issuelinks) { + testKeys = jiraBug.fields.issuelinks.findAll { + it.type.name == 'Blocks' && it.outwardIssue && + it.outwardIssue.fields.issuetype.name == 'Test' + }.collect { it.outwardIssue.key } + } + + // Add relations from bug to tests + bug.tests = testKeys + + // Add relations from tests to bug + testKeys.each { testKey -> + if (!tests[testKey].bugs) { + tests[testKey].bugs = [] + } + + tests[testKey].bugs << bug.key + } + + return [jiraBug.key, bug] + } + } + + protected Map loadCurrentVersionDataFromJira() { + loadVersionDataFromJira(this.buildParams.version) + } + + Map loadVersionDataFromJira(String versionName) { + return jira.getVersionsForProject(this.jiraProjectKey).find { version -> + versionName == version.name + } + } + + protected Map loadJiraDataTrackingDocs(String versionName = null) { + def jql = "project = ${this.jiraProjectKey} AND issuetype = '${IssueTypes.DOCUMENTATION_TRACKING}'" + + if (versionName) { + jql = jql + " AND fixVersion = '${versionName}'" + } + + def jqlQuery = [ + jql: jql + ] + + def jiraIssues = jira.getIssuesForJQLQuery(jqlQuery) + if (jiraIssues.isEmpty()) { + def message = "Error: Jira data does not include references to items of type '${JiraDataItem.TYPE_DOCTRACKING}'" + if (versionName) { + message += " for version '${versionName}'" + } + message += "." + + throw new IllegalArgumentException(message) + } + + return jiraIssues.collectEntries { jiraIssue -> + [ + jiraIssue.key, + [ + key: jiraIssue.key, + name: jiraIssue.fields.summary, + description: jiraIssue.fields.description, + status: jiraIssue.fields.status.name, + labels: jiraIssue.fields.labels, + ], + ] + } + } + + protected Map loadJiraDataIssueTypes() { + def jiraIssueTypes = jira.getIssueTypes(this.jiraProjectKey) + return jiraIssueTypes.values.collectEntries { jiraIssueType -> + [ + jiraIssueType.name, + [ + id: jiraIssueType.id, + name: jiraIssueType.name, + fields: jira.getIssueTypeMetadata(this.jiraProjectKey, jiraIssueType.id).values.collectEntries { value -> + [ + value.name, + [ + id: value.fieldId, + name: value.name, + ] + ] + }, + ] + ] + } + } + + void addCommentInReleaseStatus(String message) { + def releaseStatusIssueKey = buildParams.releaseStatusJiraIssueKey + if (message) { + this.jira.appendCommentToIssue(releaseStatusIssueKey, "${message}\n\nSee: ${build.runDisplayUrl}") + } + + } + + void addOverallDocToMerge(String documentType, String component, String pdfPath) { + if (overallSubDocs[documentType] == null){ + overallSubDocs[documentType] = [] + } + overallSubDocs[documentType] << [component: component, pdfPath: pdfPath] + } + + List getOverallDocsToMerge(documentType){ + return overallSubDocs[(documentType)] + } + + void resetOverallDocsToMerge(){ + overallSubDocs = [:] + } + + protected Map resolveJiraDataItemReferences(Map data) { + this.resolveJiraDataItemReferences(data, JiraDataItem.TYPES) + } + + protected Map resolveJiraDataItemReferences(Map data, List jiraTypes) { + Map result = [:] + data.each { String type, values -> + if (!jiraTypes.contains(type)) { + return + } + + result[type] = [:] + values.each { String key, JiraDataItem item -> + updateResultType(result, type, key, jiraTypes, item, data) + } + } + + return result + } + + private void updateResultType(Map result, String type, String key, List jiraTypes, JiraDataItem item, Map data) { + result[type][key] = [:] + jiraTypes.each { referenceType -> + if (item.containsKey(referenceType)) { + updateResultTypeKey(item, referenceType, result, type, key, data) + } + } + } + + private void updateResultTypeKey(JiraDataItem item, String referenceType, Map result, String type, String key, Map data) { + result[type][key][referenceType] = [] + item[referenceType].eachWithIndex { referenceKey, index -> + if (data[referenceType][referenceKey] != null) { + result[type][key][referenceType][index] = data[referenceType][referenceKey] + } + } + } + + String toString() { + // Don't serialize resolved Jira data items + def result = this.data.subMap(['build', 'buildParams', 'metadata', 'git', 'jira']) + + if (!services?.jira && capabilities?.empty) { + result.remove('jira') + } + + return JsonOutput.prettyPrint(JsonOutput.toJson(result)) + } + + Map mergeJiraData(Map oldData, Map newData) { + def mergeMaps = { Map left, Map right -> + def keys = (left.keySet() + right.keySet()).toSet() + keys.collectEntries { key -> + if (JiraDataItem.TYPES.contains(key)) { + if (!left[key] || left[key].isEmpty()) { + [(key): right[key]] + } else if (!right[key] || right[key].isEmpty()) { + [(key): left[key]] + } else { + [(key): left[key] + right[key]] + } + } else { + [(key): right[key]] + } + } + } + + // Here we update the existing links in 3 ways: + // - Deleting links of removing issues + // - Adding links to new issues + // - Updating links for changes in issues (changing key 1 for key 2) + def updateIssues = { Map left, Map right -> + def updateLink = { String issueType, String issueToUpdateKey, Map link -> + if (! left[issueType][issueToUpdateKey][link.linkType]) { + left[issueType][issueToUpdateKey][link.linkType] = [] + } + if (link.action == 'add') { + left[issueType][issueToUpdateKey][link.linkType] << link.origin + } else if (link.action == 'discontinue') { + left[issueType][issueToUpdateKey][link.linkType].removeAll { it == link.origin } + } else if (link.action == 'change') { + left[issueType][issueToUpdateKey][link.linkType] << link.origin + left[issueType][issueToUpdateKey][link.linkType].removeAll { it == link."replaces" } + } + // Remove potential duplicates in place + left[issueType][issueToUpdateKey][link.linkType].unique(true) + } + + def reverseLinkIndex = buildChangesInLinks(left, right) + left.findAll { JiraDataItem.TYPES.contains(it.key) }.each { issueType, issues -> + issues.values().each { Map issueToUpdate -> + def linksToUpdate = reverseLinkIndex[issueToUpdate.key] ?: [] + linksToUpdate.each { Map link -> + try { + updateLink(issueType, issueToUpdate.key, link) + } catch (Exception e) { + throw new IllegalStateException("Error found when updating link ${link} for issue " + + "${issueToUpdate.key} from a previous version. Error message: ${e.message}", e) + } + } + } + } + return left + } + + def updateIssueLinks = { issue, index -> + issue.collectEntries { String type, value -> + if(JiraDataItem.TYPES.contains(type)) { + def newLinks = value.collect { link -> + def newLink = index[link] + newLink?:link + }.unique() + [(type): newLinks] + } else { + [(type): value] + } + } + } + + def updateLinks = { data, index -> + data.collectEntries { issueType, content -> + if(JiraDataItem.TYPES.contains(issueType)) { + def updatedIssues = content.collectEntries { String issueKey, Map issue -> + def updatedIssue = updateIssueLinks(issue, index) + [(issueKey): updatedIssue] + } + [(issueType): updatedIssues] + } else { + [(issueType): content] + } + } + } + + if (!oldData || oldData.isEmpty()) { + newData + } else { + oldData[JiraDataItem.TYPE_COMPONENTS] = this.mergeComponentsLinks(oldData, newData) + def discontinuations = (newData.discontinuedKeys ?: []) + + this.getComponentDiscontinuations(oldData, newData) + newData.discontinuations = discontinuations + // Expand some information from old saved data + def newDataExpanded = expandPredecessorInformation (oldData, newData, discontinuations) + newDataExpanded << [discontinuationsPerType: discontinuationsPerType(oldData, discontinuations)] + + // Update data from previous version + def oldDataWithUpdatedLinks = updateIssues(oldData, newDataExpanded) + def successorIndex = getSuccessorIndex(newDataExpanded) + def newDataExpandedWithUpdatedLinks = updateLinks(newDataExpanded, successorIndex) + def obsoleteKeys = discontinuations + successorIndex.keySet() + def oldDataWithoutObsoletes = removeObsoleteIssues(oldDataWithUpdatedLinks, obsoleteKeys) + + // merge old component data to new for the existing components + newDataExpandedWithUpdatedLinks[JiraDataItem.TYPE_COMPONENTS] = newDataExpandedWithUpdatedLinks[JiraDataItem.TYPE_COMPONENTS] + .collectEntries { compN, v -> + [ (compN): (oldDataWithoutObsoletes[JiraDataItem.TYPE_COMPONENTS][compN] ?: v)] + } + mergeMaps(oldDataWithoutObsoletes, newDataExpandedWithUpdatedLinks) + } + } + + /** + * Return old components with the links coming from the new data. This is because we are not receiving all + * the old links from the docgen reports for the components. and we need a special merge. + * @param oldComponents components of the saved data + * @param newComponents components for the new data + * @return merged components with all the links + */ + private Map mergeComponentsLinks(Map oldComponents, Map newComponents) { + oldComponents[JiraDataItem.TYPE_COMPONENTS].collectEntries { compName, oldComp -> + def newComp = newComponents[JiraDataItem.TYPE_COMPONENTS][compName] ?: [:] + def updatedComp = mergeJiraItemLinks(oldComp, newComp) + [(compName): updatedComp] + } + } + + private static mergeJiraItemLinks(Map oldItem, Map newItem, List discontinuations = []) { + Map oldItemWithCurrentLinks = oldItem.collectEntries { key, value -> + if (JiraDataItem.TYPES.contains(key)) { + [(key): value - discontinuations] + } else { + [(key): value] + } + }.findAll { key, value -> + !JiraDataItem.TYPES.contains(key) || value + } + (oldItemWithCurrentLinks.keySet() + newItem.keySet()).collectEntries { String type -> + if (JiraDataItem.TYPES.contains(type)) { + [(type): ((newItem[type] ?: []) + (oldItemWithCurrentLinks[type] ?: [])).unique()] + } else { + [(type): newItem[type] ?: oldItemWithCurrentLinks[type]] + } + } + } + + private Map> discontinuationsPerType (Map savedData, List discontinuations) { + savedData.findAll { JiraDataItem.TYPES.contains(it.key) } + .collectEntries { String issueType, Map issues -> + def discontinuationsPerType = issues.values().findAll { discontinuations.contains(it.key) } + [(issueType): discontinuationsPerType] + } + } + + private List getComponentDiscontinuations(Map oldData, Map newData) { + def oldComponents = (oldData[JiraDataItem.TYPE_COMPONENTS] ?: [:]).keySet() + def newComponents = (newData[JiraDataItem.TYPE_COMPONENTS] ?: [:]).keySet() + (oldComponents - newComponents) as List + } + + private Map addKeyAndVersionToComponentsWithout(Map jiraData) { + def currentVersion = jiraData.version + (jiraData[JiraDataItem.TYPE_COMPONENTS] ?: [:]).each { k, component -> + jiraData[JiraDataItem.TYPE_COMPONENTS][k].key = k + if (! component.versions) { + jiraData[JiraDataItem.TYPE_COMPONENTS][k].versions = [currentVersion] + } + } + jiraData + } + + private static List getDiscontinuedLinks(Map savedData, List discontinuations) { + savedData.findAll { JiraDataItem.TYPES.contains(it.key) }.collect { + issueType, Map issues -> + def discontinuedLinks = issues.findAll { discontinuations.contains(it.key) } + .collect { key, issue -> + def issueLinks = issue.findAll { JiraDataItem.TYPES.contains(it.key) } + issueLinks.collect { String linkType, List linkedIssues -> + linkedIssues.collect { targetKey -> + [origin: issue.key, target: targetKey, linkType: issueType, action: 'discontinue'] + } + }.flatten() + }.flatten() + return discontinuedLinks + }.flatten() + } + + private static Map buildChangesInLinks(Map oldData, Map updates) { + def discontinuedLinks = getDiscontinuedLinks(oldData, (updates.discontinuations ?: [])) + def additionsAndChanges = getAdditionsAndChangesInLinks(updates) + + return (discontinuedLinks + additionsAndChanges).groupBy { it.target } + } + + private static List getAdditionsAndChangesInLinks(Map newData) { + def getLink = { String issueType, Map issue, String targetKey, Boolean isAnUpdate -> + if (isAnUpdate) { + issue.predecessors.collect { + [origin: issue.key, target: targetKey, linkType: issueType, action: 'change', replaces: it] + } + } else { + [origin: issue.key, target: targetKey, linkType: issueType, action: 'add'] + } + } + + newData.findAll { JiraDataItem.TYPES.contains(it.key) }.collect { issueType, issues -> + issues.collect { String issueKey, Map issue -> + def isAnUpdate = ! (issue.predecessors ?: []).isEmpty() + + def issueLinks = issue.findAll { JiraDataItem.TYPES.contains(it.key) } + issueLinks.collect { String linkType, List linkedIssues -> + linkedIssues.collect { getLink(issueType, issue, it, isAnUpdate) }.flatten() + } + } + }.flatten() + } + + private static Map removeObsoleteIssues(Map jiraData, List keysToRemove) { + def result = jiraData.collectEntries { issueType, content -> + if (JiraDataItem.TYPES.contains(issueType)) { + [(issueType): content.findAll { ! keysToRemove.contains(it.key) } ] + } else { + [(issueType): content] + } + } + return result + } + + /** + * Expected format is: + * issueType.issue."expandedPredecessors" -> [key:"", version:""] + * Note that an issue can only have a single successor in a single given version. + * An issue can only have multiple successors if they belong to different succeeding versions. + * @param jiraData map of jira data + * @return a Map with the issue keys as values and their respective predecessor keys as keys + */ + private static Map getSuccessorIndex(Map jiraData) { + def index = [:] + jiraData.findAll { JiraDataItem.TYPES.contains(it.key) }.values().each { issueGroup -> + issueGroup.values().each { issue -> + (issue.expandedPredecessors ?: []).each { index[it.key] = issue.key } + } + } + return index + } + + /** + * Recover the information about "preceding" issues for all the new ones that are an update on previously + * released ones. That way we can provide all the changes in the documents + * @param savedData data from old versions retrieved by the pipeline + * @param newData data for the current version + * @return Map new data with the issue predecessors expanded + */ + private static Map expandPredecessorInformation(Map savedData, Map newData, List discontinuations) { + def expandPredecessor = { String issueType, String issueKey, String predecessor -> + def predecessorIssue = (savedData[issueType] ?: [:])[predecessor] + if (!predecessorIssue) { + throw new RuntimeException("Error: new issue '${issueKey}' references key '${predecessor}' " + + "of type '${issueType}' that cannot be found in the saved data for version '${savedData.version}'." + + "Existing issue list is '[${(savedData[issueType] ?: [:]).keySet().join(', ')}]'") + } + def existingPredecessors = (predecessorIssue.expandedPredecessors ?: [:]) + def result = [[key: predecessorIssue.key, versions: predecessorIssue.versions]] + + if (existingPredecessors) { + result << existingPredecessors + } + result.flatten() + } + + newData.collectEntries { issueType, content -> + if (JiraDataItem.TYPES.contains(issueType)) { + def updatedIssues = content.collectEntries { String issueKey, Map issue -> + def predecessors = issue.predecessors ?: [] + if (predecessors.isEmpty()) { + [(issueKey): issue] + } else { + def expandedPredecessors = predecessors.collect { predecessor -> + expandPredecessor(issueType, issueKey, predecessor) + }.flatten() + // Get old links from predecessor (just one allowed) + def predecessorIssue = savedData.get(issueType).get(predecessors.first()) + def updatedIssue = mergeJiraItemLinks(predecessorIssue, issue, discontinuations) + + [(issueKey): (updatedIssue + [expandedPredecessors: expandedPredecessors])] + } + } + [(issueType): updatedIssues] + } else { + [(issueType): content] + } + } + } + + private thumbnailImageReplacement(content) { + def matcher = content =~ / + def values = keys instanceof Map ? keys.values().flatten() : keys + if (!values.isEmpty()) { + message += '\n\n' + type.capitalize() + ': ' + values.join(', ') + } + } + return message + } +} diff --git a/src/main/groovy/org/ods/doc/gen/project/data/TestType.groovy b/src/main/groovy/org/ods/doc/gen/project/data/TestType.groovy new file mode 100644 index 00000000..e0a47b11 --- /dev/null +++ b/src/main/groovy/org/ods/doc/gen/project/data/TestType.groovy @@ -0,0 +1,10 @@ +package org.ods.doc.gen.project.data; + +class TestType { + + static final String ACCEPTANCE = 'Acceptance' + static final String INSTALLATION = 'Installation' + static final String INTEGRATION = 'Integration' + static final String UNIT = 'Unit' + +} diff --git a/src/main/groovy/util/DocUtils.groovy b/src/main/groovy/util/DocUtils.groovy deleted file mode 100644 index ee827f1d..00000000 --- a/src/main/groovy/util/DocUtils.groovy +++ /dev/null @@ -1,71 +0,0 @@ -package util - -import net.lingala.zip4j.core.ZipFile -import org.apache.commons.io.FilenameUtils -import org.apache.commons.io.IOUtils -import org.apache.commons.io.file.PathUtils - -import java.nio.file.DirectoryNotEmptyException -import java.nio.file.Files -import java.nio.file.Path -import java.nio.file.StandardCopyOption - -class DocUtils { - - // Extract some Zip archive into a target directory - static Path extractZipArchive(Path zipArchive, Path targetDir, String startAtDir = null) { - // Create a ZipFile from the archive Path - ZipFile zipFile = new ZipFile(zipArchive.toFile()) - boolean targetExists = Files.exists(targetDir) - if (targetExists) { - PathUtils.cleanDirectory(targetDir) - } - - if (startAtDir) { - // Extract the ZipFile into targetDir from a given subDir - def zipArchiveName = zipArchive.getFileName().toString() - FileTools.withTempDir(FilenameUtils.removeExtension(zipArchiveName)) { tmpDir -> - zipFile.extractAll(tmpDir.toString()) - def sourceDir = tmpDir.resolve(startAtDir) - targetDir.initDir(targetExists) { target -> - try { - Files.move(sourceDir, target, StandardCopyOption.REPLACE_EXISTING) - } catch (DirectoryNotEmptyException ignore) { - // Fallback in case targetDir is not in the same file system as sourceDir. - PathUtils.copyDirectory(sourceDir, target, StandardCopyOption.REPLACE_EXISTING) - } - } - } - } else { - // Extract the ZipFile into targetDir from its root - targetDir.initDir(targetExists) { target -> - zipFile.extractAll(target.toString()) - } - } - return targetDir - } - - static String getPDFHeader(Path pdf) { - int len = -1 - def bytes = new byte[8] - pdf.withInputStream { is -> - len = IOUtils.read(is, bytes) - if (len == bytes.length) { - def b = is.read() - // CR == 13, LF == 10. Both are valid here. - if (b != 13 && b != 10) { - len = -len - } - } - } - if (len < bytes.length) { - return null - } - def header = new String(bytes, 'ISO-8859-1') - if (!header ==~ /%PDF-\d\.\d/) { - return null - } - return header - } - -} diff --git a/src/main/groovy/util/FileTools.groovy b/src/main/groovy/util/FileTools.groovy deleted file mode 100644 index 10e6227c..00000000 --- a/src/main/groovy/util/FileTools.groovy +++ /dev/null @@ -1,420 +0,0 @@ -package util - -import groovy.transform.stc.ClosureParams -import groovy.transform.stc.FirstParam -import groovy.transform.stc.SimpleType - -import java.nio.file.Files -import java.nio.file.Path -import java.nio.file.attribute.FileAttribute - -/** - * This is a set of tools for file creation, mainly temporary files or directories - * that must be deleted in case of error or when their processing completes. - */ -class FileTools { - - private FileTools() {} - - /** - * Creates a new temporary file by invoking the method {@code Files.createTempFile} with the given parameters - * and passes the newly created {@code Path} instance to the given closure. - * The attrs are converted to an array in order to invoke {@code createTempFile} - * The file will be created in the given directory. - * - * It is warranted that the file will be deleted upon exit from the closure, - * whether it succeeds or throws an exception. - * - * Sample usage: - * - * {@Code - * Path parent = ... - * FileTools.withTempFile(parent, 'tst') { tmpFile -> - * // Do something with your temp file. - * // If any exception is thrown, the file will be deleted - * } - * // The file has been deleted - * } - * - * @param dir the directory to create the temporary file in. - * @param prefix the prefix for the new temporary file name. - * @param suffix the suffix for the new temporary file name. If null or not present, '.tmp' will be used. - * @param attrs an optional list of file attributes to set atomically when creating the file. - * @param block a closure to execute with the newly created temporary file. - * @return the value returned by the closure. - * @throws IllegalArgumentException - * if the prefix or suffix parameters cannot be used to generate - * a candidate file name. - * @throws UnsupportedOperationException - * if the {@code attrs} list contains an attribute that cannot be set atomically - * when creating the file. - * @throws IOException - * if an I/O error occurs or {@code dir} does not exist. - * @throws SecurityException - * In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkWrite(String)} - * method is invoked to check write access to the file - * and the {@code SecurityManager.checkDelete(String)} method - * is invoked to check delete access to the file. - * @throws Exception - * if thrown by the closure. - */ - static T withTempFile(Path dir, - String prefix, - String suffix = null, - List> attrs = [], - @ClosureParams(value = FirstParam.class) Closure block) throws IOException { - return Files.createTempFile(dir, prefix, suffix, attrs as FileAttribute[]).withFile { tmpFile -> - return block(tmpFile) - } - } - - /** - * Creates a new temporary file by invoking the method {@code Files.createTempFile} with the given parameters - * and passes the newly created {@code Path} instance to the given closure. - * The attrs are converted to an array in order to invoke {@code createTempFile} - * The file will be created in the default temporary-file directory. - * - * It is warranted that the file will be deleted upon exit from the closure, - * whether it succeeds or throws an exception. - * - * Sample usage: - * - * {@Code - * FileTools.withTempFile('tst') { tmpFile -> - * // Do something with your temp file. - * // If any exception is thrown, the file will be deleted - * } - * // The file has been deleted - * } - * - * @param prefix the prefix for the new temporary file name. - * @param suffix the suffix for the new temporary file name. If null or not present, '.tmp' will be used. - * @param attrs an optional list of file attributes to set atomically when creating the file. - * @param block a closure to execute with the newly created temporary file. - * @return the value returned by the closure. - * @throws IllegalArgumentException - * if the prefix or suffix parameters cannot be used to generate - * a candidate file name. - * @throws UnsupportedOperationException - * if the {@code attrs} list contains an attribute that cannot be set atomically - * when creating the file. - * @throws IOException - * if an I/O error occurs or the temporary-file directory does not exist. - * @throws SecurityException - * In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkWrite(String)} - * method is invoked to check write access to the file - * and the {@code SecurityManager.checkDelete(String)} method - * is invoked to check delete access to the file. - * @throws Exception - * if thrown by the closure. - */ - static T withTempFile(String prefix, - String suffix = null, - List> attrs = [], - @ClosureParams(value = SimpleType.class, options = ['java.nio.file.Path']) - Closure block) throws IOException { - return Files.createTempFile(prefix, suffix, attrs as FileAttribute[]).withFile { tmpFile -> - return block(tmpFile) - } - } - - /** - * Creates a new temporary file by invoking the method {@code Files.createTempFile} with the given parameters - * and passes the newly created {@code Path} instance to the given closure for initialisation. - * The attrs are converted to an array in order to invoke {@code createTempFile} - * The file will be created in the given directory. - * - * It is warranted that the file will be deleted in case the closure throws an exception. - * - * Sample usage: - * - * {@Code - * Path parent = ... - * def file = FileTools.newTempFile(parent, 'tst') { tmpFile -> - * // Initialize your temp file, possibly adding contents to it. - * // If any exception is thrown, the file will be deleted - * } - * // The file has been successfully initialized and is available for usage. - * } - * - * @param dir the directory to create the temporary file in. - * @param prefix the prefix for the new temporary file name. - * @param suffix the suffix for the new temporary file name. If null or not present, '.tmp' will be used. - * @param attrs an optional list of file attributes to set atomically when creating the file. - * @param init a closure to initialise the temporary file. - * @return the newly created {@code Path} instance. - * @throws IllegalArgumentException - * if the prefix or suffix parameters cannot be used to generate - * a candidate file name. - * @throws UnsupportedOperationException - * if the {@code attrs} list contains an attribute that cannot be set atomically - * when creating the file. - * @throws IOException - * if an I/O error occurs or {@code dir} does not exist. - * @throws SecurityException - * In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkWrite(String)} - * method is invoked to check write access to the file. - * @throws Exception - * if thrown by the closure. - */ - static Path newTempFile(Path dir, - String prefix, - String suffix = null, - List> attrs = [], - @ClosureParams(value = FirstParam.class) Closure init) throws IOException { - return Files.createTempFile(dir, prefix, suffix, attrs as FileAttribute[]).initFile { tmpFile -> - init(tmpFile) - return tmpFile - } - } - - /** - * Creates a new temporary file by invoking the method {@code Files.createTempFile} with the given parameters - * and passes the newly created {@code Path} instance to the given closure for initialisation. - * The attrs are converted to an array in order to invoke {@code createTempFile} - * The file will be created in the default temporary-file directory. - * - * It is warranted that the file will be deleted in case the closure throws an exception. - * - * Sample usage: - * - * {@Code - * def file = FileTools.newTempFile('tst') { tmpFile -> - * // Initialize your temp file, possibly adding contents to it. - * // If any exception is thrown, the file will be deleted - * } - * // The file has been successfully initialized and is available for usage. - * } - * - * @param prefix the prefix for the new temporary file name. - * @param suffix the suffix for the new temporary file name. If null or not present, '.tmp' will be used. - * @param attrs an optional list of file attributes to set atomically when creating the file. - * @param init a closure to initialise the temporary file. - * @return the newly created {@code Path} instance. - * @throws IllegalArgumentException - * if the prefix or suffix parameters cannot be used to generate - * a candidate file name. - * @throws UnsupportedOperationException - * if the {@code attrs} list contains an attribute that cannot be set atomically - * when creating the file. - * @throws IOException - * if an I/O error occurs or the temporary-file directory does not exist. - * @throws SecurityException - * In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkWrite(String)} - * method is invoked to check write access to the file. - * @throws Exception - * if thrown by the closure. - */ - static Path newTempFile(String prefix, - String suffix = null, - List> attrs = [], - @ClosureParams(value = SimpleType.class, options = ['java.nio.file.Path']) - Closure init) throws IOException { - return Files.createTempFile(prefix, suffix, attrs as FileAttribute[]).initFile { tmpFile -> - init(tmpFile) - return tmpFile - } - } - - /** - * Creates a new temporary directory by invoking the method {@code Files.createTempDirectory} - * with the given parameters and passes the newly created {@code Path} instance to the given closure. - * The attrs are converted to an array in order to invoke {@code createTempDirectory} - * The new directory will be created in the given parent directory. - * - * It is warranted that the directory and all its contents will be deleted upon exit from the closure, - * whether it succeeds or throws an exception. - * - * Sample usage: - * - * {@Code - * Path parent = ... - * FileTools.withTempDir(parent, 'tst') { tmpDir -> - * // Do something with your temp directory. - * // If any exception is thrown, the directory and its contents will be deleted. - * } - * // The directory and its contents have been deleted. - * } - * - * @param dir the parent directory to create the temporary file in. - * @param prefix the prefix for the new temporary directory name. - * @param attrs an optional list of file attributes to set atomically when creating the directory. - * @param block a closure to execute with the newly created temporary directory. - * @return the value returned by the closure. - * @throws IllegalArgumentException - * if the prefix cannot be used to generate - * a candidate directory name. - * @throws UnsupportedOperationException - * if the {@code attrs} list contains an attribute that cannot be set atomically - * when creating the directory. - * @throws IOException - * if an I/O error occurs or {@code dir} does not exist. - * @throws SecurityException - * In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkWrite(String)} - * method is invoked to check write access when creating the directory - * and the {@code SecurityManager.checkDelete(String)} method - * is invoked to check delete access to the directory and its contents. - * @throws Exception - * if thrown by the closure. - */ - static T withTempDir(Path dir, - String prefix, - List> attrs = [], - @ClosureParams(value = FirstParam.class) Closure block) throws IOException { - return Files.createTempDirectory(dir, prefix, attrs as FileAttribute[]).withDir { tmpDir -> - return block(tmpDir) - } - } - - /** - * Creates a new temporary directory by invoking the method {@code Files.createTempDirectory} - * with the given parameters and passes the newly created {@code Path} instance to the given closure. - * The attrs are converted to an array in order to invoke {@code createTempDirectory} - * The new directory will be created in the default temporary-file directory. - * - * It is warranted that the directory and all its contents will be deleted upon exit from the closure, - * whether it succeeds or throws an exception. - * - * Sample usage: - * - * {@Code - * FileTools.withTempDir('tst') { tmpDir -> - * // Do something with your temp directory. - * // If any exception is thrown, the directory and its contents will be deleted. - * } - * // The directory and its contents have been deleted. - * } - * - * @param prefix the prefix for the new temporary directory name. - * @param attrs an optional list of file attributes to set atomically when creating the directory. - * @param block a closure to execute with the newly created temporary directory. - * @return the value returned by the closure. - * @throws IllegalArgumentException - * if the prefix cannot be used to generate - * a candidate directory name. - * @throws UnsupportedOperationException - * if the {@code attrs} list contains an attribute that cannot be set atomically - * when creating the directory. - * @throws IOException - * if an I/O error occurs or the temporary-file directory does not exist. - * @throws SecurityException - * In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkWrite(String)} - * method is invoked to check write access when creating the directory - * and the {@code SecurityManager.checkDelete(String)} method - * is invoked to check delete access to the directory and its contents. - * @throws Exception - * if thrown by the closure. - */ - static T withTempDir(String prefix, - List> attrs = [], - @ClosureParams(value = SimpleType.class, options = ['java.nio.file.Path']) - Closure block) throws IOException { - return Files.createTempDirectory(prefix, attrs as FileAttribute[]).withDir { tmpDir -> - return block(tmpDir) - } - } - - /** - * Creates a new temporary directory by invoking the method {@code Files.createTempDirectory} - * with the given parameters and passes the newly created {@code Path} instance to the given closure. - * The attrs are converted to an array in order to invoke {@code createTempDirectory} - * The new directory will be created in the given parent directory. - * - * It is warranted that the directory and all its contents will be deleted if the closure throws an exception. - * - * Sample usage: - * - * {@Code - * Path parent = ... - * def directory = FileTools.newTempDir(parent, 'tst') { tmpDir -> - * // Initialise your temp directory, possibly adding contents to it. - * // If any exception is thrown, the directory and its contents will be deleted. - * } - * // The directory has been successfully initialized and is available for usage. - * } - * - * @param dir the parent directory to create the temporary file in. - * @param prefix the prefix for the new temporary directory name. - * @param attrs an optional list of file attributes to set atomically when creating the directory. - * @param init a closure to execute with the newly created temporary directory. - * @return the value returned by the closure. - * @throws IllegalArgumentException - * if the prefix cannot be used to generate - * a candidate directory name. - * @throws UnsupportedOperationException - * if the {@code attrs} list contains an attribute that cannot be set atomically - * when creating the directory. - * @throws IOException - * if an I/O error occurs or {@code dir} does not exist. - * @throws SecurityException - * In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkWrite(String)} - * method is invoked to check write access when creating the directory. - * @throws Exception - * if thrown by the closure. - */ - static Path newTempDir(Path dir, - String prefix, - List> attrs = [], - @ClosureParams(value = FirstParam.class) Closure init) throws IOException { - return Files.createTempDirectory(dir, prefix, attrs as FileAttribute[]).initDir { tmpDir -> - init(tmpDir) - return tmpDir - } - } - - /** - * Creates a new temporary directory by invoking the method {@code Files.createTempDirectory} - * with the given parameters and passes the newly created {@code Path} instance to the given closure. - * The attrs are converted to an array in order to invoke {@code createTempDirectory} - * The new directory will be created in the default temporary-file directory. - * - * It is warranted that the directory and all its contents will be deleted if the closure throws an exception. - * - * Sample usage: - * - * {@Code - * def directory = FileTools.newTempDir('tst') { tmpDir -> - * // Initialise your temp directory, possibly adding contents to it. - * // If any exception is thrown, the directory and its contents will be deleted. - * } - * // The directory has been successfully initialized and is available for usage. - * } - * - * @param dir the parent directory to create the temporary file in. - * @param prefix the prefix for the new temporary directory name. - * @param attrs an optional list of file attributes to set atomically when creating the directory. - * @param init a closure to execute with the newly created temporary directory. - * @return the value returned by the closure. - * @throws IllegalArgumentException - * if the prefix cannot be used to generate - * a candidate directory name. - * @throws UnsupportedOperationException - * if the {@code attrs} list contains an attribute that cannot be set atomically - * when creating the directory. - * @throws IOException - * if an I/O error occurs or the temporary-file directory does not exist. - * @throws SecurityException - * In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkWrite(String)} - * method is invoked to check write access when creating the directory. - * @throws Exception - * if thrown by the closure. - */ - static Path newTempDir(String prefix, - List> attrs = [], - @ClosureParams(value = SimpleType.class, options = ['java.nio.file.Path']) - Closure init) throws IOException { - return Files.createTempDirectory(prefix, attrs as FileAttribute[]).initDir { tmpDir -> - init(tmpDir) - return tmpDir - } - } - -} diff --git a/src/main/groovy/util/Try.groovy b/src/main/groovy/util/Try.groovy deleted file mode 100644 index 0fe6bc72..00000000 --- a/src/main/groovy/util/Try.groovy +++ /dev/null @@ -1,427 +0,0 @@ -package util - -import groovy.transform.stc.ClosureParams -import groovy.transform.stc.FirstParam -import org.apache.commons.io.FileUtils -import org.apache.commons.io.file.PathUtils - -import java.nio.file.Files -import java.nio.file.Path - -/** - * Extension class implementing functionality equivalent to withCloseable, but generalised to resources - * that do not implement {@code AutoCloseable} by providing an optional cleanup closure. - * If no cleanup closure is given and no specialised method exists for the given resource class, - * by default it will try to invoke the {@code close()} method. - * - * An additional functionality is also supported to initialise new resources and to only run the cleanup - * code in case of exception while performing the construction. - * - * Specialised convenience methods are also included to work with {@code File} or {@code Path} - * and have them deleted when the cleanup is invoked. - */ -class Try { - - private static final Closure deleteFile = { File file -> Files.deleteIfExists(file.toPath()) } - private static final Closure deletePath = { Path path -> Files.deleteIfExists(path) } - private static final Closure deleteDir = { File dir -> - dir.toPath() // Validate path. - FileUtils.deleteDirectory(dir) - } - private static final Closure deleteDirContents = { File dir -> - if (Files.exists(dir.toPath())) { - FileUtils.cleanDirectory(dir) - } - return null - } - private static final Closure deleteDirPath = { Path dir -> - if (Files.notExists(dir)) { - return null - } - if (!Files.isDirectory(dir)) { - throw new IllegalArgumentException("Not a directory: ${dir}") - } - PathUtils.deleteDirectory(dir) - } - private static final Closure deleteDirContentsPath = { Path dir -> - if (Files.notExists(dir)) { - return null - } - if (!Files.isDirectory(dir)) { - throw new IllegalArgumentException("Not a directory: ${dir}") - } - PathUtils.cleanDirectory(dir) - } - - private Try() {} - - /** - * Passes this Path to the closure, ensuring that the file is deleted after the closure returns, - * regardless of errors. - * - * As with the try-with-resources statement, if multiple exceptions are thrown, the exception from the closure - * will be returned and the exception from deleting will be added as a suppressed exception. - * - * Usage example: - * - * {@Code - * Files.createTempFile('tst', null).withFile { tmpFile -> - * // Do something with your temp file. - * // If any exception is thrown, the file will be deleted. - * } - * // The file has been deleted - * } - * - * @param self the {@code Path}. - * @param block the closure taking the {@code Path} as parameter. - * @return the value returned by the closure. - * @throws java.nio.file.DirectoryNotEmptyException - * if the file is a directory and could not otherwise be deleted - * because the directory is not empty (optional specific - * exception) - * @throws IOException - * if an I/O error occurs while deleting the file. - * @throws SecurityException - * In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkDelete(String)} method - * is invoked to check delete access to the file. - * @throws Exception - * if thrown by the closure. - */ - static T withFile(Path self, @ClosureParams(value = FirstParam.class) Closure block) throws IOException { - return withResource(self, deletePath, block) - } - - /** - * Passes this File to the closure, ensuring that the file is deleted after the closure returns, - * regardless of errors. - * - * As with the try-with-resources statement, if multiple exceptions are thrown, the exception from the closure - * will be returned and the exception from deleting will be added as a suppressed exception. - * - * Usage example: - * - * {@Code - * File.createTempFile('tst', null).withFile { tmpFile -> - * // Do something with your temp file. - * // If any exception is thrown, the file will be deleted. - * } - * // The file has been deleted - * } - * - * @param self the {@code File}. - * @param block the closure taking the {@code File} as parameter. - * @return the value returned by the closure. - * @throws IllegalArgumentException if this abstract path is not a valid path. - * @throws IOException if an I/O error occurs while deleting the file. - * @throws SecurityException if a security manager is installed, - * the {@code SecurityManager.checkDelete(String)} method - * is invoked to check delete access to the file. - * @throws Exception if thrown by the closure. - */ - static T withFile(File self, @ClosureParams(value = FirstParam.class) Closure block) throws IOException { - return withResource(self, deleteFile, block) - } - - /** - * Passes this Path to the closure, ensuring that the file is deleted - * whenever the closure throws an exception. - * - * This method is typically used to initialise a file for further use. - - * If the deletion throws an exception, the exception from the closure - * will be returned and the exception from deleting will be added as a suppressed exception. - * - * Usage example: - * - * {@Code - * def file = Files.createTempFile('tst', null) - * file.initFile { tmpFile -> - * // Initialize the file. - * // If any exception is thrown, the file will be deleted. - * } - * // The file has been successfully initialized and is available for usage. - * } - * - * @param self the {@code Path}. - * @param block the closure taking the {@code Path} as parameter. - * @return the value returned by the closure. - * @throws Exception if thrown by the closure. - */ - static T initFile(Path self, @ClosureParams(value = FirstParam.class) Closure block) { - return initResource(self, deletePath, block) - } - - /** - * Passes this File to the closure, ensuring that the file is deleted - * whenever the closure throws an exception. - * - * This method is typically used to initialise a file for further use. - - * If the deletion throws an exception, the exception from the closure - * will be returned and the exception from deleting will be added as a suppressed exception. - * - * Usage example: - * - * {@Code - * def file = File.createTempFile('tst', null) - * file.initFile { tmpFile -> - * // Initialize the file. - * // If any exception is thrown, the file will be deleted. - * } - * // The file has been successfully initialized and is available for usage. - * } - * - * @param self the {@code File}. - * @param block the closure taking the {@code File} as parameter. - * @return the value returned by the closure. - * @throws Exception if thrown by the closure. - */ - static T initFile(File self, @ClosureParams(value = FirstParam.class) Closure block) { - return initResource(self, deleteFile, block) - } - - /** - * Passes this Path to the closure, ensuring that the directory and all its contents - * are deleted after the closure returns, regardless of errors. - * - * The Path must represent a directory. - * - * As with the try-with-resources statement, if multiple exceptions are thrown, the exception from the closure - * will be returned and the exception from deleting will be added as a suppressed exception. - * - * Usage example: - * - * {@Code - * Files.createTempDirectory('tst').withDir { tmpDir -> - * // Do something in your temp directory. - * // If any exception is thrown, the directory and all of its contents will be deleted. - * } - * // The directory and all of its contents has been deleted - * } - * - * @param self the {@code Path}. - * @param cleanContentsOnly if true, the contents will be deleted, but not the directory itself. - * Default: false. - * @param block the closure taking the {@code Path} as parameter. - * @return the value returned by the closure. - * @throws IllegalArgumentException if the file is not a directory. - * @throws IOException if an I/O error occurs while deleting the directory and its contents. - * @throws SecurityException In the case of the default provider, and a security manager is - * installed, the {@code SecurityManager.checkDelete(String)} method - * is invoked to check delete access to the directory and its contents. - * @throws Exception if thrown by the closure. - */ - static T withDir(Path self, - boolean cleanContentsOnly = false, - @ClosureParams(value = FirstParam.class) Closure block) throws IOException { - return withResource(self, cleanContentsOnly ? deleteDirContentsPath : deleteDirPath, block) - } - - /** - * Passes this File to the closure, ensuring that the directory and all its contents - * are deleted after the closure returns, regardless of errors. - * - * The File must represent a directory. - * - * As with the try-with-resources statement, if multiple exceptions are thrown, the exception from the closure - * will be returned and the exception from deleting will be added as a suppressed exception. - * - * Usage example: - * - * {@Code - * File.createTempDir().withDir { tmpDir -> - * // Do something in your temp directory. - * // If any exception is thrown, the directory and all of its contents will be deleted. - * } - * // The directory and all of its contents has been deleted - * } - * - * @param self the {@code File}. - * @param cleanContentsOnly if true, the contents will be deleted, but not the directory itself. - * Default: false. - * @param block the closure taking the {@code File} as parameter. - * @return the value returned by the closure. - * @throws IllegalArgumentException if this abstract path is not a valid path - * or is not a directory. - * @throws IOException if an I/O error occurs while deleting the directory and its contents. - * @throws SecurityException if a security manager is installed, - * the {@code SecurityManager.checkDelete(String)} method - * is invoked to check delete access to the directory and its contents. - * @throws Exception if thrown by the closure. - */ - static T withDir(File self, - boolean cleanContentsOnly = false, - @ClosureParams(value = FirstParam.class) Closure block) throws IOException { - return withResource(self, cleanContentsOnly ? deleteDirContents : deleteDir, block) - } - - /** - * Passes this Path to the closure, ensuring that the directory and all its contents are deleted - * whenever the closure throws an exception. - * - * The Path must represent a directory. - * - * This method is typically used to initialise a directory for further use. - * - * If the deletion throws an exception, the exception from the closure - * will be returned and the exception from deleting will be added as a suppressed exception. - * - * Usage example: - * - * {@Code - * def directory = Files.createTempDirectory('tst') - * directory.initDir { tmpDir -> - * // Initialize the directory and its contents. - * // If any exception is thrown, the directory and all of its contents will be deleted. - * } - * // The directory has been successfully initialized and is available for usage. - * } - * - * @param self the {@code Path}. - * @param cleanContentsOnly if true, in case of exception, the contents will be deleted, - * but not the directory itself. Default: false. - * @param block the closure taking the {@code Path} as parameter. - * @return the value returned by the closure. - * @throws Exception if thrown by the closure. - */ - static T initDir(Path self, - boolean cleanContentsOnly = false, - @ClosureParams(value = FirstParam.class) Closure block) { - return initResource(self, cleanContentsOnly ? deleteDirContentsPath : deleteDirPath, block) - } - - /** - * Passes this File to the closure, ensuring that the directory and all its contents are deleted - * whenever the closure throws an exception. - * - * The File must represent a directory. - * - * This method is typically used to initialise a directory for further use. - * - * If the deletion throws an exception, the exception from the closure - * will be returned and the exception from deleting will be added as a suppressed exception. - * - * Usage example: - * - * {@Code - * def directory = File.createTempDir() - * directory.initDir { tmpDir -> - * // Initialize the directory and its contents. - * // If any exception is thrown, the directory and all of its contents will be deleted. - * } - * // The directory has been successfully initialized and is available for usage. - * } - * - * @param self the {@code File}. - * @param cleanContentsOnly if true, in case of exception, the contents will be deleted, - * but not the directory itself. Default: false. - * @param block the closure taking the {@code File} as parameter. - * @return the value returned by the closure. - * @throws Exception if thrown by the closure. - */ - static T initDir(File self, - boolean cleanContentsOnly = false, - @ClosureParams(value = FirstParam.class) Closure block) { - return initResource(self, cleanContentsOnly ? deleteDirContents : deleteDir, block) - } - - /** - * Allows this resource to be used within the {@code body} closure, ensuring that {@code cleanup} - * has been invoked once the closure has been executed and before this method returns. - * - * If no cleanup closure is provided, by default it will invoke the close method of the resource. - * - * As with the try-with-resources statement, if multiple exceptions are thrown - * the exception from the closure will be returned and the exception from the cleanup - * will be added as a suppressed exception. - * - * Usage example: - * - * {@Code - * Files.createTempDirectory('tst').withResource({ it.deleteDir() }) { tmpDir -> - * // Do something in your temp directory. - * // If any exception is thrown, the directory and all of its contents will be deleted. - * } - * // The directory and all of its contents has been deleted - * } - * - * @param identifier the resource for which to run the provided {@code block} closure. - * @param cleanup the code to perform the desired cleanup on the resource, - * or {@code { it.close() }}, if not provided. - * @param block the code that will make use of the resource. - * @return the value returned by {@code block}. - * @throws Exception if thrown by either {@code block} or {@code cleanup}. - */ - static T withResource(R identifier, - @ClosureParams(value = FirstParam.class) Closure cleanup = { it.close() }, - @ClosureParams(value = FirstParam.class) Closure block) { - Throwable primaryExc = null - try { - return block(identifier) - } catch (Throwable t) { - primaryExc = t - throw t - } finally { - if (identifier != null) { - if (primaryExc != null) { - try { - cleanup(identifier) - } catch (Throwable suppressedExc) { - primaryExc.addSuppressed(suppressedExc) - } - } else { - cleanup(identifier) - } - } - } - } - - /** - * Allows this resource to be used within the {@code body} closure, ensuring that {@code cleanup} - * has been invoked whenever the closure has thrown an exception. - * - * If no cleanup closure is provided, by default it will invoke the close method of the resource. - * - * If the cleanup throws an exception, - * the exception from the closure will be returned and the exception from the cleanup - * will be added as a suppressed exception. - * - * This method is typically used to initialize some resource for later usage. - * - * Usage example: - * - * {@Code - * def directory = Files.createTempDirectory('tst') - * directory.withResource({ it.deleteDir() }) { tmpDir -> - * // Initialize the directory and its contents. - * // If any exception is thrown, the directory and all of its contents will be deleted. - * } - * // The directory has been successfully initialized and is available for usage. - * } - * - * @param identifier the resource for which to run the provided {@code block} closure. - * @param cleanup the code to perform the desired cleanup on the resource, - * or {@code { it.close() }}, if not provided. - * @param block the code that will make use of the resource. - * @return the value returned by {@code block}. - * @throws Exception if thrown by {@code block}. - */ - static T initResource(R identifier, - @ClosureParams(value = FirstParam.class) Closure cleanup = { it.close() }, - @ClosureParams(value = FirstParam.class) Closure block) { - try { - return block(identifier) - } catch (Throwable t) { - if (identifier != null) { - try { - cleanup(identifier) - } catch (Throwable suppressedExc) { - t.addSuppressed(suppressedExc) - } - } - throw t - } - } - -} diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 00000000..07e96598 --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,34 @@ +server: + port: ${SERVER_PORT:8080} + +spring: + mvc.async.request-timeout: 750 + autoconfigure.exclude: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration + main.allow-bean-definition-overriding: true + +cache: + documents.basePath: /tmp/doc-gen-templates + projectData.expiration.minutes: 30 + +bitbucket: + url: ${BITBUCKET_URL:dummyURL} + username: ${BITBUCKET_USERNAME:dummy} + password: ${BITBUCKET_PASSWORD:dummy} + documents: + project: ${BITBUCKET_DOCUMENT_TEMPLATES_PROJECT:none} + repo: ${BITBUCKET_DOCUMENT_TEMPLATES_REPO:none} + +jira: + url: ${JIRA_URL:dummyURL} + username: ${JIRA_USERNAME:dummy} + password: ${JIRA_PASSWORD:dummy} + +nexus: + url: ${NEXUS_URL:dummyURL} + username: ${NEXUS_USERNAME:dummy} + password: ${NEXUS_PASSWORD:dummy} + +github: + url: ${GITHUB_HOST:https://www.github.com} + +runWkHtmlToPdfInDockerContainer: ${RUN_WK_HTML_TO_PDF_IN_DOCKER_CONTAINER:false} \ No newline at end of file diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml new file mode 100644 index 00000000..7ec317e0 --- /dev/null +++ b/src/main/resources/logback.xml @@ -0,0 +1,24 @@ + + + + + %d{HH:mm:ss.SSS} %magenta([%thread]) %highlight(%-5level) %yellow(%logger{36}) - %msg%throwable%n + + + + build/reports/test-execution.log + true + true + + %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/groovy/app/AppSpec.groovy b/src/test/groovy/app/AppSpec.groovy deleted file mode 100644 index 0fe5f258..00000000 --- a/src/test/groovy/app/AppSpec.groovy +++ /dev/null @@ -1,117 +0,0 @@ -package app - -import groovy.json.JsonOutput - -import io.restassured.http.ContentType - -import static io.restassured.RestAssured.* -import static org.hamcrest.Matchers.startsWith - -class AppSpec extends SpecHelper { - - def setup() { - env.set("BITBUCKET_DOCUMENT_TEMPLATES_PROJECT", "myProject") - env.set("BITBUCKET_DOCUMENT_TEMPLATES_REPO", "myRepo") - env.set("BITBUCKET_URL", "http://localhost:9001") - env.set("BITBUCKET_USERNAME", "user") - env.set("BITBUCKET_PASSWORD", "pass") - } - - def "POST /document"() { - expect: - def version = "1.0" - - mockTemplatesZipArchiveDownload( - new BitBucketDocumentTemplatesStore() - .getZipArchiveDownloadURI(version) - ) - - given() - .accept(ContentType.JSON) - .contentType(ContentType.JSON) - .body(JsonOutput.toJson([ - metadata: [ type: "InstallationReport", version: version ], - data: [ - name: "Project Phoenix", - metadata: [ - header: "header" - ] - ] - ])) - .when() - .port(this.appConfig.getInt("application.port")) - .post("/document") - .then() - .statusCode(200) - .body("data", startsWith("%PDF-1.4\n".bytes.encodeBase64().toString())) - } - - def "POST /document without parameter 'metadata.type'"() { - expect: - def version = "1.0" - - mockTemplatesZipArchiveDownload( - new BitBucketDocumentTemplatesStore() - .getZipArchiveDownloadURI(version) - ) - - given() - .accept(ContentType.JSON) - .contentType(ContentType.JSON) - .body(JsonOutput.toJson([ - metadata: [ type: null, version: version ], - data: [ name: "Project Phoenix" ] - ])) - .when() - .port(this.appConfig.getInt("application.port")) - .post("/document") - .then() - .statusCode(400) - } - - def "POST /document without parameter 'metadata.version'"() { - expect: - def version = "1.0" - - mockTemplatesZipArchiveDownload( - new BitBucketDocumentTemplatesStore() - .getZipArchiveDownloadURI(version) - ) - - given() - .accept(ContentType.JSON) - .contentType(ContentType.JSON) - .body(JsonOutput.toJson([ - metadata: [ type: "InstallationReport", version: null ], - data: [ name: "Project Phoenix" ] - ])) - .when() - .port(this.appConfig.getInt("application.port")) - .post("/document") - .then() - .statusCode(400) - } - - def "POST /document without parameter 'data'"() { - expect: - def version = "1.0" - - mockTemplatesZipArchiveDownload( - new BitBucketDocumentTemplatesStore() - .getZipArchiveDownloadURI(version) - ) - - given() - .accept(ContentType.JSON) - .contentType(ContentType.JSON) - .body(JsonOutput.toJson([ - metadata: [ type: "InstallationReport", version: version ], - data: null - ])) - .when() - .port(this.appConfig.getInt("application.port")) - .post("/document") - .then() - .statusCode(400) - } -} diff --git a/src/test/groovy/app/BitBucketDocumentTemplatesStoreSpec.groovy b/src/test/groovy/app/BitBucketDocumentTemplatesStoreSpec.groovy deleted file mode 100644 index 1228c6d2..00000000 --- a/src/test/groovy/app/BitBucketDocumentTemplatesStoreSpec.groovy +++ /dev/null @@ -1,97 +0,0 @@ -package app - -import com.github.tomakehurst.wiremock.client.WireMock - -import java.nio.file.Files -import java.nio.file.Paths -import feign.FeignException - -import static com.github.tomakehurst.wiremock.client.WireMock.* - -class BitBucketDocumentTemplatesStoreSpec extends SpecHelper { - - def setup() { - env.set("BITBUCKET_DOCUMENT_TEMPLATES_PROJECT", "myProject") - env.set("BITBUCKET_DOCUMENT_TEMPLATES_REPO", "myRepo") - env.set("BITBUCKET_URL", "http://localhost:9001") - } - - def "getTemplatesForVersion"() { - given: - def store = new BitBucketDocumentTemplatesStore() - def targetDir = Files.createTempDirectory("doc-gen-templates-") - def version = "1.0" - - mockTemplatesZipArchiveDownload(store.getZipArchiveDownloadURI(version)) - - when: - def path = store.getTemplatesForVersion(version, targetDir) - - then: - Paths.get(path.toString(), "templates").toFile().exists() - Paths.get(path.toString(), "templates", "footer.inc.html.tmpl").toFile().exists() - Paths.get(path.toString(), "templates", "header.inc.html.tmpl").toFile().exists() - Paths.get(path.toString(), "templates", "InstallationReport.html.tmpl").toFile().exists() - - cleanup: - targetDir.toFile().deleteDir() - } - - def "getTemplatesForVersionNonExistantBranch400"() { - given: - def store = new BitBucketDocumentTemplatesStore() - def targetDir = Files.createTempDirectory("doc-gen-templates-") - def version = "1.0" - - mockTemplatesZipArchiveDownload(store.getZipArchiveDownloadURI(version), 400) - - when: - store.getTemplatesForVersion(version, targetDir) - - then: - def e = thrown(RuntimeException) - e.message.contains("is there a correct release branch configured, called 'release/v${version}'") - - cleanup: - targetDir.toFile().deleteDir() - } - - def "getTemplatesForVersionNonExistantBranch401"() { - given: - def store = new BitBucketDocumentTemplatesStore() - def targetDir = Files.createTempDirectory("doc-gen-templates-") - def version = "1.0" - - mockTemplatesZipArchiveDownload(store.getZipArchiveDownloadURI(version), 401) - - when: - store.getTemplatesForVersion(version, targetDir) - - then: - def e = thrown(RuntimeException) - def bbrepo = System.getenv("BITBUCKET_DOCUMENT_TEMPLATES_REPO") - e.message.contains("In repository '${bbrepo}' - does 'Anyone' have access?") - - cleanup: - targetDir.toFile().deleteDir() - } - - def "getTemplatesForVersionNonExistantBranch500"() { - given: - def store = new BitBucketDocumentTemplatesStore() - def targetDir = Files.createTempDirectory("doc-gen-templates-") - def version = "1.0" - - mockTemplatesZipArchiveDownload(store.getZipArchiveDownloadURI(version), 500) - - when: - store.getTemplatesForVersion(version, targetDir) - - then: - def e = thrown(FeignException.InternalServerError) - - cleanup: - targetDir.toFile().deleteDir() - } - -} diff --git a/src/test/groovy/app/DocGenSpec.groovy b/src/test/groovy/app/DocGenSpec.groovy deleted file mode 100644 index c93f6d82..00000000 --- a/src/test/groovy/app/DocGenSpec.groovy +++ /dev/null @@ -1,193 +0,0 @@ -package app - - -import groovy.xml.XmlUtil -import org.apache.pdfbox.pdmodel.PDDocument -import org.apache.pdfbox.pdmodel.interactive.action.PDActionGoTo -import org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationLink -import org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageDestination -import util.DocUtils - -import java.nio.file.Files - -import static org.junit.Assert.assertEquals - -class DocGenSpec extends SpecHelper { - - def setup() { - env.set("BITBUCKET_DOCUMENT_TEMPLATES_PROJECT", "myProject") - env.set("BITBUCKET_DOCUMENT_TEMPLATES_REPO", "myRepo") - env.set("BITBUCKET_URL", "http://localhost:9001") - } - - def "Util.executeTemplate"() { - given: - def templateFile = Files.createTempFile("document", ".html.tmpl") << "{{name}}" - def result = Files.createTempFile('document', '.html') - def data = [ name: "Hello, Handlebars!" ] - - when: - DocGen.Util.executeTemplate(templateFile, result, data) - - then: - result.text == "Hello, Handlebars!" - - cleanup: - Files.delete(templateFile) - Files.delete(result) - } - - def "Util.convertHtmlToPDF"() { - given: - def documentHtmlFile = Files.createTempFile("document", ".html") << "document" - - def data = [ - name: "Project Phoenix", - metadata: [ - header: "header" - ] - ] - - when: - def result = DocGen.Util.convertHtmlToPDF(documentHtmlFile, data) - - then: - def header = DocUtils.getPDFHeader(result) - assertEquals('%PDF-1.4', header) - def is = Files.newInputStream(result) - checkResult(is) - - cleanup: - if(is!=null)is.close() - Files.delete(documentHtmlFile) - if(result!=null)Files.deleteIfExists(result) - } - - def "generate"() { - given: - def version = "1.0" - - def data = [ - name: "Project Phoenix", - metadata: [ - header: "header" - ] - ] - - mockTemplatesZipArchiveDownload( - new BitBucketDocumentTemplatesStore() - .getZipArchiveDownloadURI(version) - ) - - when: - def resultFile = new DocGen().generate("InstallationReport", version, data) - - then: - def header = DocUtils.getPDFHeader(resultFile) - assertEquals('%PDF-1.4', header) - def is = Files.newInputStream(resultFile) - checkResult(is) - - cleanup: - if(is!=null)is.close() - if(resultFile!=null)Files.deleteIfExists(resultFile) - } - - def "generateFromXunit"() { - given: - def version = "1.0" - def xunitresults = new FileNameFinder().getFileNames('src/test/resources/data', '*.xml') - def xunits = [[:]] - xunitresults.each { xunit -> - println ("--< Using file: ${xunit}") - File xunitFile = new File (xunit) - xunits << [name: xunitFile.name, path: xunitFile.path, text: XmlUtil.serialize(xunitFile.text) ] - } - - def data = [ - name: "Project Phoenix", - metadata: [ - header: "header", - ], - data : [ - testFiles : xunits - ] - ] - - println ("downloading templates") - mockTemplatesZipArchiveDownload( - new BitBucketDocumentTemplatesStore() - .getZipArchiveDownloadURI(version) - ) - - when: - println ("generating doc") - def resultFile = new DocGen().generate("DTR", version, data) - - then: - println ("asserting generated file") - def header = DocUtils.getPDFHeader(resultFile) - assertEquals('%PDF-1.4', header) - - def is = Files.newInputStream(resultFile) - checkResult(is) - - - cleanup: - if(is!=null)is.close() - if(resultFile!=null)Files.deleteIfExists(resultFile) - } - - private static void checkResult(InputStream inputStream) { - def resultDoc = PDDocument.load(inputStream) - resultDoc.withCloseable { PDDocument doc -> - doc.pages?.each { page -> - page.getAnnotations { it instanceof PDAnnotationLink } - ?.each { link -> - def dest = link.destination - if (dest == null && link.action instanceof PDActionGoTo) { - dest = link.action.destination - } - if (dest instanceof PDPageDestination) { - assert dest.page != null - } - } - } - def catalog = doc.getDocumentCatalog() - def dests = catalog.dests - dests?.COSObject?.keySet()*.name.each { name -> - def dest = dests.getDestination(name) - if (dest instanceof PDPageDestination) { - assert dest.page != null - } - } - def checkStringDest - checkStringDest = { node -> - if (node) { - node.names?.each { name, dest -> assert dest.page != null } - node.kids?.each { checkStringDest(it) } - } - } - checkStringDest(catalog.names?.dests) - def checkOutlineNode - checkOutlineNode = { node -> - node.children().each { item -> - def dest = item.destination - if (dest == null && item.action?.subType == PDActionGoTo.SUB_TYPE) { - dest = item.action.destination - } - if (dest instanceof PDPageDestination) { - assert dest.page != null - } - checkOutlineNode(item) - } - } - def outline = catalog.documentOutline - if (outline != null) { - checkOutlineNode(outline) - } - return null - } - } - -} diff --git a/src/test/groovy/app/GithubDocumentTemplatesStoreSpec.groovy b/src/test/groovy/app/GithubDocumentTemplatesStoreSpec.groovy deleted file mode 100644 index 8f08d1ed..00000000 --- a/src/test/groovy/app/GithubDocumentTemplatesStoreSpec.groovy +++ /dev/null @@ -1,140 +0,0 @@ -package app - - -import org.junit.Rule -import org.junit.contrib.java.lang.system.EnvironmentVariables - -import java.nio.file.Files -import java.nio.file.Paths - -class GithubDocumentTemplatesStoreSpec extends SpecHelper { - - @Rule - public EnvironmentVariables envVars - - def "getTemplatesForVersionMock"() { - given: - - env.set("GITHUB_HOST", "http://localhost:9001") - def store = new GithubDocumentTemplatesStore() - def targetDir = Files.createTempDirectory("doc-gen-templates-") - def version = "1.0" - - mockGithubTemplatesZipArchiveDownload(store.getZipArchiveDownloadURI(version)) - - when: - def path = store.getTemplatesForVersion(version, targetDir) - - then: - Paths.get(path.toString(), "templates").toFile().exists() - Paths.get(path.toString(), "templates", "footer.inc.html.tmpl").toFile().exists() - Paths.get(path.toString(), "templates", "header.inc.html.tmpl").toFile().exists() - Paths.get(path.toString(), "templates", "TIP.html.tmpl").toFile().exists() - - cleanup: - targetDir.toFile().deleteDir() - env.clear("GITHUB_HOST") - } - - def "verifyProxyInBuilderWPort" () { - given: - envVars.set("HTTP_PROXY", "testproxy:443") - GithubDocumentTemplatesStore store = new GithubDocumentTemplatesStore() - - when: - Map builderMap = store.createBuilder() - - then: - builderMap.size() == 2 - Proxy testProxy = ((Proxy)builderMap['proxy']) - ((InetSocketAddress)testProxy.address()).hostName == 'testproxy' - ((InetSocketAddress)testProxy.address()).port == 443 - builderMap['builder'] instanceof feign.Feign.Builder - - cleanup: - envVars.clear("HTTP_PROXY") - } - - def "verifyProxyWithProtocolInBuilderWPort" () { - given: - envVars.set("HTTP_PROXY", "http://testproxy:443") - GithubDocumentTemplatesStore store = new GithubDocumentTemplatesStore() - - when: - Map builderMap = store.createBuilder() - - then: - builderMap.size() == 2 - Proxy testProxy = ((Proxy)builderMap['proxy']) - ((InetSocketAddress)testProxy.address()).hostName == 'testproxy' - ((InetSocketAddress)testProxy.address()).port == 443 - builderMap['builder'] instanceof feign.Feign.Builder - - cleanup: - envVars.clear("HTTP_PROXY") - } - - def "verifyProxyInBuilderNoPort" () { - given: - envVars.set("HTTP_PROXY", "testproxy") - GithubDocumentTemplatesStore store = new GithubDocumentTemplatesStore() - - when: - Map builderMap = store.createBuilder() - - then: - builderMap.size() == 2 - Proxy testProxy = ((Proxy)builderMap['proxy']) - ((InetSocketAddress)testProxy.address()).hostName == 'testproxy' - ((InetSocketAddress)testProxy.address()).port == 80 - builderMap['builder'] instanceof feign.Feign.Builder - - cleanup: - envVars.clear("HTTP_PROXY") - } - - def "verifyNOProxyInBuilder" () { - given: - envVars.clear("HTTP_PROXY") - GithubDocumentTemplatesStore store = new GithubDocumentTemplatesStore() - - when: - Map builderMap = store.createBuilder() - - then: - builderMap.size() == 1 - builderMap['builder'] instanceof feign.Feign.Builder - } - - def "getTemplatesForVersion"() { - given: - - def store = new GithubDocumentTemplatesStore() - def targetDir = Files.createTempDirectory("doc-gen-templates-") - def version = "1.0" - - when: - def path = store.getTemplatesForVersion(version, targetDir) - - then: - Paths.get(path.toString(), "templates").toFile().exists() - Paths.get(path.toString(), "templates", "footer.inc.html.tmpl").toFile().exists() - Paths.get(path.toString(), "templates", "header.inc.html.tmpl").toFile().exists() - Paths.get(path.toString(), "templates", "TIP.html.tmpl").toFile().exists() - - cleanup: - targetDir.toFile().deleteDir() - } - - def "getRightUrlForVersion"() { - given: - def store = new GithubDocumentTemplatesStore() - - when: - def url = store.getZipArchiveDownloadURI("1.0") - - then: - "https://www.github.com/opendevstack/ods-document-generation-templates/archive/v1.0.zip" == (url.toString()) - } - -} diff --git a/src/test/groovy/app/SpecHelper.groovy b/src/test/groovy/app/SpecHelper.groovy deleted file mode 100644 index a9c6ff22..00000000 --- a/src/test/groovy/app/SpecHelper.groovy +++ /dev/null @@ -1,92 +0,0 @@ -package app - -import com.github.tomakehurst.wiremock.* -import com.github.tomakehurst.wiremock.client.* -import com.typesafe.config.Config -import com.typesafe.config.ConfigFactory - -import java.net.URI - -import org.jooby.Jooby -import org.junit.Rule -import org.junit.contrib.java.lang.system.EnvironmentVariables - -import spock.lang.* - -import static com.github.tomakehurst.wiremock.client.WireMock.* -import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.options - -class SpecHelper extends Specification { - @Shared App app - @Shared Config appConfig - @Shared WireMockServer wireMockServer - - @Rule - EnvironmentVariables env = new EnvironmentVariables() - - def setupSpec() { - this.app = new App() - this.app.start("server.join=false") - - this.appConfig = ConfigFactory.load() - } - - def cleanupSpec() { - this.app.stop() - } - - def cleanup() { - stopWireMockServer() - } - - // Get a test resource file by name - def File getResource(String name) { - new File(getClass().getClassLoader().getResource(name).getFile()) - } - - // Starts a WireMock server to serve the templates.zip test resource at URI - def mockTemplatesZipArchiveDownload(URI uri, int returnStatus = 200) { - def zipArchiveContent = getResource("templates.zip").readBytes() - - // Configure and start WireMock server to serve the Zip archive content at URI - startWireMockServer(uri).stubFor(WireMock.get(urlPathMatching(uri.getPath())) - .withHeader("Accept", equalTo("application/octet-stream")) - .willReturn(aResponse() - .withBody(zipArchiveContent) - .withStatus(returnStatus) - )) - } - - // Starts a WireMock server to serve the github templates.zip test resource at URI - def mockGithubTemplatesZipArchiveDownload(URI uri) { - def zipArchiveContent = getResource("github-ods-document-generation-templates-1.0.zip").readBytes() - - // Configure and start WireMock server to serve the Zip archive content at URI - startWireMockServer(uri).stubFor(WireMock.get(urlPathMatching(uri.getPath())) - .withHeader("Accept", equalTo("application/octet-stream")) - .willReturn(aResponse() - .withBody(zipArchiveContent) - .withStatus(200) - )) - } - - // Starts and configures a WireMock server - def WireMockServer startWireMockServer(URI uri) { - this.wireMockServer = new WireMockServer(options() - .port(uri.getPort()) - ) - - this.wireMockServer.start() - WireMock.configureFor(uri.getPort()) - - return this.wireMockServer - } - - // Stops a WireMock server - def void stopWireMockServer() { - if (this.wireMockServer != null) { - this.wireMockServer.stop() - this.wireMockServer = null - } - } -} \ No newline at end of file diff --git a/src/test/groovy/org/ods/doc/gen/AppSpec.groovy b/src/test/groovy/org/ods/doc/gen/AppSpec.groovy new file mode 100644 index 00000000..82aa6a36 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/AppSpec.groovy @@ -0,0 +1,34 @@ +package org.ods.doc.gen + +import io.restassured.http.ContentType +import org.springframework.boot.test.context.SpringBootTest +import org.springframework.boot.test.context.SpringBootTest.WebEnvironment +import org.springframework.boot.web.server.LocalServerPort +import org.springframework.test.annotation.DirtiesContext +import spock.lang.Specification + +import static io.restassured.RestAssured.given +import static org.hamcrest.Matchers.equalTo + +@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT) +@DirtiesContext +class AppSpec extends Specification { + + @LocalServerPort + private int port; + + def "Spring App is configured OK"() { + expect: "health check is OK" + given() + .accept(ContentType.JSON) + .contentType(ContentType.JSON) + .when() + .port(port) + .get("/health") + .then() + .log() + .all() + .statusCode(200) + .body("status", equalTo("passing")) + } +} diff --git a/src/test/groovy/org/ods/doc/gen/DocGenDockerIT.groovy b/src/test/groovy/org/ods/doc/gen/DocGenDockerIT.groovy new file mode 100644 index 00000000..c8710151 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/DocGenDockerIT.groovy @@ -0,0 +1,51 @@ +package org.ods.doc.gen + +import groovy.util.logging.Slf4j +import io.restassured.http.ContentType +import org.testcontainers.containers.GenericContainer +import org.testcontainers.containers.output.Slf4jLogConsumer +import org.testcontainers.spock.Testcontainers +import org.testcontainers.utility.DockerImageName +import spock.lang.Shared +import spock.lang.Specification + +import static io.restassured.RestAssured.given +import static org.hamcrest.Matchers.equalTo + +@Slf4j +@Testcontainers +class DocGenDockerIT extends Specification { + + static final String IMAGE_NAME = "ods-document-generation-svc:local" + static final int SERVER_PORT = 2222 + static final String ROOT__LOG__LEVEL = "ROOT_LOG_LEVEL" + static final String LOG_LEVEL = "DEBUG" + static final String SERVER_PORT_NAME = "SERVER_PORT" + + @Shared + GenericContainer docGenContainer = new GenericContainer<>(DockerImageName.parse(IMAGE_NAME)) + .withExposedPorts(SERVER_PORT) + .withEnv(ROOT__LOG__LEVEL, LOG_LEVEL) + .withEnv(SERVER_PORT_NAME, SERVER_PORT as String) + + def "docgen is running in docker"() { + given: + def port = docGenContainer.firstMappedPort + Slf4jLogConsumer logConsumer = new Slf4jLogConsumer(log) + docGenContainer.followOutput(logConsumer) + + expect: + given() + .accept(ContentType.JSON) + .contentType(ContentType.JSON) + .when() + .port(port) + .get("/health") + .then() + .log() + .all() + .statusCode(200) + .body("status", equalTo("passing")) + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/TestConfig.groovy b/src/test/groovy/org/ods/doc/gen/TestConfig.groovy new file mode 100644 index 00000000..efc1fa17 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/TestConfig.groovy @@ -0,0 +1,67 @@ +package org.ods.doc.gen + +import org.ods.doc.gen.adapters.git.BitbucketService +import org.ods.doc.gen.adapters.jira.JiraService +import org.ods.doc.gen.adapters.nexus.NexusService +import org.ods.doc.gen.leva.doc.test.doubles.BitbucketServiceMock +import org.ods.doc.gen.leva.doc.test.doubles.NexusServiceForWireMock +import org.ods.doc.gen.leva.doc.test.doubles.JiraServiceForWireMock +import org.ods.doc.gen.leva.doc.test.doubles.WkhtmltopdfDockerService +import org.ods.doc.gen.pdf.builder.services.WkhtmltopdfService +import org.springframework.boot.test.context.TestConfiguration +import org.springframework.context.annotation.Bean +import org.springframework.context.annotation.ComponentScan +import org.springframework.context.annotation.Primary +import org.springframework.context.annotation.Profile +import org.springframework.context.annotation.PropertySource + +import java.time.Clock +import java.time.Instant +import java.time.ZoneId + +@Profile("test") +@TestConfiguration +@PropertySource(value = "classpath:application.yml", factory = YamlPropertySourceFactory.class) +@ComponentScan("org.ods.doc.gen") +class TestConfig { + + public static final String WKHTML__TO__PDF__WITH__DOCKER = 'WKHTML_TO_PDF_WITH_DOCKER' + public static final String TRUE = 'true' + + @Primary + @Bean + Clock getSameInstant(){ + return Clock.fixed(Instant.parse("2022-01-21T10:15:30.00Z"), ZoneId.of("UTC")); + } + + @Primary + @Bean + JiraService getJiraService(JiraServiceForWireMock jiraServiceForWireMock){ + jiraServiceForWireMock.setBaseURL(jiraServiceForWireMock.baseURL) + return jiraServiceForWireMock + } + + @Primary + @Bean + BitbucketService getBitbucketService(BitbucketServiceMock bitbucketServiceMock){ + return bitbucketServiceMock + } + + @Primary + @Bean + NexusService getNexusService(NexusServiceForWireMock nexusServiceForWireMock){ + return nexusServiceForWireMock + } + + @Primary + @Bean + WkhtmltopdfService getWkhtmltopdfService(WkhtmltopdfDockerService wkhtmltopdfDockerService, + WkhtmltopdfService wkhtmltopdfService) { + String wk = System.getenv(WKHTML__TO__PDF__WITH__DOCKER) ?: TRUE + if ( TRUE == wk) { + return wkhtmltopdfDockerService + } + return wkhtmltopdfService + } + +} \ No newline at end of file diff --git a/src/test/groovy/org/ods/doc/gen/YamlPropertySourceFactory.groovy b/src/test/groovy/org/ods/doc/gen/YamlPropertySourceFactory.groovy new file mode 100644 index 00000000..babc8e58 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/YamlPropertySourceFactory.groovy @@ -0,0 +1,20 @@ +package org.ods.doc.gen + +import org.springframework.beans.factory.config.YamlPropertiesFactoryBean +import org.springframework.core.env.PropertiesPropertySource +import org.springframework.core.env.PropertySource +import org.springframework.core.io.support.EncodedResource +import org.springframework.core.io.support.PropertySourceFactory + +class YamlPropertySourceFactory implements PropertySourceFactory { + + @Override + PropertySource createPropertySource(String name, EncodedResource encodedResource) + throws IOException { + YamlPropertiesFactoryBean factory = new YamlPropertiesFactoryBean(); + factory.setResources(encodedResource.getResource()); + Properties properties = factory.getObject(); + return new PropertiesPropertySource(encodedResource.getResource().getFilename(), properties); + } + +} \ No newline at end of file diff --git a/src/test/groovy/org/ods/doc/gen/adapters/git/BitbucketServiceSpec.groovy b/src/test/groovy/org/ods/doc/gen/adapters/git/BitbucketServiceSpec.groovy new file mode 100644 index 00000000..28d33b75 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/adapters/git/BitbucketServiceSpec.groovy @@ -0,0 +1,13 @@ +package org.ods.doc.gen.adapters.git + +import spock.lang.Specification + +class BitbucketServiceSpec extends Specification { + + /** Examples for version parameter: + * version = refs/heads/release/{hash} + * version = refs/tags/CHG0066328 + * version = refs/heads/master + */ + +} diff --git a/src/test/groovy/org/ods/doc/gen/adapters/nexus/NexusServiceSpec.groovy b/src/test/groovy/org/ods/doc/gen/adapters/nexus/NexusServiceSpec.groovy new file mode 100644 index 00000000..1b431593 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/adapters/nexus/NexusServiceSpec.groovy @@ -0,0 +1,268 @@ +package org.ods.doc.gen.adapters.nexus + +import com.github.tomakehurst.wiremock.client.WireMock +import org.apache.commons.io.FileUtils +import org.apache.http.client.utils.URIBuilder +import org.ods.doc.gen.core.test.SpecHelper +import spock.lang.TempDir + +import java.nio.file.Path +import java.nio.file.Paths + +class NexusServiceSpec extends SpecHelper { + + @TempDir + File tempFolder + + def "create with invalid baseURL"() { + when: + new NexusService(null, "username", "password") + + then: + def e = thrown(IllegalArgumentException) + e.message == "Error: unable to connect to Nexus. 'baseURL' is undefined." + + when: + new NexusService(" ", "username", "password") + + then: + e = thrown(IllegalArgumentException) + e.message == "Error: unable to connect to Nexus. 'baseURL' is undefined." + + when: + new NexusService("invalid URL", "username", "password") + + then: + e = thrown(IllegalArgumentException) + e.message == "Error: unable to connect to Nexus. 'invalid URL' is not a valid URI." + } + + def "create with invalid username"() { + when: + new NexusService("http://localhost", null, "password") + + then: + def e = thrown(IllegalArgumentException) + e.message == "Error: unable to connect to Nexus. 'username' is undefined." + + when: + new NexusService("http://localhost", " ", "password") + + then: + e = thrown(IllegalArgumentException) + e.message == "Error: unable to connect to Nexus. 'username' is undefined." + } + + def "create with invalid password"() { + when: + new NexusService("http://localhost", "username", null) + + then: + def e = thrown(IllegalArgumentException) + e.message == "Error: unable to connect to Nexus. 'password' is undefined." + + when: + new NexusService("http://localhost", "username", " ") + + then: + e = thrown(IllegalArgumentException) + e.message == "Error: unable to connect to Nexus. 'password' is undefined." + } + + def "store artifact"() { + given: + def request = storeArtifactRequestData() + def response = storeArtifactResponseData() + + def server = createServer(WireMock.&post, request, response) + def service = createService(server.port(), request.username, request.password) + + when: + def result = storeArtifact(service, request) + + then: + result == new URIBuilder("http://localhost:${server.port()}/repository/${request.data.repository}/${request.data.directory}/${request.data.name}").build() + + cleanup: + stopServer(server) + } + + def "store artifact with HTTP 404 failure"() { + given: + def request = storeArtifactRequestData() + def response = storeArtifactResponseData([ + status: 404 + ]) + + def server = createServer(WireMock.&post, request, response) + def service = createService(server.port(), request.username, request.password) + + when: + storeArtifact(service, request) + + then: + def e = thrown(RuntimeException) + e.message.startsWith("Error: unable to store artifact. Nexus could not be found at:") + + cleanup: + stopServer(server) + } + + def "store artifact with HTTP 500 failure"() { + given: + def request = storeArtifactRequestData() + def response = storeArtifactResponseData([ + body: "Sorry, doesn't work!", + status: 500 + ]) + + def server = createServer(WireMock.&post, request, response) + def service = createService(server.port(), request.username, request.password) + + when: + storeArtifact(service, request) + + then: + def e = thrown(RuntimeException) + e.message.startsWith("Error: unable to store artifact at") + e.message.endsWith("Nexus responded with code: '${response.status}' and message: 'Sorry, doesn\'t work!'.") + + cleanup: + stopServer(server) + } + + def "retrieve artifact with HTTP 404 failure"() { + given: + def request = getArtifactRequestData() + def response = storeArtifactResponseData([ + status: 404 + ]) + + def server = createServer(WireMock.&get, request, response) + def service = createService(server.port(), request.username, request.password) + + when: + service.retrieveArtifact(request.data.repository, request.data.directory, request.data.name, "abc") + + then: + def e = thrown(RuntimeException) + e.message == "Error: unable to get artifact. Nexus could not be found at: 'http://localhost:${server.port()}${request.path}'." + + cleanup: + stopServer(server) + } + + def "retrieve artifact working"() { + given: + def request = getArtifactRequestData() + def response = storeArtifactResponseData([ + status: 200 + ]) + + def server = createServer(WireMock.&get, request, response) + def service = createService(server.port(), request.username, request.password) + + when: + Map result = service.retrieveArtifact(request.data.repository, request.data.directory, request.data.name, "abc") + + then: + result.uri == new URI("http://localhost:${server.port()}${request.path}") + + cleanup: + stopServer(server) + } + + def "Tests downloadAndExtractZip"() { + given: "An url" + def request = getArtifactRequestData() + def response = storeArtifactResponseData([ + status: 200, + body: getExampleFileBytes(), + ]) + + def server = createServer(WireMock.&get, request, response) + def service = createService(server.port(), request.username, request.password) + + + String url = "/repository/" + request.data.repository + "/" + request.data.directory + "/" + request.data.name + + when: "execute" + + service.downloadAndExtractZip(url, tempFolder.absolutePath) + + then: "downloads and unzips" + Paths.get(tempFolder.absolutePath, "LICENSE").toFile().exists() + } + + def getArtifact(){ + Path artifact = Paths.get(tempFolder.absolutePath, "artifact") + FileUtils.writeByteArrayToFile(artifact.toFile(), [0] as byte[]) + return artifact.toString() + } + + byte[] getExampleFileBytes() { + return Paths.get("src/test/resources/nexus/LICENSE.zip").toFile().getBytes() + } + + Map storeArtifactRequestData(Map mixins = [:]) { + def result = [ + data: [ + artifact: [0] as byte[], + contentType: "application/octet-stream", + directory: "myDirectory", + name: "myName", + repository: NexusService.NEXUS_REPOSITORY, + ], + password: "password", + path: "/service/rest/v1/components", + username: "username" + ] + + result.multipartRequestBody = [ + "raw.directory": result.data.directory, + "raw.asset1": result.data.artifact, + "raw.asset1.filename": result.data.name + ] + + result.queryParams = [ + "repository": result.data.repository + ] + + return result << mixins + } + + Map getArtifactRequestData(Map mixins = [:]) { + def result = [ + data: [ + directory: "myDirectory", + name: "myName", + repository: "myRepository", + ], + password: "password", + path: "/repository/myRepository/myDirectory/myName", + username: "username" + ] + return result << mixins + } + + Map storeArtifactResponseData(Map mixins = [:]) { + def result = [ + status: 204 + ] + + return result << mixins + } + + NexusService createService(int port, String username, String password) { + return new NexusService("http://localhost:${port}", username, password) + } + + private URI storeArtifact(NexusService service, Map request) { + service.storeArtifact( + request.data.directory, + request.data.name, + getArtifact(), + request.data.contentType) + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/adapters/xunit/JUnitReportsServiceSpec.groovy b/src/test/groovy/org/ods/doc/gen/adapters/xunit/JUnitReportsServiceSpec.groovy new file mode 100644 index 00000000..cff80771 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/adapters/xunit/JUnitReportsServiceSpec.groovy @@ -0,0 +1,123 @@ +package org.ods.doc.gen.adapters.xunit + +import org.junit.Rule +import org.junit.rules.TemporaryFolder +import org.ods.doc.gen.core.FileSystemHelper +import org.ods.doc.gen.leva.doc.services.xunit.JUnitReportsService +import org.ods.doc.gen.leva.doc.services.xunit.parser.JUnitParser +import spock.lang.Specification + +import java.nio.file.Files + +import static org.ods.doc.gen.core.test.fixture.FixtureHelper.createJUnitXMLTestResults + +class JUnitReportsServiceSpec extends Specification { + + org.ods.doc.gen.adapters.nexus.NexusService nexusService + JUnitReportsService service + + @Rule + TemporaryFolder temporaryFolder + + def setup() { + nexusService = Mock(org.ods.doc.gen.adapters.nexus.NexusService) + service = new JUnitReportsService(nexusService, new FileSystemHelper()) + } + + def "combine test results"() { + given: + def testResult1 = [ + testsuites: [ + [ + testcases: [ + [ a: 1 ] + ] + ] + ] + ] + + def testResult2 = [ + testsuites: [ + [ + testcases: [ + [ b: 2 ] + ] + ] + ] + ] + + def testResult3 = [ + testsuites: [ + [ + testcases: [ + [ c: 3 ] + ] + ] + ] + ] + + when: + def result = service.combineTestResults([testResult1, testResult2, testResult3 ]) + + then: + result == [ + testsuites: [ + [ + testcases: [ + [ a: 1 ] + ] + ], + [ + testcases: [ + [ b: 2 ] + ] + ], + [ + testcases: [ + [ c: 3 ] + ] + ] + ] + ] + } + + def "get number of test cases"() { + given: + def testResults = [ + testsuites: [ + [ + testcases: [ + [ a: 1 ], [ b: 2 ], [ c: 3 ] + ] + ] + ] + ] + + when: + def result = service.getNumberOfTestCases(testResults) + + then: + result == 3 + } + + def "parse test report files"() { + given: + def xmlFiles = Files.createTempDirectory("junit-test-reports-") + def xmlFile = Files.createTempFile(xmlFiles, "junit", ".xml").toFile() + xmlFile << "\n" + createJUnitXMLTestResults() + + when: + def result = service.parseTestReportFiles([xmlFile]) + + then: + def expected = [ + testsuites: JUnitParser.parseJUnitXML(xmlFile.text).testsuites + ] + + result == expected + + cleanup: + xmlFiles.deleteDir() + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/adapters/xunit/parser/JUnitParserSpec.groovy b/src/test/groovy/org/ods/doc/gen/adapters/xunit/parser/JUnitParserSpec.groovy new file mode 100644 index 00000000..22c102a1 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/adapters/xunit/parser/JUnitParserSpec.groovy @@ -0,0 +1,478 @@ +package org.ods.doc.gen.adapters.xunit.parser + +import groovy.json.JsonBuilder +import org.ods.doc.gen.core.test.SpecHelper +import org.ods.doc.gen.leva.doc.services.xunit.parser.JUnitParser + +import static org.ods.doc.gen.core.test.fixture.FixtureHelper.createTestResults + +class JUnitParserSpec extends SpecHelper { + + def "invalid root"() { + when: + JUnitParser.parseJUnitXML(xmlString) + + then: + thrown IllegalArgumentException + + where: + xmlString << [ null, "", "" ] + } + + def "properties"() { + when: + def result = JUnitParser.parseJUnitXML(xmlString) + + then: + result == expected + + where: + xmlString << [ + """ + + + + + + + + """ + ] + + expected << [ + [ + testsuites: [ + [ + name: "my-suite", + tests: "0", + properties: [ + [ name: "my-property-a", value: "my-property-a-value" ], + [ name: "my-property-b", value: "my-property-b-value" ], + [ name: "my-property-c", value: "my-property-c-value" ] + ], + testcases: [], + systemOut: "", + systemErr: "" + ] + ] + ] + ] + } + + def "testcase without name attribute"() { + given: + def xmlString = """ + + + + """ + + when: + JUnitParser.parseJUnitXML(xmlString) + + then: + thrown IllegalArgumentException + } + + def "testcase"() { + when: + def result = JUnitParser.parseJUnitXML(xmlString) + + then: + result == expected + + where: + xmlString << [ + """ + + + + """, + """ + + + This is an error. + + + """, + """ + + + This is a failure. + + + """, + """ + + + + + + """, + """ + + + my-testcase-stdout + my-testcase-stderr + + + """ + ] + + expected << [ + [ + testsuites: [ + [ + name: "my-suite", + tests: "0", + properties: [], + testcases: [ + [ + name: "my-testcase", + skipped: false, + systemOut: "", + systemErr: "" + ] + ], + systemOut: "", + systemErr: "" + ] + ] + ], + [ + testsuites: [ + [ + name: "my-suite", + tests: "0", + properties: [], + testcases: [ + [ + name: "my-testcase", + error: [ + type: "my-error-type", + message: "my-error-message", + text: "This is an error." + ], + skipped: false, + systemOut: "", + systemErr: "" + ] + ], + systemOut: "", + systemErr: "" + ] + ] + ], + [ + testsuites: [ + [ + name: "my-suite", + tests: "0", + properties: [], + testcases: [ + [ + name: "my-testcase", + failure: [ + type: "my-failure-type", + message: "my-failure-message", + text: "This is a failure." + ], + skipped: false, + systemOut: "", + systemErr: "" + ] + ], + systemOut: "", + systemErr: "" + ] + ] + ], + [ + testsuites: [ + [ + name: "my-suite", + tests: "0", + properties: [], + testcases: [ + [ + name: "my-testcase", + skipped: true, + systemOut: "", + systemErr: "" + ] + ], + systemOut: "", + systemErr: "" + ] + ] + ], + [ + testsuites: [ + [ + name: "my-suite", + tests: "0", + properties: [], + testcases: [ + [ + name: "my-testcase", + skipped: false, + systemOut: "my-testcase-stdout", + systemErr: "my-testcase-stderr" + ] + ], + systemOut: "", + systemErr: "" + ] + ] + ] + ] + } + + def "testsuite without name attribute"() { + given: + def xmlString = "" + + when: + JUnitParser.parseJUnitXML(xmlString) + + then: + thrown IllegalArgumentException + } + + def "testsuite without tests attribute"() { + given: + def xmlString = '' + + when: + JUnitParser.parseJUnitXML(xmlString) + + then: + def e = thrown IllegalArgumentException + e.message == "Error: unable to parse JUnit XML element. Required attribute 'tests' is missing." + } + + def "testsuite"() { + when: + def result = JUnitParser.parseJUnitXML(xmlString) + + then: + result == expected + + where: + xmlString << [ + '', + """ + + + + """, + ] + + expected << [ + [ + testsuites: [ + [ + name: "my-suite", + tests: "0", + failures: "0", + errors: "0", + skipped: "0", + properties: [], + testcases: [], + systemOut: "", + systemErr: "", + timestamp: "2000-01-01T00:00:00" + ] + ] + ], + [ + testsuites: [ + [ + name: "my-suite", + tests: "0", + properties: [], + testcases: [ + [ + name: "my-testcase", + skipped: false, + systemOut: "", + systemErr: "" + ] + ], + systemOut: "", + systemErr: "" + ] + ] + ] + ] + } + + def "testsuites"() { + when: + def result = JUnitParser.parseJUnitXML(xmlString) + + then: + result == expected + + where: + xmlString << [ + "", + '', + """ + + + + """, + """ + + + + + + """, + ] + + expected << [ + [ + testsuites: [] + ], + [ + name: "my-suites", + tests: "0", + failures: "0", + errors: "0", + skipped: "0", + testsuites: [] + ], + [ + name: "my-suites", + testsuites: [ + [ + name: "my-suite", + tests: "0", + properties: [], + testcases: [], + systemOut: "", + systemErr: "" + ] + ] + ], + [ + name: "my-suites", + testsuites: [ + [ + name: "my-suite", + tests: "0", + properties: [], + testcases: [ + [ + name: "my-testcase", + skipped: false, + systemOut: "", + systemErr: "" + ] + ], + systemOut: "", + systemErr: "" + ] + ] + ] + ] + } + + def "Helper.toJSONString"() { + given: + def xml = JUnitParser.parseJUnitXML( + """ + + + + + + """ + ) + + when: + def result = JUnitParser.Helper.toJSONString(xml) + + then: + def expected = new JsonBuilder([ + name: "my-suites", + testsuites: [ + [ + tests: "0", + name: "my-suite", + properties: [], + testcases: [ + [ + name: "my-testcase", + skipped: false, + systemOut: "", + systemErr: "" + ] + ], + systemOut: "", + systemErr: "" + ] + ] + ]).toPrettyString() + + result == expected + } + + def "Helper.getErrors"() { + given: + def xml = createTestResults() + + when: + def result = JUnitParser.Helper.getErrors(xml) + + then: + def expected = [ + [ + type: "my-error-type", + message: "my-error-message", + text: "This is an error.", + testsuites: [ + [ + name: "my-suite-1", + testcases: [ + [ + name: "JIRA2_my-testcase-2" + ] + ] + ] + ] + ] + ] + + result == expected as Set + } + + def "Helper.getFailures"() { + given: + def xml = createTestResults() + + when: + def result = JUnitParser.Helper.getFailures(xml) + + then: + def expected = [ + [ + type: "my-failure-type", + message: "my-failure-message", + text: "This is a failure.", + testsuites: [ + [ + name: "my-suite-2", + testcases: [ + [ name: "JIRA3_my-testcase-3" ] + ] + ] + ] + ] + ] + + result == expected as Set + } +} diff --git a/src/test/groovy/org/ods/doc/gen/core/SortUtilSpec.groovy b/src/test/groovy/org/ods/doc/gen/core/SortUtilSpec.groovy new file mode 100644 index 00000000..12cd22c6 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/core/SortUtilSpec.groovy @@ -0,0 +1,56 @@ +package org.ods.doc.gen.core + +import org.ods.doc.gen.core.SortUtil +import org.ods.doc.gen.core.test.SpecHelper + +class SortUtilSpec extends SpecHelper { + + def "sort issues by properties"() { + expect: + SortUtil.sortIssuesByProperties(issues, properties) == result + + where: + issues | properties || result + [ [ name: "A" ], [ name: "B" ] ] | ["name"] || [ [ name: "A" ], [ name: "B" ] ] + [ [ name: "B" ], [ name: "A" ] ] | ["name"] || [ [ name: "A" ], [ name: "B" ] ] + + [ [ key: "1", name: "A" ], [ key: "2", name: "B" ] ] | ["key", "name"] || [ [ key: "1", name: "A" ], [ key: "2", name: "B" ] ] + [ [ key: "2", name: "B" ], [ key: "1", name: "A" ] ] | ["key", "name"] || [ [ key: "1", name: "A" ], [ key: "2", name: "B" ] ] + } + + def "sort issues by numeric part of jira keys"() { + expect: + SortUtil.sortIssuesByProperties(issues, properties) == findResult + + where: + issues | properties || findResult + [ [ key: "KEY-1" ], [ key: "KEY-2" ], [ key: "KEY-12"] ] | ["key"] || [ [ key: "KEY-1" ], [ key: "KEY-2" ], [ key: "KEY-12" ] ] + [ [ key: "KEY-12"], [ key: "KEY-2" ], [ key: "KEY-1" ] ] | ["key"] || [ [ key: "KEY-1" ], [ key: "KEY-2" ], [ key: "KEY-12" ] ] + + [ [ key: "KEY-1", key_2: "KEY-2" ], [ key: "KEY-1", key_2: "KEY-1" ] ] | ["key", "key_2"] || [ [ key: "KEY-1", key_2: "KEY-1" ], [ key: "KEY-1", key_2: "KEY-2" ] ] + [ [ key: "KEY-2", key_2: "KEY-2" ], [ key: "KEY-1", key_2: "KEY-20" ] ] | ["key", "key_2"] || [ [ key: "KEY-1", key_2: "KEY-20" ], [ key: "KEY-2", key_2: "KEY-2" ] ] + } + + def "sort issues by key"() { + expect: + SortUtil.sortIssuesByKey(issues) == findResult + + where: + issues || findResult + [ [ key: "KEY-1" ], [ key: "KEY-2" ], [ key: "KEY-12"] ] || [ [ key: "KEY-1" ], [ key: "KEY-2" ], [ key: "KEY-12" ] ] + [ [ key: "KEY-12"], [ key: "KEY-2" ], [ key: "KEY-1" ] ] || [ [ key: "KEY-1" ], [ key: "KEY-2" ], [ key: "KEY-12" ] ] + } + + def "sort list of issue keys by numeric part of jira keys"() { + expect: + SortUtil.sortHeadingNumbers(issues, properties) == findResult + + where: + issues | properties || findResult + [ [ key: "1.1" ], [ key: "2.3.2" ], [ key: "11"] ] | "key" || [ [ key: "1.1" ], [ key: "2.3.2" ], [ key: "11" ] ] + [ [ key: "11"], [ key: "2.3.2" ], [ key: "1.1" ] ] | "key" || [ [ key: "1.1" ], [ key: "2.3.2" ], [ key: "11" ] ] + [ [ key: "2.4"], [ key: "2.3.2" ], [ key: "2.3.1" ] ] | "key" || [ [ key: "2.3.1" ], [ key: "2.3.2" ], [ key: "2.4" ] ] + + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/core/StringCleanupSpec.groovy b/src/test/groovy/org/ods/doc/gen/core/StringCleanupSpec.groovy new file mode 100644 index 00000000..e4aec433 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/core/StringCleanupSpec.groovy @@ -0,0 +1,20 @@ +package org.ods.doc.gen.core + +import spock.lang.Specification + +class StringCleanupSpec extends Specification { + + def "Remove nonbreakable white space"() { + given: 'String with nonbreakable white space' + def inputString = '\u00A0This\u00A0string\u00A0has\u00A0wrong\u00A0spaces\u00A0' + def CHARACTER_REMOVEABLE = [ + '\u00A0': ' ', + ] + + when: 'We remove the characters' + def outputString = StringCleanup.removeCharacters(inputString, CHARACTER_REMOVEABLE) + + then: 'The characters were removed' + outputString == ' This string has wrong spaces ' + } +} diff --git a/src/test/groovy/org/ods/doc/gen/core/test/SpecHelper.groovy b/src/test/groovy/org/ods/doc/gen/core/test/SpecHelper.groovy new file mode 100644 index 00000000..518c8196 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/core/test/SpecHelper.groovy @@ -0,0 +1,92 @@ +package org.ods.doc.gen.core.test + + +import com.github.tomakehurst.wiremock.WireMockServer +import com.github.tomakehurst.wiremock.client.WireMock +import com.github.tomakehurst.wiremock.core.WireMockConfiguration +import org.junit.contrib.java.lang.system.EnvironmentVariables +import spock.lang.Specification + +class SpecHelper extends Specification { + + EnvironmentVariables env = new EnvironmentVariables() + + WireMockServer createServer(def b, Map request, Map response) { + def server = startWireMockServer() + + def builder = b(WireMock.urlPathMatching(request.path)) + + // Request + if (request.username && request.password) { + builder.withBasicAuth(request.username, request.password) + } + + request.queryParams.each { name, value -> + builder.withQueryParam(name, WireMock.equalTo(value)) + } + + request.headers.each { name, value -> + builder.withHeader(name, WireMock.equalTo(value)) + } + + if (request.multipartRequestBody) { + request.multipartRequestBody.each { name, value -> + def multipart = WireMock.aMultipart().withName(name) + + def matcher = WireMock.&equalTo + // Check if the body is of type byte array so we can apply an appropriate matcher + if (value.getClass().isArray() && value.getClass().getComponentType().getTypeName() == "byte") { + matcher = WireMock.&binaryEqualTo + } + + multipart.withBody(matcher(value)) + builder.withMultipartRequestBody(multipart) + } + } else if (request.body) { + builder.withRequestBody(WireMock.equalTo(request.body)) + } + + // Response Mapping + def responseBuilder = WireMock.aResponse() + + response.headers.each { name, value -> + responseBuilder.withHeader(name, value) + } + + if (response.body) { + responseBuilder.withBody(response.body) + } + + if (response.status) { + responseBuilder.withStatus(response.status) + } + + builder.willReturn(responseBuilder) + server.stubFor(builder) + + return server + } + + String decodeBase64(String value) { + return new String(value.decodeBase64()) + } + + String encodeBase64(byte[] bytes) { + return bytes.encodeBase64().toString() + } + + WireMockServer startWireMockServer() { + def server = new WireMockServer( + WireMockConfiguration.options().dynamicPort() + ) + + server.start() + WireMock.configureFor(server.port()) + + return server + } + + void stopServer(WireMockServer server) { + server.stop() + } +} diff --git a/src/test/groovy/org/ods/doc/gen/core/test/fixture/FixtureHelper.groovy b/src/test/groovy/org/ods/doc/gen/core/test/fixture/FixtureHelper.groovy new file mode 100644 index 00000000..b12b919f --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/core/test/fixture/FixtureHelper.groovy @@ -0,0 +1,872 @@ +package org.ods.doc.gen.core.test.fixture + +import groovy.json.JsonSlurperClassic +import groovy.transform.InheritConstructors +import org.apache.http.client.utils.URIBuilder +import org.junit.contrib.java.lang.system.EnvironmentVariables +import org.ods.doc.gen.leva.doc.services.xunit.parser.JUnitParser +import org.ods.doc.gen.project.data.Project +import org.ods.doc.gen.project.data.ProjectData +import org.yaml.snakeyaml.Yaml + +@InheritConstructors +class FakeProject extends ProjectData { + + protected static String METADATA_FILE_NAME = new FixtureHelper().getResource("/project-metadata.yml").getAbsolutePath() + + @Override + ProjectData init(Map params) { + this.data.build = this.loadBuildParams(steps) + this.data.metadata = this.loadMetadata(METADATA_FILE_NAME) + + this.data.metadata.repositories.each { repo -> + repo.metadata = [ + name : "Sock Shop: ${repo.id}", + description: "Some description for ${repo.id}", + supplier : "https://github.com/microservices-demo/", + version : "1.0" + ] + } + + return this + } + + ProjectData load() { + this.git = git + + this.data.git = [ commit: git.getCommitSha(), url: git.getOriginUrl() ] + this.data.jira = this.loadJiraData(this.jiraProjectKey) + this.data.jira.project.version = this.loadCurrentVersionDataFromJira() + this.data.jira.bugs = this.loadJiraDataBugs(this.data.jira.tests) + this.data.jira = this.convertJiraDataToJiraDataItems(this.data.jira) + this.data.jiraResolved = this.resolveJiraDataItemReferences(this.data.jira) + + this.data.jira.trackingDocs = this.loadJiraDataTrackingDocs() + this.data.jira.issueTypes = this.loadJiraDataIssueTypes() + + this.data.jira.undone = this.computeWipJiraIssues(this.data.jira) + this.data.jira.undone.docChapters = [:] + this.data.jira[Project.JiraDataItem.TYPE_DOCS] = this.loadDocs() + + this.data.documents = [:] + this.data.openshift = [:] + + return this + } + + static List getBuildEnvironment(boolean debug) { + def env = new EnvironmentVariables() + return FixtureHelper.createProjectBuildEnvironment(env) + } + + protected URI getGitURLFromPath(String path, String remote) { + def url = "https://github.com/my-org/my-repo-A.git" + return new URIBuilder(url).build() + } + + static Map loadBuildParams() { + return FixtureHelper.createProjectBuildParams() + } + + protected Map loadJiraData(String projectKey) { + return FixtureHelper.createProjectJiraData() + } + + protected Map loadCurrentVersionDataFromJira() { + return [ + "id" : "11100", + "name": "0.3" + ] + } + + protected Map loadJiraDataBugs(Map tests) { + def bugs = FixtureHelper.createProjectJiraDataBugs() + + // Add relations from tests to bug + bugs.each { key, bug -> + bug.tests.each { testKey -> + if (!tests[testKey].bugs) { + tests[testKey].bugs = [] + } + + tests[testKey].bugs << bug.key + } + } + + return bugs + } + + protected Map loadJiraDataTrackingDocs() { + return FixtureHelper.createProjectJiraDataDocs() + } + + protected Map loadJiraDataIssueTypes() { + return FixtureHelper.createProjectJiraDataIssueTypes() + } + + void setRepositories(List repos) { + this.data.metadata.repositories = repos + } + + Map loadDocs() { + return ["doc1": [ + "key": "DOC-1", + "version": "1.0", + "name": "name", + "number": "1", + "documents":["SSDS"], + "section": "sec1", + "content": "myContent" + ]] + } + +} + +class FixtureHelper { + static Project createProject() { + def steps = [:] + steps['env'] = [:] + steps.env['WORKSPACE'] = "" + + return new FakeProject() + .init(steps) + .load() + } + + static Map createProjectBuildEnvironment(def env) { + def params = createProjectBuildParams() + params.each { key, value -> + env.set(key, value) + } + + return params + } + + static Map createProjectBuildParams() { + return [ + changeDescription : "The change I've wanted.", + changeId : "0815", + configItem : "myItem", + targetEnvironment : "dev", + targetEnvironmentToken : "D", + version : "0.1" + ] + } + + static Map createProjectJiraData() { + def file = new FixtureHelper().getResource("project-jira-data.json") + return new JsonSlurperClassic().parse(file) + } + + static Map createProjectJiraDataBugs() { + return [:] + /* + return [ + "NET-301": [ + "key": "NET-301", + "name": "org.spockframework.runtime. ConditionFailedWithExceptionError", + "assignee": "Unassigned", + "dueDate": "", + "status": "TO DO", + "tests": [] + ] + ] + */ + } + + static Map createProjectJiraDataDocs() { + return [ + "NET-1072": [ + "key" : "NET-1072", + "name" : "Test Case Report", + "description": "TCR", + "status" : "DONE", + "labels" : [ + "Doc:TCR" + ] + ], + "NET-1071": [ + "key" : "NET-1071", + "name" : "Test Case Plan", + "description": "TCP", + "status" : "DONE", + "labels" : [ + "Doc:TCP" + ] + ], + "NET-1066": [ + "key" : "NET-1066", + "name" : "Discrepancy Log for P", + "description": "C-DIL for P", + "status" : "DONE", + "labels" : [ + "Doc:DIL_P" + ] + ], + "NET-1064": [ + "key" : "NET-1064", + "name" : "Discrepancy Log for Q", + "description": "C-DIL for Q", + "status" : "DONE", + "labels" : [ + "Doc:DIL_Q" + ] + ], + "NET-1142": [ + "key": "NET-1142", + "name": "Discrepancy Log for D", + "description": "C-DIL for D", + "status": "DONE", + "labels": [ + "Doc:DIL" + ] + ], + "NET-1013": [ + "key" : "NET-1013", + "name" : "Combined Specification Document URS FS CS", + "description": "C-CSD", + "status" : "DONE", + "labels" : [ + "Doc:CSD" + ] + ], + "NET-938" : [ + "key" : "NET-938", + "name" : "Traceability Matrix", + "description": "TC-CTR", + "status" : "DONE", + "labels" : [ + "Doc:TRC" + ] + ], + "NET-937" : [ + "key" : "NET-937", + "name" : "System and Software Design Specification including Source Code Review Report", + "description": "C-SSDS", + "status" : "DONE", + "labels" : [ + "Doc:SSDS" + ] + ], + "NET-494" : [ + "key" : "NET-494", + "name" : "Configuration and Installation Testing Report for Dev", + "description": "C-IVR for DEV", + "status" : "DONE", + "labels" : [ + "Doc:IVR" + ] + ], + "NET-433" : [ + "key" : "NET-433", + "name" : "Test Case Report_Manual", + "description": "TC-CTR_M", + "status" : "DONE", + "labels" : [ + "Doc:TC_CTR_M" + ] + ], + "NET-428" : [ + "key" : "NET-428", + "name" : "Functional / Requirements Testing Report_Manual", + "description": "C-FTR_M", + "status" : "DONE", + "labels" : [ + "Doc:FTR_M" + ] + ], + "NET-427" : [ + "key" : "NET-427", + "name" : "Test Case Report", + "description": "TC-CTR", + "status" : "DONE", + "labels" : [ + "Doc:TC_CTR" + ] + ], + "NET-1133": [ + "key": "NET-1133", + "name": "Test Case Plan for P", + "description": "TCP_P", + "status": "DONE", + "labels": [ + "Doc:TCP_P" + ] + ], + "NET-1132": [ + "key": "NET-1132", + "name": "Test Case Plan for Q", + "description": "TCP_Q", + "status": "DONE", + "labels": [ + "Doc:TCP_Q" + ] + ], + "NET-416" : [ + "key" : "NET-416", + "name" : "Configuration and Installation Testing Plan for DEV", + "description": "C-IVP for Dev", + "status" : "DONE", + "labels" : [ + "Doc:IVP" + ] + ], + "NET-318" : [ + "key" : "NET-318", + "name" : "Technical Installation Plan", + "description": "C-TIP", + "status" : "DONE", + "labels" : [ + "Doc:TIP" + ] + ], + "NET-317" : [ + "key" : "NET-317", + "name" : "Technical Installation Report", + "description": "C-TIR", + "status" : "DONE", + "labels" : [ + "Doc:TIR" + ] + ], + "NET-24" : [ + "key" : "NET-24", + "name" : "Validation Summary Report", + "description": "C-VSR", + "status" : "DONE", + "labels" : [ + "Doc:VSR" + ] + ], + "NET-23" : [ + "key" : "NET-23", + "name" : "Configuration and Installation Testing Report for P", + "description": "C-IVR for P", + "status" : "DONE", + "labels" : [ + "Doc:IVR_P" + ] + ], + "NET-22" : [ + "key" : "NET-22", + "name" : "Technical Installation Report for P", + "description": "C-TIR for P", + "status" : "DONE", + "labels" : [ + "Doc:TIR_P" + ] + ], + "NET-21" : [ + "key" : "NET-21", + "name" : "Configuration and Installation Testing Plan for P", + "description": "C-IVP for P", + "status" : "DONE", + "labels" : [ + "Doc:IVP_P" + ] + ], + "NET-20" : [ + "key" : "NET-20", + "name" : "Technical Installation Plan for P", + "description": "C-TIP for P", + "status" : "DONE", + "labels" : [ + "Doc:TIP_P" + ] + ], + "NET-19" : [ + "key" : "NET-19", + "name" : "Combined Integration / Acceptance Testing Report", + "description": "C-CFTR", + "status" : "DONE", + "labels" : [ + "Doc:CFTR" + ] + ], + "NET-18" : [ + "key" : "NET-18", + "name" : "Test Cases", + "description": "C-TC", + "status" : "DONE", + "labels" : [ + "Doc:TC" + ] + ], + "NET-17" : [ + "key" : "NET-17", + "name" : "Combined Integration / Acceptance Testing Plan", + "description": "C-CFTP", + "status" : "DONE", + "labels" : [ + "Doc:CFTP" + ] + ], + "NET-1129": [ + "key": "NET-1129", + "name": "Combined Integration / Acceptance Testing Plan for P", + "description": "C-CFTP_P", + "status": "DONE", + "labels": [ + "Doc:CFTP_P" + ] + ], + "NET-1128": [ + "key": "NET-1128", + "name": "Combined Integration / Acceptance Testing Plan for Q", + "description": "C-CFTP_Q", + "status": "DONE", + "labels": [ + "Doc:CFTP_Q" + ] + ], + "NET-15" : [ + "key" : "NET-15", + "name" : "Development Test Report", + "description": "C-DTR", + "status" : "DONE", + "labels" : [ + "Doc:DTR" + ] + ], + "NET-14" : [ + "key" : "NET-14", + "name" : "Configuration and Installation Testing Report for Q", + "description": "C-IVR for Q", + "status" : "DONE", + "labels" : [ + "Doc:IVR_Q" + ] + ], + "NET-13" : [ + "key" : "NET-13", + "name" : "Technical Installation Report for Q", + "description": "C-TIR for Q", + "status" : "DONE", + "labels" : [ + "Doc:TIR_Q" + ] + ], + "NET-12" : [ + "key" : "NET-12", + "name" : "Development Test Plan", + "description": "C-DTP", + "status" : "DONE", + "labels" : [ + "Doc:DTP" + ] + ], + "NET-8" : [ + "key" : "NET-8", + "name" : "Configuration and Installation Testing Plan for Q", + "description": "C-IVP for Q", + "status" : "DONE", + "labels" : [ + "Doc:IVP_Q" + ] + ], + "NET-7" : [ + "key" : "NET-7", + "name" : "Technical Installation Plan for Q", + "description": "C-TIP for Q", + "status" : "DONE", + "labels" : [ + "Doc:TIP_Q" + ] + ], + "NET-6" : [ + "key" : "NET-6", + "name" : "Risk Assessment", + "description": "C-RA", + "status" : "DONE", + "labels" : [ + "Doc:RA" + ] + ] + ] + } + + static Map createProjectJiraDataIssueTypes() { + return [ + "Epic": [ + id: "1", + name: "Epic", + fields: [ + "Issue Status": [ + id: "customfield_1", + name: "Issue Status" + ], + "Linked Issues": [ + id: "issuelinks", + name: "Linked Issues" + ] + ] + ], + "Story": [ + id: "2", + name: "Story", + fields: [ + "Issue Status": [ + id: "customfield_1", + name: "Issue Status" + ], + "Epic Link": [ + id: "customfield_2", + name: "Epic Link" + ], + "Linked Issues": [ + id: "issuelinks", + name: "Linked Issues" + ] + ] + ], + "Test": [ + id: "3", + name: "Test", + fields: [ + "Issue Status": [ + id: "customfield_1", + name: "Issue Status" + ], + "Epic Link": [ + id: "customfield_2", + name: "Epic Link" + ], + "Linked Issues": [ + id: "issuelinks", + name: "Linked Issues" + ] + ] + ], + "Documentation": [ + id: "4", + name: "Documentation", + fields: [ + "Document Version": [ + id: "customfield_3", + name: "Document Version" + ] + ] + ], + "Release Status": [ + id: "5", + name: "Release Status", + fields: [ + "Build Number": [ + id: "customfield_4", + name: "Build Number" + ], + "Release Manager Status": [ + id: "customfield_5", + name: "Release Manager Status" + ] + ] + ] + ] + } + + static Map createProjectMetadata() { + def file = new FixtureHelper().getResource("project-metadata.yml") + return new Yaml().load(file.text) + } + + static Map createJiraIssue(String id, String issuetype = "Story", String summary = null, String description = null, String status = null) { + def result = [ + id : id, + key : "JIRA-${id}", + fields: [:], + self : "http://${id}" + ] + + result.fields.summary = summary ?: "${id}-summary" + result.fields.description = description ?: "${id}-description" + + result.fields.components = [] + result.fields.issuelinks = [] + result.fields.issuetype = [ + name: issuetype + ] + result.fields.status = [ + name: status + ] + + return result + } + + static Map createJiraIssueLink(String id, Map inwardIssue = null, Map outwardIssue = null) { + def result = [ + id : id, + type: [ + name : "Relate", + inward : "relates to", + outward: "is related to" + ], + self: "http://${id}" + ] + + if (inwardIssue) { + result.inwardIssue = inwardIssue + } + + if (outwardIssue) { + result.outwardIssue = outwardIssue + } + + if (!inwardIssue && !outwardIssue) { + result.outwardIssue = result.inwardIssue = createIssue(id) + } + + return result + } + + static List createJiraIssues(def issuetype = "Story") { + def result = [] + + // Create an issue belonging to 3 components and 2 inward links + def issue1 = createJiraIssue("1", issuetype) + issue1.fields.components = [ + [name: "myComponentA"], + [name: "myComponentB"], + [name: "myComponentC"] + ] + issue1.fields.issuelinks = [ + createJiraIssueLink("1", createJiraIssue("100")), + createJiraIssueLink("2", createJiraIssue("101")) + ] + result << issue1 + + // Create an issue belonging to 2 components and 1 outward links + def issue2 = createJiraIssue("2", issuetype) + issue2.fields.components = [ + [name: "myComponentA"], + [name: "myComponentB"] + ] + issue2.fields.issuelinks = [ + createJiraIssueLink("1", createJiraIssue("200")) + ] + result << issue2 + + // Create an issue belonging to 1 component and 0 outward links + def issue3 = createJiraIssue("3", issuetype) + issue3.fields.components = [ + [name: "myComponentA"] + ] + result << issue3 + + // Create an issue belonging to 0 components and 0 outward links + result << createJiraIssue("4") + } + + static List createJiraDocumentIssues() { + def result = [] + + result << createJiraIssue("1", "my-doc-A", "Document A", null, "DONE") + result << createJiraIssue("2", "my-doc-B", "Document B", null, "DONE") + result << createJiraIssue("3", "my-doc-C", "Document C", null, "DONE") + + return result + } + + static List createJiraTestIssues() { + def result = createJiraIssues("Test") + + def issue1 = result[0] + issue1.fields.issuelinks = [ + createJiraIssueLink("1", null, createJiraIssue("100")) + ] + issue1.test = [ + description: issue1.description + ] + + def issue2 = result[1] + issue2.fields.issuelinks = [ + createJiraIssueLink("1", null, createJiraIssue("200")), + ] + issue2.test = [ + description: issue2.description + ] + + def issue3 = result[2] + issue3.fields.issuelinks = [ + createJiraIssueLink("1", null, createJiraIssue("300")) + ] + issue3.test = [ + description: issue3.description + ] + + def issue4 = result[3] + issue4.fields.issuelinks = [ + createJiraIssueLink("1", null, createJiraIssue("400")), + ] + issue4.test = [ + description: issue4.description + ] + + def issue5 = createJiraIssue("5", "Test") + issue5.fields.issuelinks = [ + createJiraIssueLink("1", null, createJiraIssue("500")), + ] + issue5.test = [ + description: issue5.description + ] + result << issue5 + + return result + } + + static String createJUnitXMLTestResults() { + return """ + + + + + + + + This is an error. + + + + + This is a failure. + + + + + + + + + + """ + } + + static String createJUnitXMLTestResultsWithDuplicates() { + return """ + + + + + + + + This is an error. + + + + + This is a failure. + + + + + + + + + + """ + } + + static String createSockShopJUnitXmlTestResults() { + """ + + + + + + + + This is an error. + + + + + This is a failure. + + + + + + + + + + + + + + + + """ + } + + static Map createOpenShiftPodDataForComponent() { + return [ + items: [ + [ + metadata: [ + name : "myPodName", + namespace : "myPodNamespace", + creationTimestamp: "myPodCreationTimestamp", + labels : [ + env: "myPodEnvironment" + ] + ], + spec : [ + nodeName: "myPodNode" + ], + status : [ + podIP: "1.2.3.4", + phase: "myPodStatus" + ] + ] + ] + ] + } + + static Map createTestResults() { + return JUnitParser.parseJUnitXML( + createJUnitXMLTestResults() + ) + } + + static Map createTestResultsWithDuplicates() { + return JUnitParser.parseJUnitXML( + createJUnitXMLTestResultsWithDuplicates() + ) + } + + static Map createSockShopTestResults() { + return JUnitParser.parseJUnitXML( + createSockShopJUnitXmlTestResults() + ) + } + + static Set createTestResultErrors() { + return JUnitParser.Helper.getErrors(createTestResults()) + } + + static Set createTestResultFailures() { + return JUnitParser.Helper.getFailures(createTestResults()) + } + + static Set createSockShopTestResultErrors() { + return JUnitParser.Helper.getErrors(createSockShopTestResults()) + } + + static Set createSockShopTestResultFailures() { + return JUnitParser.Helper.getFailures(createSockShopTestResults()) + } + + static List createSockShopJiraTestIssues() { + def file = FixtureHelper.class.getResource("/project-jira-data.json") + return new JsonSlurperClassic().parse(file).tests.collect { mapEntry -> + mapEntry.value + } + } + + File getResource(String path) { + path = path.startsWith('/') ? path : '/' + path + new File(this.getClass().getResource(path).toURI()) + } +} diff --git a/src/test/groovy/org/ods/doc/gen/core/test/wiremock/BitbucketWiremock.groovy b/src/test/groovy/org/ods/doc/gen/core/test/wiremock/BitbucketWiremock.groovy new file mode 100644 index 00000000..a3e562d9 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/core/test/wiremock/BitbucketWiremock.groovy @@ -0,0 +1,69 @@ +package org.ods.doc.gen.core.test.wiremock + +import com.github.tomakehurst.wiremock.WireMockServer +import com.github.tomakehurst.wiremock.client.WireMock +import com.github.tomakehurst.wiremock.core.WireMockConfiguration +import com.github.tomakehurst.wiremock.recording.SnapshotRecordResult +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils + +import static com.github.tomakehurst.wiremock.core.WireMockApp.FILES_ROOT +import static com.github.tomakehurst.wiremock.core.WireMockApp.MAPPINGS_ROOT + +@Slf4j +class BitbucketWiremock { + static final String WIREMOCK_FILES = "src/test/resources/wiremock/bitbucket" + + boolean recording + WireMockServer wireMockServer + String pathToFiles + + BitbucketWiremock setUp(String scenario){ + pathToFiles = "${WIREMOCK_FILES}/${scenario}" + + wireMockServer = new WireMockServer( + WireMockConfiguration.wireMockConfig().usingFilesUnderDirectory(pathToFiles).dynamicPort() + ); + + return this + } + + BitbucketWiremock startServer(boolean recording = false, String targetUrl = null) { + log.info("startServer recording:[{}] targetUrl:[{}]",recording, targetUrl) + + this.recording = recording + wireMockServer.start() + if (isRecording()) { + if (!targetUrl) + throw new RuntimeException("startServer needs the 'targetUrl' when recording") + cleanExistingRecords() + wireMockServer.startRecording(WireMock.recordSpec().forTarget(targetUrl).build()) + } + return this + } + + void tearDown() { + log.info("tearDown") + + wireMockServer.stop(); + if (isRecording()) { + try { + SnapshotRecordResult recording = wireMockServer.stopRecording() + log.info("record files:[{}]", recording.stubMappings) + }catch(Exception e){ + log.error("stopRecording error", e) + } + } + } + + private void cleanExistingRecords() { + wireMockServer.resetAll() + try { + FileUtils.cleanDirectory(new File(pathToFiles)); + } catch (IOException ex) { + log.error("Exception deleting Files: " + ex); + } + new File("${pathToFiles}/${MAPPINGS_ROOT}").mkdirs() + new File("${pathToFiles}/${FILES_ROOT}").mkdirs() + } +} diff --git a/src/test/groovy/org/ods/doc/gen/core/test/wiremock/WireMockFacade.groovy b/src/test/groovy/org/ods/doc/gen/core/test/wiremock/WireMockFacade.groovy new file mode 100644 index 00000000..80b554a1 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/core/test/wiremock/WireMockFacade.groovy @@ -0,0 +1,34 @@ +package org.ods.doc.gen.core.test.wiremock + +import com.github.tomakehurst.wiremock.WireMockServer + +import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.options + +class WireMockFacade { + + WireMockServer wireMockServer + + def cleanup() { + stopWireMockServer() + } + + WireMockServer startWireMockServer() { + this.wireMockServer = new WireMockServer(options().dynamicPort()) + this.wireMockServer.start() + return this.wireMockServer + } + + WireMockServer startWireMockServer(URI uri) { + this.wireMockServer = new WireMockServer(options().port(uri.getPort())) + this.wireMockServer.start() + return this.wireMockServer + } + + void stopWireMockServer() { + if (this.wireMockServer != null) { + this.wireMockServer.stop() + this.wireMockServer = null + } + } + +} \ No newline at end of file diff --git a/src/test/groovy/org/ods/doc/gen/core/test/wiremock/WiremockManager.groovy b/src/test/groovy/org/ods/doc/gen/core/test/wiremock/WiremockManager.groovy new file mode 100644 index 00000000..1eb2f3a9 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/core/test/wiremock/WiremockManager.groovy @@ -0,0 +1,184 @@ + +package org.ods.doc.gen.core.test.wiremock + +import com.github.tomakehurst.wiremock.WireMockServer +import com.github.tomakehurst.wiremock.client.WireMock +import com.github.tomakehurst.wiremock.core.WireMockConfiguration +import com.github.tomakehurst.wiremock.recording.SnapshotRecordResult +import groovy.json.JsonBuilder +import groovy.json.JsonOutput +import groovy.json.JsonSlurper +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils +import org.apache.commons.io.FilenameUtils +import org.ods.doc.gen.SpringContext +import org.springframework.core.env.Environment + +import static com.github.tomakehurst.wiremock.core.WireMockApp.FILES_ROOT +import static com.github.tomakehurst.wiremock.core.WireMockApp.MAPPINGS_ROOT + +@Slf4j +class WiremockManager { + private static final String WIREMOCK_FILES = "src/test/resources/wiremock" + + private WireMockServer wireMockServer + private boolean recording + private String pathToFiles + + private final String serverType + private final String defaultURL + + WiremockManager(String serverType, String defaultURL) { + this.serverType = serverType + this.defaultURL = defaultURL + } + + WiremockManager withScenario(String scenario){ + this.pathToFiles = "${WIREMOCK_FILES}/${scenario}/${serverType}" + return this + } + + WiremockManager startServer(boolean recording) { + if (recording){ + cleanExistingRecords() + } + + wireMockServer = new WireMockServer( + WireMockConfiguration + .wireMockConfig() + .usingFilesUnderDirectory(pathToFiles) + .dynamicPort() + ) + wireMockServer.start() + log.info("WireMockServer: [{}:{}]", serverType, wireMockServer.baseUrl()) + log.info("WireMockServer: [{}] targetURL:[{}]", serverType, defaultURL) + log.info("WireMockServer: [{}] pathToFiles:[{}]", serverType, pathToFiles) + + setUpRecordMode(recording, wireMockServer, defaultURL) + return this + } + + WireMockServer server(){ + return wireMockServer + } + + void tearDown() { + log.info("tearDown") + + wireMockServer.stop() + if (recording) { + try { + SnapshotRecordResult recording = wireMockServer.stopRecording() + log.info("record files:[{}]", recording.stubMappings?.size()) + cleanWiremockDatafiles() + }catch(Exception e){ + log.error("stopRecording error", e) + throw new RuntimeException("Error when stopRecording", e) + } + } + } + + private void cleanExistingRecords() { + try { + log.info("Clean directory $pathToFiles"); + FileUtils.cleanDirectory(new File(pathToFiles)); + } catch (Exception ex) { + log.warn("Exception deleting Files: " + ex); + } + new File("${pathToFiles}/${MAPPINGS_ROOT}").mkdirs() + new File("${pathToFiles}/${FILES_ROOT}").mkdirs() + } + + private cleanWiremockDatafiles() { + log.info("cleanWiremock date_created field") + Map replaceAllMap = prepareReplaceMap() + updateMapping(replaceAllMap) + updateResponses(replaceAllMap) + } + + private updateMapping(Map replaceAllMap) { + new File("${pathToFiles}/${MAPPINGS_ROOT}").eachFileRecurse() { File file -> + log.debug("update data in ${file.absolutePath}") + replaceFileInText(file, replaceAllMap) + updateCreatedData(file) + log.trace("File " + file.getAbsolutePath() + " contents: \n ${file.text}") + } + } + + private updateResponses(Map replaceAllMap) { + new File("${pathToFiles}/${FILES_ROOT}").eachFileRecurse() { File file -> + if (FilenameUtils.getExtension(file.name) != "zip") { + log.debug("update data in ${file.absolutePath}") + replaceFileInText(file, replaceAllMap) + } + } + } + + private Map prepareReplaceMap() { + Environment env = SpringContext.getBean(Environment.class) + List domainUsers = ["bitbucket_username", "nexus_username", "jira_username"] + Map replaceAllMap = [:] + domainUsers.each { + replaceAllMap[(env.getProperty(it))] = "dummyUser" + } + replaceAllMap["boehringer-ingelheim"] = "domain" + + (System.properties['wiremock.textToReplace'] as String).tokenize(',').each { + List value = it.tokenize(':') + replaceAllMap[value[0]] = value[1] + } + return replaceAllMap.findAll { it != null && it.key != null} + } + + private void replaceFileInText(File file, Map replaceAllMap) { + replaceAllMap.each { + if (file.text?.contains(it.key)) + file.text = file.text.replace(it.key, it.value) + } + } + + private void updateCreatedData(File file) { + JsonBuilder jsonBuilderFromFile = getJsonFromText(file.text) + String equalToJsonField = jsonBuilderFromFile.content?.request?.bodyPatterns?.equalToJson + if (!equalToJsonField || !equalToJsonField.contains("date_created") || equalToJsonField.contains("json-unit.any-string")) + return + + JsonBuilder jsonBuilderField = getJsonFromText(equalToJsonField) + + jsonBuilderField.content[0].data.metadata.date_created = "\${json-unit.any-string}" + if (jsonBuilderField.content[0].data.data.repo){ + jsonBuilderField.content[0].data.data.repo?.data?.tests?.unit?.testReportFiles[0]?.with { + freeSpace = "\${json-unit.any-number}" + canonicalPath = "\${json-unit.any-string}" + usableSpace = "\${json-unit.any-number}" + totalSpace = "\${json-unit.any-number}" + path = "\${json-unit.any-string}" + absolutePath = "\${json-unit.any-string}" + parent = "\${json-unit.any-string}" + } + jsonBuilderField.content[0].data.data?.testFiles?.each { testFile -> + testFile.path = "\${json-unit.any-string}" + + } + } + + jsonBuilderFromFile.content.request.bodyPatterns[0].equalToJson = jsonBuilderField.content[0] + + file.text = JsonOutput.prettyPrint(jsonBuilderFromFile.toString()) + } + + private JsonBuilder getJsonFromText(String text) { + def slurped = new JsonSlurper().parseText(text) + def builder = new JsonBuilder(slurped) + return builder + } + + private void setUpRecordMode(boolean recording, WireMockServer wireMockServer, String targetURL) { + if (recording) { + log.info("WireMockServer:[{}] - RECORD MODE!!!!") + wireMockServer.resetAll() + wireMockServer.startRecording(WireMock.recordSpec().forTarget(targetURL).build()) + this.recording = recording + } + } +} diff --git a/src/test/groovy/org/ods/doc/gen/core/test/wiremock/WiremockServers.groovy b/src/test/groovy/org/ods/doc/gen/core/test/wiremock/WiremockServers.groovy new file mode 100644 index 00000000..c05cab6a --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/core/test/wiremock/WiremockServers.groovy @@ -0,0 +1,38 @@ +package org.ods.doc.gen.core.test.wiremock + +/** + * Add jiraURL in gradle.properties to change default jiraURL + * Add nexusURL in gradle.properties to change default nexusURL + * Add docGenURL in gradle.properties to change default docGenURL + * Add jiraUser & jiraPassword in gradle.properties to change Jira user/password + */ +enum WiremockServers { + SONAR_QU { + WiremockManager build(String url) { + new WiremockManager("sonarQu", url) + } + }, + JIRA { + WiremockManager build(String url) { + new WiremockManager("jira", url) + } + }, + NEXUS { + WiremockManager build(String url) { + new WiremockManager("nexus", url) + } + }, + BITBUCKET { + WiremockManager build(String url) { + new WiremockManager("bitbucket", url) + } + }, + GITHUB { + WiremockManager build(String url) { + new WiremockManager("github", url) + } + } + + abstract WiremockManager build(String url); +} + diff --git a/src/test/groovy/org/ods/doc/gen/core/test/workspace/TestsReports.groovy b/src/test/groovy/org/ods/doc/gen/core/test/workspace/TestsReports.groovy new file mode 100644 index 00000000..553ba455 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/core/test/workspace/TestsReports.groovy @@ -0,0 +1,50 @@ +package org.ods.doc.gen.core.test.workspace + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.leva.doc.services.xunit.JUnitReportsService +import org.ods.doc.gen.project.data.ProjectData +import org.ods.doc.gen.project.data.TestType +import org.springframework.stereotype.Service +/** + * Tests results should be at "${steps.env.WORKSPACE}/xunit" + */ +@Slf4j +@Service +class TestsReports { + + private final static List TYPES = [TestType.INSTALLATION, TestType.INTEGRATION, TestType.ACCEPTANCE, TestType.UNIT] + private final JUnitReportsService jUnitTestReport + static final String XUNIT_DOCUMENTS_BASE_DIR = 'xunit' + + TestsReports(JUnitReportsService jUnitTestReportsUseCase){ + this.jUnitTestReport = jUnitTestReportsUseCase + } + + Map getAllResults(ProjectData projectData, List repos){ + Map data = [:] + data.tests = [:] + TYPES.each { type -> + repos.each { repo -> + data.tests << [(type.toLowerCase()): getResults(projectData, repo.id, type.toLowerCase())] + } + } + return data + } + + /** + * see @org.ods.external.modules.orchestration.Stage#getTestResults + */ + Map getResults(ProjectData projectData, String repoId, String type) { + log.debug("Collecting JUnit XML Reports ('${type}') for ${repoId}") + + def testReportsPath = "${XUNIT_DOCUMENTS_BASE_DIR}/${repoId}/${type}" + def testReportFiles = jUnitTestReport + .loadTestReportsFromPath( "${projectData.tmpFolder}/${testReportsPath}") + + return [ + testReportFiles: testReportFiles, + testResults: jUnitTestReport.parseTestReportFiles(testReportFiles), + ] + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerComponentPactSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerComponentPactSpec.groovy new file mode 100644 index 00000000..9ee4e40e --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerComponentPactSpec.groovy @@ -0,0 +1,126 @@ +package org.ods.doc.gen.leva.doc.api + +import au.com.dius.pact.core.model.FileSource +import au.com.dius.pact.core.model.ProviderState +import au.com.dius.pact.provider.ConsumerInfo +import au.com.dius.pact.provider.ProviderInfo +import au.com.dius.pact.provider.ProviderVerifier +import groovy.util.logging.Slf4j +import org.ods.doc.gen.AppConfiguration +import org.ods.doc.gen.TestConfig +import org.ods.doc.gen.core.test.fixture.FixtureHelper +import org.ods.doc.gen.core.test.workspace.TestsReports +import org.ods.doc.gen.leva.doc.fixture.LevaDocDataFixture +import org.ods.doc.gen.leva.doc.fixture.LevaDocTestValidator +import org.ods.doc.gen.leva.doc.fixture.LevaDocWiremock +import org.ods.doc.gen.leva.doc.fixture.ProjectFixture +import org.ods.doc.gen.project.data.Project +import org.springframework.boot.test.context.SpringBootTest +import org.springframework.boot.web.server.LocalServerPort +import org.springframework.test.context.ActiveProfiles +import org.springframework.test.context.ContextConfiguration +import spock.lang.Ignore +import spock.lang.Shared +import spock.lang.Specification +import spock.lang.TempDir + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path + +/** + * https://github.com/pact-foundation/pact-jvm/issues/1384 + */ +@Ignore +@Slf4j +@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +@ContextConfiguration(classes=[TestConfig.class, AppConfiguration.class]) +@ActiveProfiles('test') +class LevaDocControllerComponentPactSpec extends Specification { + + private static String PACT_FILE = 'pacts/buildDocument.component-createDoc.component.json' + + @Shared + private static ProviderInfo levaDocControllerPact + + @Shared + private static ProviderVerifier verifier + + @Inject + LevaDocWiremock levaDocWiremock + + @Inject + Project project + + @Inject + TestsReports testsReports + + @LocalServerPort + Integer port + + @TempDir + public Path tempFolder + + @Shared + private LevaDocTestValidator testValidator + private LevaDocDataFixture dataFixture + private ProjectFixture projectFixture + + def setupSpec() { + verifier = new ProviderVerifier() + levaDocControllerPact = new ProviderInfo('createDoc.defaultParams') + levaDocControllerPact.hasPactWith('buildDocument.defaultParams') { consumer -> + consumer.pactSource = new FileSource(new FixtureHelper().getResource(PACT_FILE)) + } + } + + def setup() { + levaDocControllerPact.protocol = 'http' + levaDocControllerPact.host = 'localhost' + levaDocControllerPact.port = port + levaDocControllerPact.path = '/' + dataFixture = new LevaDocDataFixture(tempFolder.toFile(), null, testsReports) + testValidator = new LevaDocTestValidator(tempFolder.toFile()) + } + + def cleanup() { + levaDocWiremock.tearDownWiremock() + } + + def "Provider Pact - With Consumer #consumer"() { + given: "Initial data for the project " + GroovySpy(Files, global: true) + Files.createTempDirectory(_) >> tempFolder + consumer.stateChange = { ProviderState state -> setUpFixture(state)} + + when: "Verify the contract" + Map failures = verifyConsumerPact(consumer) + + then: + assert failures.size() == 0 : "Error in contract:${failures}" + + //testValidator.validatePDF(projectFixture, "2022-01-22_23-59-59") + + where: + consumer << levaDocControllerPact.consumers + } + + private Map verifyConsumerPact(ConsumerInfo consumer) { + verifier.initialiseReporters(levaDocControllerPact) + Map failures = [:] + verifier.runVerificationForConsumer(failures, levaDocControllerPact, consumer) + return failures + } + + private void setUpFixture(ProviderState state) { + log.info("stateChangeHandler") + log.info("stateChangeHandler state:${state}") + projectFixture = buildProjectFixture(state.params) + levaDocWiremock.setUpWireMock(projectFixture, tempFolder.toFile()) + } + + private ProjectFixture buildProjectFixture(Map params) { + return ProjectFixture.builder().project(params.project).version(params.version).docType(params.docType).build() + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerOverallPactSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerOverallPactSpec.groovy new file mode 100644 index 00000000..a423230e --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerOverallPactSpec.groovy @@ -0,0 +1,126 @@ +package org.ods.doc.gen.leva.doc.api + +import au.com.dius.pact.core.model.FileSource +import au.com.dius.pact.core.model.ProviderState +import au.com.dius.pact.provider.ConsumerInfo +import au.com.dius.pact.provider.ProviderInfo +import au.com.dius.pact.provider.ProviderVerifier +import groovy.util.logging.Slf4j +import org.ods.doc.gen.AppConfiguration +import org.ods.doc.gen.TestConfig +import org.ods.doc.gen.core.test.fixture.FixtureHelper +import org.ods.doc.gen.core.test.workspace.TestsReports +import org.ods.doc.gen.leva.doc.fixture.LevaDocDataFixture +import org.ods.doc.gen.leva.doc.fixture.LevaDocTestValidator +import org.ods.doc.gen.leva.doc.fixture.LevaDocWiremock +import org.ods.doc.gen.leva.doc.fixture.ProjectFixture +import org.ods.doc.gen.project.data.Project +import org.springframework.boot.test.context.SpringBootTest +import org.springframework.boot.web.server.LocalServerPort +import org.springframework.test.context.ActiveProfiles +import org.springframework.test.context.ContextConfiguration +import spock.lang.Ignore +import spock.lang.Shared +import spock.lang.Specification +import spock.lang.TempDir + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path + +/** + * https://github.com/pact-foundation/pact-jvm/issues/1384 + */ +@Ignore +@Slf4j +@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +@ContextConfiguration(classes=[TestConfig.class, AppConfiguration.class]) +@ActiveProfiles('test') +class LevaDocControllerOverallPactSpec extends Specification { + + private static String PACT_FILE = 'pacts/buildDocument.overall-createDoc.overall.json' + + @Shared + private static ProviderInfo levaDocControllerPact + + @Shared + private static ProviderVerifier verifier + + @Inject + LevaDocWiremock levaDocWiremock + + @Inject + Project project + + @Inject + TestsReports testsReports + + @LocalServerPort + Integer port + + @TempDir + public Path tempFolder + + @Shared + private LevaDocTestValidator testValidator + private LevaDocDataFixture dataFixture + private ProjectFixture projectFixture + + def setupSpec() { + verifier = new ProviderVerifier() + levaDocControllerPact = new ProviderInfo('createDoc.defaultParams') + levaDocControllerPact.hasPactWith('buildDocument.defaultParams') { consumer -> + consumer.pactSource = new FileSource(new FixtureHelper().getResource(PACT_FILE)) + } + } + + def setup() { + levaDocControllerPact.protocol = 'http' + levaDocControllerPact.host = 'localhost' + levaDocControllerPact.port = port + levaDocControllerPact.path = '/' + dataFixture = new LevaDocDataFixture(tempFolder.toFile(), null, testsReports) + testValidator = new LevaDocTestValidator(tempFolder.toFile()) + } + + def cleanup() { + levaDocWiremock.tearDownWiremock() + } + + def "Provider Pact - With Consumer #consumer"() { + given: "Initial data for the project " + GroovySpy(Files, global: true) + Files.createTempDirectory(_) >> tempFolder + consumer.stateChange = { ProviderState state -> setUpFixture(state)} + + when: "Verify the contract" + Map failures = verifyConsumerPact(consumer) + + then: + assert failures.size() == 0 : "Error in contract:${failures}" + + //testValidator.validatePDF(projectFixture, "2022-01-22_23-59-59") + + where: + consumer << levaDocControllerPact.consumers + } + + private Map verifyConsumerPact(ConsumerInfo consumer) { + verifier.initialiseReporters(levaDocControllerPact) + Map failures = [:] + verifier.runVerificationForConsumer(failures, levaDocControllerPact, consumer) + return failures + } + + private void setUpFixture(ProviderState state) { + log.info("stateChangeHandler") + log.info("stateChangeHandler state:${state}") + projectFixture = buildProjectFixture(state.params) + levaDocWiremock.setUpWireMock(projectFixture, tempFolder.toFile()) + } + + private ProjectFixture buildProjectFixture(Map params) { + return ProjectFixture.builder().project(params.project).version(params.version).docType(params.docType).build() + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerPactSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerPactSpec.groovy new file mode 100644 index 00000000..8ed7a5c5 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerPactSpec.groovy @@ -0,0 +1,126 @@ +package org.ods.doc.gen.leva.doc.api + +import au.com.dius.pact.core.model.FileSource +import au.com.dius.pact.core.model.ProviderState +import au.com.dius.pact.provider.ConsumerInfo +import au.com.dius.pact.provider.ProviderInfo +import au.com.dius.pact.provider.ProviderVerifier +import groovy.util.logging.Slf4j +import org.ods.doc.gen.AppConfiguration +import org.ods.doc.gen.TestConfig +import org.ods.doc.gen.core.test.fixture.FixtureHelper +import org.ods.doc.gen.core.test.workspace.TestsReports +import org.ods.doc.gen.leva.doc.fixture.LevaDocDataFixture +import org.ods.doc.gen.leva.doc.fixture.LevaDocTestValidator +import org.ods.doc.gen.leva.doc.fixture.LevaDocWiremock +import org.ods.doc.gen.leva.doc.fixture.ProjectFixture +import org.ods.doc.gen.project.data.Project +import org.springframework.boot.test.context.SpringBootTest +import org.springframework.boot.web.server.LocalServerPort +import org.springframework.test.context.ActiveProfiles +import org.springframework.test.context.ContextConfiguration +import spock.lang.Ignore +import spock.lang.Shared +import spock.lang.Specification +import spock.lang.TempDir + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path + +/** + * https://github.com/pact-foundation/pact-jvm/issues/1384 + */ +@Slf4j +@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +@ContextConfiguration(classes=[TestConfig.class, AppConfiguration.class]) +@ActiveProfiles('test') +@Ignore +class LevaDocControllerPactSpec extends Specification { + + private static String PACT_FILE = 'pacts/buildDocument.defaultParams-createDoc.defaultParams.json' + + @Shared + private static ProviderInfo levaDocControllerPact + + @Shared + private static ProviderVerifier verifier + + @Inject + LevaDocWiremock levaDocWiremock + + @Inject + Project project + + @Inject + TestsReports testsReports + + @LocalServerPort + Integer port + + @TempDir + public Path tempFolder + + @Shared + private LevaDocTestValidator testValidator + private LevaDocDataFixture dataFixture + private ProjectFixture projectFixture + + def setupSpec() { + verifier = new ProviderVerifier() + levaDocControllerPact = new ProviderInfo('createDoc.defaultParams') + levaDocControllerPact.hasPactWith('buildDocument.defaultParams') { consumer -> + consumer.pactSource = new FileSource(new FixtureHelper().getResource(PACT_FILE)) + } + } + + def setup() { + levaDocControllerPact.protocol = 'http' + levaDocControllerPact.host = 'localhost' + levaDocControllerPact.port = port + levaDocControllerPact.path = '/' + dataFixture = new LevaDocDataFixture(tempFolder.toFile(), null, testsReports) + testValidator = new LevaDocTestValidator(tempFolder.toFile()) + } + + def cleanup() { + levaDocWiremock.tearDownWiremock() + } + + def "Provider Pact - With Consumer #consumer"() { + given: "Initial data for the project " + GroovySpy(Files, global: true) + Files.createTempDirectory(_) >> tempFolder + consumer.stateChange = { ProviderState state -> setUpFixture(state)} + + when: "Verify the contract" + Map failures = verifyConsumerPact(consumer) + + then: + assert failures.size() == 0 : "Error in contract:${failures}" + + //testValidator.validatePDF(projectFixture, "2022-01-22_23-59-59") + + where: + consumer << levaDocControllerPact.consumers + } + + private Map verifyConsumerPact(ConsumerInfo consumer) { + verifier.initialiseReporters(levaDocControllerPact) + Map failures = [:] + verifier.runVerificationForConsumer(failures, levaDocControllerPact, consumer) + return failures + } + + private void setUpFixture(ProviderState state) { + log.info("stateChangeHandler") + log.info("stateChangeHandler state:${state}") + projectFixture = buildProjectFixture(state.params) + levaDocWiremock.setUpWireMock(projectFixture, tempFolder.toFile()) + } + + private ProjectFixture buildProjectFixture(Map params) { + return ProjectFixture.builder().project(params.project).version(params.version).docType(params.docType).build() + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerSpec.groovy new file mode 100644 index 00000000..620217d4 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerSpec.groovy @@ -0,0 +1,144 @@ +package org.ods.doc.gen.leva.doc.api + +import groovy.json.JsonOutput +import groovy.util.logging.Slf4j +import org.ods.doc.gen.core.FileSystemHelper +import org.ods.doc.gen.leva.doc.fixture.LevaDocDataFixture +import org.ods.doc.gen.leva.doc.fixture.ProjectFixture +import org.ods.doc.gen.leva.doc.services.DocumentHistoryEntry +import org.ods.doc.gen.leva.doc.services.LeVADocumentService +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest +import org.springframework.boot.test.mock.mockito.MockBean +import org.springframework.http.MediaType +import org.springframework.test.annotation.DirtiesContext +import org.springframework.test.web.servlet.MockMvc +import org.springframework.test.web.servlet.MvcResult +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders +import org.springframework.test.web.servlet.result.MockMvcResultMatchers +import spock.lang.Specification +import spock.lang.Stepwise +import spock.lang.TempDir + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path + +import static groovy.json.JsonOutput.prettyPrint +import static groovy.json.JsonOutput.toJson +import static org.mockito.ArgumentMatchers.* +import static org.mockito.Mockito.when +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status + +@Slf4j +@WebMvcTest(LevaDocController.class) +@Stepwise +@DirtiesContext +class LevaDocControllerSpec extends Specification { + + @TempDir + public Path tempFolder + + @Inject + private MockMvc mockMvc + + @MockBean + LeVADocumentService leVADocumentService + + @MockBean + private FileSystemHelper fileSystemHelper + + LevaDocDataFixture dataFixture + + def setup() { + dataFixture = new LevaDocDataFixture(tempFolder.toFile()) + } + + def "BuildDocument ok"() { + given: "A temporal folder " + String projectBuild = "${projectFixture.project}-${buildNumber}" + when(fileSystemHelper.createTempDirectory(projectBuild)).thenReturn(tempFolder) + + and: "leVADocumentService is mocked" + List response = buildExpectedResponse() + Map data = dataFixture.buildFixtureData(projectFixture) + Map serviceParam = buildServiceDataParam(projectFixture, buildNumber, data) + when(leVADocumentService.createCSD(argThat(map -> map == serviceParam))).thenReturn(response) + + expect: "a client call to /levaDoc/ProjectId/BuildID/docType return the url of the doc created" + MvcResult mvcResult = this.mockMvc + .perform(MockMvcRequestBuilders.post("/levaDoc/${projectFixture.project}/${buildNumber}/CSD") + .contentType(MediaType.APPLICATION_JSON) + .content(JsonOutput.toJson(data))) + .andExpect(MockMvcResultMatchers.status().isOk()).andReturn() + + and: + mvcResult.response.contentAsString == JsonOutput.toJson(response) + log.debug(prettyPrint(toJson(mvcResult.response.contentAsString))) + + and: "the tmp folder exist" + Files.exists(tempFolder) + + where: "use valid data to generate pdf" + projectFixture = ProjectFixture.getProjectFixtureBuilder(getProject(), "CSD").build() + buildNumber = "2" + } + + def "BuildDocument when LevaDoc Throw exception"() { + given: "A temporal folder " + when(fileSystemHelper.createTempDirectory(anyString())).thenReturn(tempFolder) + + and: "leVADocumentService is mocked and Throw an exception" + Map data = dataFixture.buildFixtureData(projectFixture) + def initialMsgError = "Error building document: CSD with data:" + when(leVADocumentService.createCSD(anyMap())).thenThrow(new RuntimeException(initialMsgError)) + + expect: "am error in the query" + MvcResult mvcResult = this.mockMvc + .perform(post("/levaDoc/${projectFixture.project}/2/CSD") + .contentType(MediaType.APPLICATION_JSON) + .content(JsonOutput.toJson(data))) + .andExpect(status().isConflict()).andReturn() + + and: "msg error in the response" + mvcResult.response.contentAsString.startsWith(initialMsgError) + + and: "the tmp folder is not deleted" + Files.exists(tempFolder) + + where: "use valid data to generate pdf" + projectFixture = ProjectFixture.getProjectFixtureBuilder(getProject(), "CSD").build() + } + + private Map getProject() { + return [ + id:"TEST_PROJECT_ID", + releaseId: "1", + version: "WIP", + validation: "" + ] + } + + private Map buildServiceDataParam(ProjectFixture projectFixture, String buildNumber, Map data) { + Map serviceParam = [:] + serviceParam << data + serviceParam.documentType = projectFixture.docType + serviceParam.projectBuild = "${projectFixture.project}-${buildNumber}" + serviceParam.projectId = projectFixture.project + serviceParam.buildNumber = buildNumber + serviceParam.tmpFolder = tempFolder.toFile().absolutePath + return serviceParam + } + + private List buildExpectedResponse(){ + Map map = [bugs: [], components: [], epics: [key: "ORDGP-124", action: "add"]] + DocumentHistoryEntry historyEntry = new DocumentHistoryEntry( + map, + 1, + "1.0", + "", + "Initial document version.") + return [historyEntry] + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerTestDataPactSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerTestDataPactSpec.groovy new file mode 100644 index 00000000..18efc216 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/api/LevaDocControllerTestDataPactSpec.groovy @@ -0,0 +1,126 @@ +package org.ods.doc.gen.leva.doc.api + +import au.com.dius.pact.core.model.FileSource +import au.com.dius.pact.core.model.ProviderState +import au.com.dius.pact.provider.ConsumerInfo +import au.com.dius.pact.provider.ProviderInfo +import au.com.dius.pact.provider.ProviderVerifier +import groovy.util.logging.Slf4j +import org.ods.doc.gen.AppConfiguration +import org.ods.doc.gen.TestConfig +import org.ods.doc.gen.core.test.fixture.FixtureHelper +import org.ods.doc.gen.core.test.workspace.TestsReports +import org.ods.doc.gen.leva.doc.fixture.LevaDocDataFixture +import org.ods.doc.gen.leva.doc.fixture.LevaDocTestValidator +import org.ods.doc.gen.leva.doc.fixture.LevaDocWiremock +import org.ods.doc.gen.leva.doc.fixture.ProjectFixture +import org.ods.doc.gen.project.data.Project +import org.springframework.boot.test.context.SpringBootTest +import org.springframework.boot.web.server.LocalServerPort +import org.springframework.test.context.ActiveProfiles +import org.springframework.test.context.ContextConfiguration +import spock.lang.Ignore +import spock.lang.Shared +import spock.lang.Specification +import spock.lang.TempDir + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path + +/** + * https://github.com/pact-foundation/pact-jvm/issues/1384 + */ +@Slf4j +@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +@ContextConfiguration(classes=[TestConfig.class, AppConfiguration.class]) +@ActiveProfiles('test') +@Ignore +class LevaDocControllerTestDataPactSpec extends Specification { + + private static String PACT_FILE = 'pacts/buildDocument.testData-createDoc.testData.json' + + @Shared + private static ProviderInfo levaDocControllerPact + + @Shared + private static ProviderVerifier verifier + + @Inject + LevaDocWiremock levaDocWiremock + + @Inject + Project project + + @Inject + TestsReports testsReports + + @LocalServerPort + Integer port + + @TempDir + public Path tempFolder + + @Shared + private LevaDocTestValidator testValidator + private LevaDocDataFixture dataFixture + private ProjectFixture projectFixture + + def setupSpec() { + verifier = new ProviderVerifier() + levaDocControllerPact = new ProviderInfo('createDoc.defaultParams') + levaDocControllerPact.hasPactWith('buildDocument.defaultParams') { consumer -> + consumer.pactSource = new FileSource(new FixtureHelper().getResource(PACT_FILE)) + } + } + + def setup() { + levaDocControllerPact.protocol = 'http' + levaDocControllerPact.host = 'localhost' + levaDocControllerPact.port = port + levaDocControllerPact.path = '/' + dataFixture = new LevaDocDataFixture(tempFolder.toFile(), null, testsReports) + testValidator = new LevaDocTestValidator(tempFolder.toFile()) + } + + def cleanup() { + levaDocWiremock.tearDownWiremock() + } + + def "Provider Pact - With Consumer #consumer"() { + given: "Initial data for the project " + GroovySpy(Files, global: true) + Files.createTempDirectory(_) >> tempFolder + consumer.stateChange = { ProviderState state -> setUpFixture(state)} + + when: "Verify the contract" + Map failures = verifyConsumerPact(consumer) + + then: + assert failures.size() == 0 : "Error in contract:${failures}" + + //testValidator.validatePDF(projectFixture, "2022-01-22_23-59-59") + + where: + consumer << levaDocControllerPact.consumers + } + + private Map verifyConsumerPact(ConsumerInfo consumer) { + verifier.initialiseReporters(levaDocControllerPact) + Map failures = [:] + verifier.runVerificationForConsumer(failures, levaDocControllerPact, consumer) + return failures + } + + private void setUpFixture(ProviderState state) { + log.info("stateChangeHandler") + log.info("stateChangeHandler state:${state}") + projectFixture = buildProjectFixture(state.params) + levaDocWiremock.setUpWireMock(projectFixture, tempFolder.toFile()) + } + + private ProjectFixture buildProjectFixture(Map params) { + return ProjectFixture.builder().project(params.project).version(params.version).docType(params.docType).build() + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixture.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixture.groovy new file mode 100644 index 00000000..9c201f6f --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixture.groovy @@ -0,0 +1,20 @@ +package org.ods.doc.gen.leva.doc.fixture + +class DocTypeProjectFixture extends DocTypeProjectFixtureBase { + + DocTypeProjectFixture() { + super(["CSD", "DIL", "DTP", "RA", "CFTP", "IVP", "SSDS", "TCP", "TRC"]) + } + + DocTypeProjectFixture(docTypes) { + super(docTypes) + } + + def addDocTypes(Map project, List projects) { + docTypes.each { docType -> + if (project.docsToTest.contains(docType)) + projects.add(ProjectFixture.getProjectFixtureBuilder(project, docType as String).build()) + } + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixtureBase.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixtureBase.groovy new file mode 100644 index 00000000..778fb89b --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixtureBase.groovy @@ -0,0 +1,68 @@ +package org.ods.doc.gen.leva.doc.fixture + +import org.yaml.snakeyaml.Yaml + +abstract class DocTypeProjectFixtureBase { + + public static final String DUMMY_PROJECT = "dummyProject" + + private static final String FILENAME_WITH_PROJECTS = "leva-doc-functional-test-projects.yml" + private static final String FILENAME_PATH = "src/test/resources" + + private static final String LEVA_DOC_FUNCTIONAL_TESTS_PROJECTS = "${FILENAME_PATH}/${FILENAME_WITH_PROJECTS}" + private static final String ONLY_TEST_ONE_PROJECT = "ordgp" + private static final List SKIP_TEST_PROJECTS = [ "twrfdgp", "trdgp", "g3dgp", "g4dgp", "brassp"] + + protected final List docTypes + + DocTypeProjectFixtureBase(docTypes){ + this.docTypes = docTypes + } + + List getProjects(){ + List projectsToTest = [] + try { + def functionalTest = new Yaml().load(new File(LEVA_DOC_FUNCTIONAL_TESTS_PROJECTS).text) + List projects = functionalTest.projects.findAll { project -> + if (ONLY_TEST_ONE_PROJECT == project.id) + return true + if (ONLY_TEST_ONE_PROJECT.length()>0) + return false + if (SKIP_TEST_PROJECTS.size()>0 && SKIP_TEST_PROJECTS.contains(project.id)) + return false + return true + } + projects.each{ project -> + addDocTypes(project as Map, projectsToTest) + } + + if (projectsToTest.isEmpty()){ + projectsToTest.add( + ProjectFixture + .getProjectFixtureBuilder(buildDummyProject(), "No DocTpe match") + .component("No DocTpe defined") + .build()) + } + } catch(Throwable runtimeException){ + // If there's an error here, the log.error doesn't work + // neither the print + // So, if there's an error in the startup, put a debug line here + throw runtimeException + } + + return projectsToTest + } + + abstract addDocTypes(Map project, List projects) + + private Map buildDummyProject(){ + return [ + id: DUMMY_PROJECT, + description: """ + This project is created when there's no DocType related to the test to execute. + As we filter the DocTypeProjectFixture* with the ones defined here + leva-doc-functional-test-projects.yml --> docsToTest + """ + ] + } +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixtureWithComponent.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixtureWithComponent.groovy new file mode 100644 index 00000000..a6939fae --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixtureWithComponent.groovy @@ -0,0 +1,28 @@ +package org.ods.doc.gen.leva.doc.fixture + +class DocTypeProjectFixtureWithComponent extends DocTypeProjectFixtureBase { + + DocTypeProjectFixtureWithComponent() { + super( [ "DTR", "TIR"]) + } + + @Override + List addDocTypes(Map project, List projects) { + docTypes.each { docType -> + if (project.docsToTest.contains(docType)) + addModules(project, docType as String, projects) + } + } + + private void addModules(Map project, String docType, List projects) { + List components = project.components.split("\\s*,\\s*") + components.each { repo -> + projects.add(ProjectFixture.getProjectFixtureBuilder(project, docType).component(repo).build()) + } + } + + static boolean notIsReleaseModule(repo) { + !repo.id.contains("release") && !repo.type.contains("ods-test") + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixtureWithTestData.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixtureWithTestData.groovy new file mode 100644 index 00000000..40d464f7 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixtureWithTestData.groovy @@ -0,0 +1,9 @@ +package org.ods.doc.gen.leva.doc.fixture + +class DocTypeProjectFixtureWithTestData extends DocTypeProjectFixture { + + DocTypeProjectFixtureWithTestData(){ + super([ "TCR", "CFTR", "IVR" ]) + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixturesOverall.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixturesOverall.groovy new file mode 100644 index 00000000..241ea0d6 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/DocTypeProjectFixturesOverall.groovy @@ -0,0 +1,18 @@ +package org.ods.doc.gen.leva.doc.fixture + +import org.ods.doc.gen.leva.doc.services.Constants + +class DocTypeProjectFixturesOverall extends DocTypeProjectFixtureBase { + + DocTypeProjectFixturesOverall() { + super([ Constants.DocumentType.DTR.toString() ]) + } + + def addDocTypes(Map project, List projects) { + docTypes.each { docType -> + if (project.docsToTest.contains(docType)) + projects.add(ProjectFixture.getProjectFixtureBuilder(project, docType).overall(true).build()) + } + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocDataFixture.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocDataFixture.groovy new file mode 100644 index 00000000..754593db --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocDataFixture.groovy @@ -0,0 +1,109 @@ +package org.ods.doc.gen.leva.doc.fixture + +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils +import org.ods.doc.gen.core.test.workspace.TestsReports +import org.ods.doc.gen.project.data.Project +import org.ods.doc.gen.project.data.ProjectData + +@Slf4j +class LevaDocDataFixture { + + private final File tempFolder + private final Project project + private final TestsReports testsReports + + LevaDocDataFixture(File tempFolder, + Project project = null, + TestsReports testsReports = null){ + this.tempFolder = tempFolder + this.testsReports = testsReports + this.project = project + } + + Map buildFixtureData(ProjectFixture projectFixture){ + Map data = [:] + data.build = buildJobParams(projectFixture) + data.git = buildGitData(projectFixture) + data.openshift = [targetApiUrl:"https://openshift-sample"] + return data + } + + Map getModuleData(ProjectFixture projectFixture) { + return RepoDataBuilder.getRepoForComponent(projectFixture.component) + } + + void updateExpectedComponentDocs(ProjectData projectData, Map data, ProjectFixture projectFixture) { + projectFixture.components.each {String component -> + log.info("Moving pdf component: ${component} to merge into Overall pdf") + String pdfToTemp = copyPdfToTemp(projectFixture, component, data) + projectData.addOverallDocToMerge(projectFixture.docType, component, pdfToTemp) + } + } + + private Map buildJobParams(ProjectFixture projectFixture){ + String projectWithBuild = "${projectFixture.project}/${projectFixture.buildNumber}" + return [ + targetEnvironment: "dev", + targetEnvironmentToken: "D", + version: "${projectFixture.version}", + configItem: "BI-IT-DEVSTACK", + changeDescription: "UNDEFINED", + changeId: "1.0", + rePromote: "false", + releaseStatusJiraIssueKey: projectFixture.releaseKey, + runDisplayUrl : "", + releaseParamVersion : "3.0", + buildId : "2022-01-22_23-59-59", + buildURL : "https://jenkins-sample", + jobName : "${projectFixture.project}-cd/${projectFixture.project}-releasemanager", + testResultsURLs: getAllTestResults(projectFixture, projectWithBuild), + jenkinsLog: getJenkinsLogUrl(projectWithBuild) + ] + } + + private String getJenkinsLogUrl(String projectWithBuild) { + return "/repository/leva-documentation/${projectWithBuild}/jenkins-job-log.zip" + } + + /** + * ATTENTION!! -> As we don't have control over the parameters, + * we have to think that always we have all tests types + */ + private Map getAllTestResults(ProjectFixture projectFixture, String projectWithBuild) { + Map hardcodedUrls = [:] + String type = "unit-${projectFixture.component}" + hardcodedUrls << [(type): "/repository/leva-documentation/${projectWithBuild}/${type}.zip"] + hardcodedUrls << ['installation': "/repository/leva-documentation/${projectWithBuild}/installation.zip"] + hardcodedUrls << [ + "acceptance" : "/repository/leva-documentation/${projectWithBuild}/acceptance.zip", + 'integration' : "/repository/leva-documentation/${projectWithBuild}/integration.zip", + ] + + return hardcodedUrls + } + + private Map buildGitData(ProjectFixture projectFixture) { + return [ + commit: "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + baseTag: "ods-generated-v3.0-3.0-0b11-D", + targetTag: "ods-generated-v3.0-3.0-0b11-D", + author: "ODS Jenkins Shared Library System User (undefined)", + message: "Swingin' The Bottle", + time: "2021-04-20T14:58:31.042152", + releaseManagerRepo: "${projectFixture.releaseManagerRepo}", + releaseManagerBranch: "${projectFixture.releaseManagerBranch}", + ] + } + + private String copyPdfToTemp(ProjectFixture projectFixture, String component, Map data) { + String destPath = "${tempFolder}/reports/${component}" + new File(destPath).mkdirs() + LevaDocTestValidator testValidator = new LevaDocTestValidator(tempFolder, projectFixture) + File expected = testValidator.expectedDoc(data.build.buildId as String, component) + File tempPdf = new File("${destPath}/${expected.name}") + FileUtils.copyFile(expected, tempPdf) + return tempPdf.absolutePath + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocTestValidator.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocTestValidator.groovy new file mode 100644 index 00000000..fc53decc --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocTestValidator.groovy @@ -0,0 +1,96 @@ +package org.ods.doc.gen.leva.doc.fixture + +import de.redsix.pdfcompare.CompareResultWithPageOverflow +import de.redsix.pdfcompare.PdfComparator +import de.redsix.pdfcompare.env.SimpleEnvironment +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils + +@Slf4j +class LevaDocTestValidator { + + static final boolean GENERATE_EXPECTED_PDF_FILES = Boolean.parseBoolean(System.properties["generateExpectedPdfFiles"] as String) + static final String SAVED_DOCUMENTS = "build/reports/LeVADocs" + + private final File tempFolder + private final ProjectFixture projectFixture + + LevaDocTestValidator(File tempFolder, ProjectFixture projectFixture){ + this.tempFolder = tempFolder + this.projectFixture = projectFixture + } + + boolean validatePDF(String buildId) { + unzipGeneratedArtifact(buildId) + if (GENERATE_EXPECTED_PDF_FILES) { + copyDocWhenRecording(buildId) + return true + } else { + return compareFiles(buildId) + } + } + + private boolean compareFiles(String buildId) { + String actualPath = actualDoc(buildId).absolutePath + File expectedFile = expectedDoc(buildId, projectFixture.component) + String expectedPath = expectedFile.absolutePath + log.info("validatePDF - Expected pdf:${expectedPath}") + + String diffFileName = pdfDiffFileName(expectedFile) + + boolean filesAreEqual = new PdfComparator(expectedPath, actualPath, new CompareResultWithPageOverflow()) + .withEnvironment(new SimpleEnvironment() + .setParallelProcessing(true) + .setAddEqualPagesToResult(false)) + .compare() + .writeTo(diffFileName) + if (filesAreEqual) { + new File("${diffFileName}.pdf").delete() + } else { + FileUtils.copyFile(actualDoc(buildId), reportPdfDoc(buildId)) + } + return filesAreEqual + } + + String pdfDiffFileName(String buildId){ + def expectedFile = expectedDoc(buildId, projectFixture.component) + return "${pdfDiffFileName(expectedFile)}.pdf" + } + + String pdfDiffFileName(File expectedFile){ + return "${SAVED_DOCUMENTS}/${expectedFile.name.take(expectedFile.name.lastIndexOf('.'))}-diff" + } + + private void unzipGeneratedArtifact(String buildId) { + String source = "${tempFolder.absolutePath}/artifacts/${getArtifactName(buildId, projectFixture.component)}.zip" + String destination = "${tempFolder.absolutePath}" + log.debug("unzipGeneratedArtifact src:[${source}]") + log.debug("unzipGeneratedArtifact dest:[${destination}]") + new AntBuilder().unzip(src: source, dest: destination, overwrite: "true") + } + + private String getArtifactName(buildId, component = null) { + def comp = (component) ? "${component}-" : '' + def projectId = projectFixture.project + return "${projectFixture.docType}-${ projectId.toUpperCase()}-${comp}${projectFixture.version}-${buildId}" + } + + File expectedDoc(String buildId, component = null) { + def comp = (component) ? "${component}/" : '' + def filePath = "src/test/resources/expected/${projectFixture.project.toUpperCase()}/${comp}" + new File(filePath).mkdirs() + return new File("${filePath}/${getArtifactName(buildId, component)}.pdf") + } + + private void copyDocWhenRecording(String buildId) { + FileUtils.copyFile(actualDoc(buildId), expectedDoc(buildId, projectFixture.component)) + } + + private File actualDoc(String buildId) { + return new File("${tempFolder.getAbsolutePath()}/${getArtifactName(buildId, projectFixture.component)}.pdf") + } + + private File reportPdfDoc(String buildId) { + return new File("${SAVED_DOCUMENTS}/${getArtifactName(buildId)}-actual.pdf") + } +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocWiremock.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocWiremock.groovy new file mode 100644 index 00000000..339801c4 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocWiremock.groovy @@ -0,0 +1,64 @@ +package org.ods.doc.gen.leva.doc.fixture + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.core.test.wiremock.WiremockManager +import org.ods.doc.gen.core.test.wiremock.WiremockServers +import org.ods.doc.gen.pdf.builder.repository.WiremockDocumentRepository +import org.springframework.core.env.Environment +import org.springframework.stereotype.Component + +import javax.inject.Inject + +@Slf4j +@Component +class LevaDocWiremock { + + static final boolean GENERATE_EXPECTED_PDF_FILES = Boolean.parseBoolean(System.properties["generateExpectedPdfFiles"] as String) + static final boolean RECORD = Boolean.parseBoolean(System.properties["testRecordMode"] as String) + + public static final String JIRA_URL = "jira.url" + public static final String NEXUS_URL = "nexus.url" + public static final String BB_URL = "bitbucket.url" + + private final Environment environment + private final WiremockDocumentRepository wiremockDocumentRepository + + private WiremockManager jiraServer + private WiremockManager nexusServer + private WiremockManager bitbucketServer + + @Inject + LevaDocWiremock( + WiremockDocumentRepository wiremockDocumentRepository, + Environment environment){ + this.wiremockDocumentRepository = wiremockDocumentRepository + this.environment = environment + } + + void setUpWireMock(ProjectFixture projectFixture, File tempFolder) { + String projectKey = projectFixture.project, doctype = projectFixture.docType + log.info "Using PROJECT_KEY:${projectKey}" + log.info "Using RECORD Wiremock:${RECORD}" + log.info "Using GENERATE_EXPECTED_PDF_FILES:${GENERATE_EXPECTED_PDF_FILES}" + log.info "Using temporal folder:${tempFolder.absolutePath}" + + String component = (projectFixture.component) ? "/${projectFixture.component}" : "" + String scenarioPath = "${projectKey}${component}/${doctype}/${projectFixture.version}" + String jiraUrl = environment.getProperty(JIRA_URL) + String nexusUrl = environment.getProperty(NEXUS_URL) + String bbUrl = environment.getProperty(BB_URL) + + jiraServer = WiremockServers.JIRA.build(jiraUrl).withScenario(scenarioPath).startServer(RECORD) + nexusServer = WiremockServers.NEXUS.build(nexusUrl).withScenario(scenarioPath).startServer(RECORD) + bitbucketServer = WiremockServers.BITBUCKET.build(bbUrl).withScenario(scenarioPath).startServer(RECORD) + wiremockDocumentRepository.setUpGithubRepository(projectFixture.templatesVersion) + } + + void tearDownWiremock(){ + jiraServer?.tearDown() + nexusServer?.tearDown() + bitbucketServer?.tearDown() + wiremockDocumentRepository.tearDownWiremock() + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocWiremockURLMapper.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocWiremockURLMapper.groovy new file mode 100644 index 00000000..a9c51f8b --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/LevaDocWiremockURLMapper.groovy @@ -0,0 +1,43 @@ +package org.ods.doc.gen.leva.doc.fixture + +import groovy.util.logging.Slf4j +import org.apache.http.client.utils.URIBuilder +import org.ods.doc.gen.BitBucketClientConfig +import org.ods.doc.gen.adapters.jira.JiraService +import org.ods.doc.gen.adapters.nexus.NexusService +import org.springframework.stereotype.Service + +import javax.inject.Inject + +@Service +@Slf4j +class LevaDocWiremockURLMapper { + + private final NexusService nexusService + private final JiraService jiraService + private final BitBucketClientConfig bitBucketClientConfig + + @Inject + LevaDocWiremockURLMapper(BitBucketClientConfig bitBucketClientConfig, + JiraService jiraService, + NexusService nexusService){ + + this.bitBucketClientConfig = bitBucketClientConfig + this.jiraService = jiraService + this.nexusService = nexusService + } + + void updateURLs(LevaDocWiremock levaDocWiremock){ + updateServersUrlBase(levaDocWiremock) + } + private void updateServersUrlBase(LevaDocWiremock levaDocWiremock) { + nexusService.baseURL = new URIBuilder(levaDocWiremock.nexusServer.server().baseUrl()).build() + jiraService.baseURL = new URIBuilder(levaDocWiremock.jiraServer.server().baseUrl()).build() + bitBucketClientConfig.url = levaDocWiremock.bitbucketServer.server().baseUrl() + + log.info("[nexus][service] baseUrl: ${nexusService.baseURL}") + log.info("[jira][service] baseUrl: ${jiraService.baseURL}") + log.info("[bitbucket][service][clientConfig] url: ${bitBucketClientConfig.url}") + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/ProjectFixture.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/ProjectFixture.groovy new file mode 100644 index 00000000..78613158 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/ProjectFixture.groovy @@ -0,0 +1,46 @@ +package org.ods.doc.gen.leva.doc.fixture + +import groovy.transform.ToString +import groovy.transform.builder.Builder + +@ToString(includePackage = false, includeNames=true, ignoreNulls = true) +@Builder +class ProjectFixture { + + String project + String description + String buildNumber + String releaseKey + String version + List docsToTest + List testResults + String templatesVersion + String docType + Boolean overall + List components + String component + String validation + String releaseManagerRepo + String releaseManagerBranch + + static getProjectFixtureBuilder(Map project, String docType) { + List docsToTest = project.docsToTest?.split("\\s*,\\s*")?:[] + List testResults = project.testResults?.split("\\s*,\\s*")?:[] + List components = project.components?.split("\\s*,\\s*")?:[] + return ProjectFixture.builder() + .project(project.id as String) + .description(project.description as String) + .buildNumber(project.buildNumber as String) + .releaseKey(project.releaseId as String) + .version(project.version as String) + .docsToTest(docsToTest) + .testResults(testResults) + .templatesVersion(project.templatesVersion as String) + .validation(project.validation as String) + .releaseManagerRepo(project.releaseManagerRepo as String) + .releaseManagerBranch(project.releaseManagerBranch as String) + .components(components) + .docType(docType) + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/RepoDataBuilder.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/RepoDataBuilder.groovy new file mode 100644 index 00000000..1432846e --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/fixture/RepoDataBuilder.groovy @@ -0,0 +1,64 @@ +package org.ods.doc.gen.leva.doc.fixture + +class RepoDataBuilder { + static Map getRepoForComponent(component) { + Map data = [ + openshift: [ + builds: [ + "${component}": [ + buildId: "${component}-3", + image: "172.30.1.1:5000/ofi2004-cd/${component}@sha256:f6bc9aaed8a842a8e0a4f7e69b044a12c69e057333cd81906c08fd94be044ac4" + ] + ], + deployments: [ + "${component}": [ + podName: "${component}-3-dshjl", + podNamespace: 'ofi2004-dev', + podMetaDataCreationTimestamp: '2021-11-21T22:31:04Z', + deploymentId: "${component}-3", + podNode: 'localhost', 'podIp': '172.17.0.39', + podStatus: 'Running', + podStartupTimeStamp: '2021-11-21T22:31:04Z', + containers: [ + "${component}": "172.30.1.1:5000/ofi2004-cd/${component}@sha256:f6bc9aaed8a842a8e0a4f7e69b044a12c69e057333cd81906c08fd94be044ac4" + ] + ] + ], + sonarqubeScanStashPath: "scrr-report-${component}-1", + SCRR: "SCRR-ofi2004-${component}.docx", + 'SCRR-MD': "SCRR-ofi2004-${component}.md", + testResultsFolder: 'build/test-results/test', + testResults: '1', + xunitTestResultsStashPath: "test-reports-junit-xml-${component}-1", + CREATED_BY_BUILD: 'WIP/1' + ], + documents: [:], + git: [ + branch: 'master', + commit: '46a05fce73c811e74f4f96d8f418daa4246ace09', + previousCommit: null, + previousSucessfulCommit: null, + url: "http://bitbucket.odsbox.lan:7990/scm/ofi2004/ofi2004-${component}.git", + baseTag: '', + targetTag: '' + ] + ] + Map repo = [ + id: "${component}", + type: 'ods', + data: data, + url: "http://bitbucket.odsbox.lan:7990/scm/ofi2004/ofi2004-${component}.git", + branch: 'master', + pipelineConfig: [ + dependencies: [] + ], + metadata: [ + name: 'OpenJDK', + description: 'OpenJDK is a free and open-source implementation of the Java Platform, Standard Edition. Technologies: Spring Boot 2.1, OpenJDK 11, supplier:https://adoptopenjdk.net', + version: '3.x', + type: 'ods' + ] + ] + return repo + } +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/services/BitbucketTraceabilityUseCaseSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/services/BitbucketTraceabilityUseCaseSpec.groovy new file mode 100644 index 00000000..be6d5a60 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/services/BitbucketTraceabilityUseCaseSpec.groovy @@ -0,0 +1,121 @@ +package org.ods.doc.gen.leva.doc.services + +import groovy.json.JsonSlurper +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils +import org.json.JSONArray +import org.ods.doc.gen.adapters.git.BitbucketService +import org.ods.doc.gen.core.StringCleanup +import org.ods.doc.gen.core.test.fixture.FixtureHelper +import org.ods.doc.gen.core.test.wiremock.BitbucketWiremock +import org.ods.doc.gen.project.data.Project +import org.skyscreamer.jsonassert.JSONAssert +import org.skyscreamer.jsonassert.JSONCompareMode +import spock.lang.Ignore +import spock.lang.Specification +import spock.lang.TempDir + +import static org.assertj.core.api.Assertions.assertThat + +@Slf4j +class BitbucketTraceabilityUseCaseSpec extends Specification { + static final String EXPECTED_BITBUCKET_CSV = "expected/bitbucket.csv" + private static final String EXPECTED_BITBUCKET_JSON = "expected/bitbucket.json" + + // Change for local development or CI testing + private static final Boolean RECORD_WIREMOCK = false + private static final String BB_URL_TO_RECORD = "http://bitbucket.odsbox.lan:7990/" + private static final String BB_TOKEN = "" + private static final String PROJECT_KEY = "EDPT3" + + @TempDir + public File tempFolder + def steps = [:] + BitbucketWiremock bitbucketWiremock + Project project + BitbucketService bitbucketService + + def setup() { + log.info "Using temporal folder:${tempFolder.absolutePath}" + + steps.env.WORKSPACE = tempFolder.absolutePath + project = buildProject(logger) + bitbucketWiremock = new BitbucketWiremock().setUp("csv").startServer(RECORD_WIREMOCK, BB_URL_TO_RECORD) + bitbucketService = Spy( + new BitbucketService( + null, + bitbucketWiremock.getWireMockServer().baseUrl(), + PROJECT_KEY, + "passwordCredentialsId", + logger)) + bitbucketService.getToken() >> BB_TOKEN + } + + def buildProject(logger) { + FileUtils.copyDirectory(new FixtureHelper().getResource("bitbucketTraceability/workspace/metadata.yml").parentFile, tempFolder) + + steps.env.buildId = "1" + steps.env.WORKSPACE = "${tempFolder.absolutePath}" + + def project = new Project(steps, logger, [:]) + project.data.metadata = project.loadMetadata("metadata.yml") + project.data.metadata.id = PROJECT_KEY + project.data.build = [:] + project.data.build.targetEnvironment = "dev" + project.data.build.targetEnvironmentToken = "D" + project.data.build.version = "WIP" + project.data.build.releaseStatusJiraIssueKey = "${PROJECT_KEY}-123" + return project + } + + def cleanup() { + bitbucketWiremock.tearDown() + } + + @Ignore // TODO s2o + def "Generate the csv source code review file"() { + given: "There are two Bitbucket repositories" + def useCase = new BitbucketTraceabilityService(bitbucketService, steps, project) + + when: "the source code review file is generated" + def actualFile = useCase.generateSourceCodeReviewFile() + + then: "the generated file is as the expected csv file" + reportInfo "Generated csv file:
${readSomeLines(actualFile)}" + def expectedFile = new FixtureHelper().getResource(EXPECTED_BITBUCKET_CSV) + assertThat(new File(actualFile)).exists().isFile().hasSameTextualContentAs(expectedFile); + } + + @Ignore // TODO s2o + def "Read the csv source code review file"() { + given: "There are two Bitbucket repositories" + def useCase = new BitbucketTraceabilityService(bitbucketService, steps, project) + + and: 'The characters to change' + Map CHARACTERS = [ + '/': '/\u200B', + '@': '@\u200B', + ] + when: "the source code review file is read" + def data = useCase.readSourceCodeReviewFile( + new FixtureHelper().getResource(EXPECTED_BITBUCKET_CSV).getAbsolutePath()) + JSONArray result = new JSONArray(data) + + then: "the data contains the same csv info" + def expectedFile = new FixtureHelper().getResource(EXPECTED_BITBUCKET_JSON) + def jsonSlurper = new JsonSlurper() + def expected = jsonSlurper.parse(expectedFile) + + def removeCharacters = StringCleanup.removeCharacters(expected.toString(), CHARACTERS) + JSONAssert.assertEquals(expectedFile.text, result.toString(), JSONCompareMode.LENIENT) + } + + private String readSomeLines(String filePath){ + File file = new File(filePath) + def someLines = 3 + String lines = "" + file.withReader { r -> while( someLines-- > 0 && (( lines += r.readLine() + "
" ) != null));} + lines += "..." + return lines + } +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentChaptersFileServiceSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentChaptersFileServiceSpec.groovy new file mode 100644 index 00000000..e88db562 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/services/LeVADocumentChaptersFileServiceSpec.groovy @@ -0,0 +1,82 @@ +package org.ods.doc.gen.leva.doc.services + + + +import org.ods.doc.gen.core.test.SpecHelper +import spock.lang.Ignore + +import java.nio.file.Paths + +@Ignore +class LeVADocumentChaptersFileServiceSpec extends SpecHelper { + + def "get document chapter data"() { + given: + def service = new LeVADocumentChaptersFileService() + + def type = "myType" + def steps = [:] + def levaPath = Paths.get(steps.env.WORKSPACE, LeVADocumentChaptersFileService.DOCUMENT_CHAPTERS_BASE_DIR) + levaPath.toFile().mkdirs() + + def levaFile = Paths.get(levaPath.toString(), "${type}.yaml") + levaFile << """ + - number: 1 + heading: Section 1 + content: Content 1 + - number: 2 + heading: Section 2 + content: Content 2 + - number: 2.1 + heading: Section 2.1 + content: Content 2.1 + """ + + when: + def result = service.getDocumentChapterData(type) + + then: + result."sec1".number == "1" + result."sec1".heading == "Section 1" + result."sec1".content == "Content 1" + + result."sec2".number == "2" + result."sec2".heading == "Section 2" + result."sec2".content == "Content 2" + + result."sec2s1".number == "2.1" + result."sec2s1".heading == "Section 2.1" + result."sec2s1".content == "Content 2.1" + + cleanup: + levaPath.deleteDir() + } + + def "get document chapter data with invalid documentType"() { + given: + def steps = [:] + def service = new LeVADocumentChaptersFileService() + + when: + service.getDocumentChapterData(null) + + then: + def e = thrown(IllegalArgumentException) + e.message == "Error: unable to load document chapters. 'documentType' is undefined." + + when: + service.getDocumentChapterData("") + + then: + e = thrown(IllegalArgumentException) + e.message == "Error: unable to load document chapters. 'documentType' is undefined." + + when: + def type = "myType" + service.getDocumentChapterData(type) + + then: + e = thrown(RuntimeException) + e.message == "Error: unable to load document chapters. File 'docs/${type}.yaml' could not be read." + } +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/services/PDFUtilSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/services/PDFUtilSpec.groovy new file mode 100644 index 00000000..f434e7a0 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/services/PDFUtilSpec.groovy @@ -0,0 +1,51 @@ +package org.ods.doc.gen.leva.doc.services + +import org.apache.pdfbox.pdmodel.PDDocument +import org.ods.doc.gen.core.test.SpecHelper +import org.ods.doc.gen.core.test.fixture.FixtureHelper +import spock.lang.TempDir + +class PDFUtilSpec extends SpecHelper { + + @TempDir + public File tempFolder + + def "add watermark text"() { + given: + def util = new PDFService() + def pdfFile = new FixtureHelper().getResource("pdf.builder/Test-1.pdf") + def text = "myWatermark" + + when: + def result = util.addWatermarkText(pdfFile.toPath(), text) + + then: + try (FileInputStream fis = new FileInputStream(result.toFile())) { + def doc = PDDocument.load(fis) + doc.getNumberOfPages() == 1 + doc.getPage(0).getContents().text.contains(text) + doc.close() + } + } + + def "merge documents"() { + given: + def util = new PDFService() + + def docFile1 = new FixtureHelper().getResource("pdf.builder/Test-1.pdf") + def docFile2 = new FixtureHelper().getResource("pdf.builder/Test-2.pdf") + + when: + def result = util.merge(tempFolder.absolutePath, [docFile1.toPath(), docFile2.toPath()]) + + then: + new String(result.toFile().getBytes()).startsWith("%PDF-1.4\n") + + then: + try (FileInputStream fis = new FileInputStream(result.toFile())) { + def doc = PDDocument.load(fis) + doc.getNumberOfPages() == 2 + doc.close() + } + } +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceOverallSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceOverallSpec.groovy new file mode 100644 index 00000000..c1af5bde --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceOverallSpec.groovy @@ -0,0 +1,37 @@ +package org.ods.doc.gen.leva.doc.services.doc + +import org.ods.doc.gen.leva.doc.fixture.DocTypeProjectFixtureBase +import org.ods.doc.gen.leva.doc.fixture.DocTypeProjectFixturesOverall +import org.ods.doc.gen.leva.doc.fixture.LevaDocTestValidator +import org.ods.doc.gen.project.data.ProjectData +import spock.lang.IgnoreIf + +/** + * see LevaDocServiceTestBase + */ +class LevaDocServiceOverallSpec extends LevaDocServiceTestBase { + + // When recording mode, REMEMBER + // this test depends on LevaDocServiceWithComponentSpec + @IgnoreIf({ data.projectFixture.project == DocTypeProjectFixtureBase.DUMMY_PROJECT }) + def "Overall #projectFixture.docType for project #projectFixture.project"() { + given: "A project data" + Map data = setUpFixture(projectFixture) + prepareServiceDataParam(projectFixture, data) + LevaDocTestValidator testValidator = new LevaDocTestValidator(tempFolder, projectFixture) + String buildId = data.build.buildId + ProjectData projectData = project.getProjectData(data.projectBuild as String, data) + dataFixture.updateExpectedComponentDocs(projectData, data, projectFixture) + + when: "the user creates a LeVA document" + leVADocumentService."createOverall${projectFixture.docType}"(data) + + then: "the generated PDF is as expected" + assert testValidator.validatePDF(buildId), "see actual pdf:${testValidator.pdfDiffFileName(buildId)}" + + where: + projectFixture << new DocTypeProjectFixturesOverall().getProjects() + } + +} + diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceSpec.groovy new file mode 100644 index 00000000..e53c12bb --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceSpec.groovy @@ -0,0 +1,52 @@ +package org.ods.doc.gen.leva.doc.services.doc + +import org.ods.doc.gen.leva.doc.fixture.DocTypeProjectFixture +import org.ods.doc.gen.leva.doc.fixture.DocTypeProjectFixtureBase +import org.ods.doc.gen.leva.doc.fixture.LevaDocTestValidator +import org.ods.doc.gen.leva.doc.services.DocumentHistoryEntry +import org.ods.doc.gen.leva.doc.services.LeVADocumentService +import spock.lang.IgnoreIf + +/** + * see LevaDocServiceTestBase + */ +class LevaDocServiceSpec extends LevaDocServiceTestBase { + + @IgnoreIf({ data.projectFixture.project == DocTypeProjectFixtureBase.DUMMY_PROJECT }) + def "#projectFixture.docType - project: #projectFixture.project"() { + given: "A project data" + Map data = setUpFixture(projectFixture) + prepareServiceDataParam(projectFixture, data) + LevaDocTestValidator testValidator = new LevaDocTestValidator(tempFolder, projectFixture) + String buildId = data.build.buildId + + when: "the user creates a LeVA document" + List history = leVADocumentService."create${projectFixture.docType}"(data) + + then: "the generated PDF is as expected" + assert testValidator.validatePDF(buildId), "see actual pdf:${testValidator.pdfDiffFileName(buildId)}" + + where: "Doctypes without testResults" + projectFixture << new DocTypeProjectFixture().getProjects() + } + + def "getTestDescription"(testIssue, expected) { + given: + LeVADocumentService leVADocumentService = new LeVADocumentService(null, null, null, + null, null, null, null) + + when: + def result = leVADocumentService.getTestDescription(testIssue) + + then: + result == expected + + where: + testIssue | expected + [name: '',description: ''] | 'N/A' + [name: 'NAME',description: ''] | 'NAME' + [name: '',description: 'DESCRIPTION'] | 'DESCRIPTION' + [name: 'NAME',description: 'DESCRIPTION'] | 'DESCRIPTION' + } +} + diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceTestBase.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceTestBase.groovy new file mode 100644 index 00000000..a3c2eb99 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceTestBase.groovy @@ -0,0 +1,108 @@ +package org.ods.doc.gen.leva.doc.services.doc + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.AppConfiguration +import org.ods.doc.gen.TestConfig +import org.ods.doc.gen.core.test.workspace.TestsReports +import org.ods.doc.gen.leva.doc.fixture.LevaDocDataFixture +import org.ods.doc.gen.leva.doc.fixture.LevaDocTestValidator +import org.ods.doc.gen.leva.doc.fixture.LevaDocWiremock +import org.ods.doc.gen.leva.doc.fixture.LevaDocWiremockURLMapper +import org.ods.doc.gen.leva.doc.fixture.ProjectFixture +import org.ods.doc.gen.leva.doc.services.LeVADocumentService +import org.ods.doc.gen.project.data.Project +import org.springframework.test.annotation.DirtiesContext +import org.springframework.test.context.ActiveProfiles +import org.springframework.test.context.ContextConfiguration +import spock.lang.Shared +import spock.lang.Specification +import spock.lang.TempDir + +import javax.inject.Inject + +/** + * IMPORTANT: this test use Wiremock files to mock all the external interactions. + * + * ==>> HOW TO add more projects: + * In order to execute this against any project: + * 1. Copy into src/test/resources/workspace/ID-project + * - metadata.yml: from Jenkins workspace + * - docs: from Jenkins workspace + * - xunit: from Jenkins workspace + * - ods-state: from Jenkins workspace + * - projectData: from Jenkins workspace (or release manager repo in BB) + * 2. Add a 'release' component to metadata.yml (if not exist). Sample: + * - id: release + * name: /ID-project-release + * type: ods + * 3. Update src/test/resources/leva-doc-functional-test-projects.yml + * + * ==>> HOW TO use record/play: + * We have 2 flags to play with the test: + * - LevaDocWiremock.RECORD: When TRUE wiremock will record the interaction with the servers and compare the pdf results with the expected + * - LevaDocTestValidator.GENERATE_EXPECTED_PDF_FILES: When TRUE it will remove the expected pdfs and create a new ones + * + * ie: + * - LevaDocWiremock.RECORD=false & GENERATE_EXPECTED_PDF_FILES=false are the default values. So then it can be executed everywhere. + * - LevaDocWiremock.RECORD=true & GENERATE_EXPECTED_PDF_FILES=false will record and compare the generate pdfs with the 'old' expected files + * ==> with this combination, if there's an error, + * we can compare new pdf with the old one, and see the implications of our changes in the pdfs + * see here _build/reports/LeVADocs_ the compared results images + * - LevaDocWiremock.RECORD=true & GENERATE_EXPECTED_PDF_FILES=true will record and generate new pdf expected files + * + */ +@Slf4j +@DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS) +@ActiveProfiles(["test"]) +@ContextConfiguration(classes=[TestConfig.class, AppConfiguration.class]) +abstract class LevaDocServiceTestBase extends Specification { + + @Shared + @TempDir + File tempFolder + + @Inject + LeVADocumentService leVADocumentService + + @Inject + LevaDocWiremockURLMapper levaDocWiremockProxyData + + @Inject + TestsReports testsReports + + @Inject + Project project + + @Inject + LevaDocWiremock levaDocWiremock + + LevaDocDataFixture dataFixture + + def setupSpec(){ + new File(LevaDocTestValidator.SAVED_DOCUMENTS).mkdirs() + } + + def setup() { + dataFixture = new LevaDocDataFixture(tempFolder, project, testsReports) + } + + def cleanup() { + levaDocWiremock.tearDownWiremock() + } + + Map setUpFixture(ProjectFixture projectFixture) { + log.info("setUpFixture: project:[{}], docType:[{}], overall:[{}]", projectFixture.project, projectFixture.docType, projectFixture.overall) + levaDocWiremock.setUpWireMock(projectFixture, tempFolder) + Map data = dataFixture.buildFixtureData(projectFixture) + levaDocWiremockProxyData.updateURLs(levaDocWiremock) + return data + } + + void prepareServiceDataParam(ProjectFixture projectFixture, Map data) { + data.tmpFolder = tempFolder.getAbsolutePath() + data.documentType = projectFixture.docType + data.projectBuild = "${projectFixture.project}-${projectFixture.buildNumber}" + data.projectId = projectFixture.project + data.buildNumber = projectFixture.buildNumber + } +} \ No newline at end of file diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceWithComponentSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceWithComponentSpec.groovy new file mode 100644 index 00000000..1cb8b7f4 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceWithComponentSpec.groovy @@ -0,0 +1,33 @@ +package org.ods.doc.gen.leva.doc.services.doc + +import org.ods.doc.gen.leva.doc.fixture.DocTypeProjectFixtureBase +import org.ods.doc.gen.leva.doc.fixture.DocTypeProjectFixtureWithComponent +import org.ods.doc.gen.leva.doc.fixture.LevaDocTestValidator +import spock.lang.IgnoreIf + +/** + * see LevaDocServiceTestBase + */ +class LevaDocServiceWithComponentSpec extends LevaDocServiceTestBase { + + @IgnoreIf({ data.projectFixture.project == DocTypeProjectFixtureBase.DUMMY_PROJECT }) + def "#projectFixture.docType - component: #projectFixture.component - project: #projectFixture.project"() { + given: "A project data" + Map data = setUpFixture(projectFixture) + prepareServiceDataParam(projectFixture, data) + LevaDocTestValidator testValidator = new LevaDocTestValidator(tempFolder, projectFixture) + String buildId = data.build.buildId + data.repo = dataFixture.getModuleData(projectFixture) + + when: "the user creates a LeVA document" + leVADocumentService."create${projectFixture.docType}"(data) + + then: "the generated PDF is as expected" + assert testValidator.validatePDF(buildId), "see actual pdf:${testValidator.pdfDiffFileName(buildId)}" + + where: "Doctypes with modules" + projectFixture << new DocTypeProjectFixtureWithComponent().getProjects() + } + +} + diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceWithTestSpec.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceWithTestSpec.groovy new file mode 100644 index 00000000..97ed9ea9 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/services/doc/LevaDocServiceWithTestSpec.groovy @@ -0,0 +1,31 @@ +package org.ods.doc.gen.leva.doc.services.doc + +import org.ods.doc.gen.leva.doc.fixture.DocTypeProjectFixtureBase +import org.ods.doc.gen.leva.doc.fixture.DocTypeProjectFixtureWithTestData +import org.ods.doc.gen.leva.doc.fixture.LevaDocTestValidator +import spock.lang.IgnoreIf + +/** + * see LevaDocServiceTestBase + */ +class LevaDocServiceWithTestSpec extends LevaDocServiceTestBase { + + @IgnoreIf({ data.projectFixture.project == DocTypeProjectFixtureBase.DUMMY_PROJECT }) + def "#projectFixture.docType with tests results - project: #projectFixture.project"() { + given: "A project data" + Map data = setUpFixture(projectFixture) + prepareServiceDataParam(projectFixture, data) + LevaDocTestValidator testValidator = new LevaDocTestValidator(tempFolder, projectFixture) + String buildId = data.build.buildId + + when: "the user creates a LeVA document" + leVADocumentService."create${projectFixture.docType}"(data) + + then: "the generated PDF is as expected" + assert testValidator.validatePDF(buildId), "see actual pdf:${testValidator.pdfDiffFileName(buildId)}" + + where: "Doctypes with tests results" + projectFixture << new DocTypeProjectFixtureWithTestData().getProjects() + } + +} \ No newline at end of file diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/BitbucketServiceMock.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/BitbucketServiceMock.groovy new file mode 100644 index 00000000..8959f2b4 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/BitbucketServiceMock.groovy @@ -0,0 +1,25 @@ +package org.ods.doc.gen.leva.doc.test.doubles + +import org.ods.doc.gen.BitBucketClientConfig +import org.ods.doc.gen.adapters.git.BitbucketService +import org.ods.doc.gen.core.ZipFacade +import org.springframework.context.annotation.Profile +import org.springframework.stereotype.Service + +import javax.inject.Inject + +@Profile("test") +@Service +class BitbucketServiceMock extends BitbucketService { + + @Inject + BitbucketServiceMock(BitBucketClientConfig bitBucketClientConfig, ZipFacade zipFacade) { + super(bitBucketClientConfig, zipFacade) + } + + @Override + String getBitbucketURLForDocs() { + return "http://wiremockTest" + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/JiraServiceForWireMock.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/JiraServiceForWireMock.groovy new file mode 100644 index 00000000..ec7d550a --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/JiraServiceForWireMock.groovy @@ -0,0 +1,48 @@ +package org.ods.doc.gen.leva.doc.test.doubles + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.adapters.jira.JiraService +import org.springframework.beans.factory.annotation.Value +import org.springframework.context.annotation.Profile +import org.springframework.stereotype.Service + +@Slf4j +@Profile("test") +@Service +class JiraServiceForWireMock extends JiraService { + + JiraServiceForWireMock(@Value('${jira.url}') String baseURL, + @Value('${jira.username}') String username, + @Value('${jira.password}') String password) { + super(baseURL, username, password) + } + + @Override + void appendCommentToIssue(String issueIdOrKey, String comment) { + log.warn("appendCommentToIssue - issueIdOrKey:$issueIdOrKey") + } + + @Override + void updateTextFieldsOnIssue(String issueIdOrKey, Map fields) { + log.warn("updateTextFieldsOnIssue - issueIdOrKey:$issueIdOrKey") + } + + void setBaseURL(URI jiraNewBaseUrl) { + log.info("Updating Jira baseUrl to ${jiraNewBaseUrl}") + super.baseURL = jiraNewBaseUrl + log.info("Updated Jira baseUrl to ${super.baseURL}") + } + + Map getFileFromJira(String url) { + url = replaceHostInUrlWithBaseUrl(url) + return super.getFileFromJira(url) + } + + private String replaceHostInUrlWithBaseUrl(String url) { + url = url.replace("http://", "").replace("https://", "") + int pos = url.indexOf("/") + url = url.substring(pos) + url = super.baseURL.toString() + url + return url + } +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/NexusServiceForWireMock.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/NexusServiceForWireMock.groovy new file mode 100644 index 00000000..58ed9b5b --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/NexusServiceForWireMock.groovy @@ -0,0 +1,27 @@ +package org.ods.doc.gen.leva.doc.test.doubles + +import org.apache.http.client.utils.URIBuilder +import org.ods.doc.gen.adapters.nexus.NexusService +import org.springframework.beans.factory.annotation.Value +import org.springframework.context.annotation.Profile +import org.springframework.stereotype.Repository + +import javax.inject.Inject + +@Profile("test") +@Repository +class NexusServiceForWireMock extends NexusService { + + @Inject + NexusServiceForWireMock(@Value('${nexus.url}') String baseURL, + @Value('${nexus.username}') String username, + @Value('${nexus.password}') String password) { + super(baseURL, username, password) + } + + @Override + URI storeArtifact(String directory, String name, String artifactPath, String contentType) { + return new URIBuilder("${baseURL}/repository/${directory}/${name}").build() + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/WkhtmltopdfDockerService.groovy b/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/WkhtmltopdfDockerService.groovy new file mode 100644 index 00000000..396beff4 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/leva/doc/test/doubles/WkhtmltopdfDockerService.groovy @@ -0,0 +1,62 @@ +package org.ods.doc.gen.leva.doc.test.doubles + +import groovy.util.logging.Slf4j +import org.ods.doc.gen.pdf.builder.services.WkhtmltopdfService +import org.springframework.context.annotation.Profile +import org.springframework.stereotype.Service +import org.testcontainers.containers.BindMode +import org.testcontainers.containers.GenericContainer +import org.testcontainers.containers.output.Slf4jLogConsumer +import org.testcontainers.containers.startupcheck.IndefiniteWaitOneShotStartupCheckStrategy +import org.testcontainers.utility.DockerImageName + +import java.nio.file.Path + +@Slf4j +@Service +@Profile("test") +class WkhtmltopdfDockerService extends WkhtmltopdfService { + + static final String IMAGE__BASE = "jdk-11_openj9-wkhtmltopdf-ubi:local" + static final DockerImageName DOCGEN_IMAGE = DockerImageName.parse(IMAGE__BASE) + static final String TMP_PDF = "/tmp/pdf" + public static final String WINDOWS_MNT = "/mnt/c/" + public static final String WINDOWS_C = "C:\\" + + void executeCmd(Path tmpDir, Path documentHtmlFile, List cmd) { + log.info "executing cmd: ${cmd}" + + String[] cmdInDocker = useDockerPaths(cmd, tmpDir.toString()) + log.info "cmdInDocker: ${cmdInDocker}" + + String pathToFiles = replaceWindowsPath(tmpDir) + log.info "pathToFiles: ${pathToFiles}" + + new GenericContainer<>(DOCGEN_IMAGE) + .withFileSystemBind(pathToFiles, TMP_PDF, BindMode.READ_WRITE) + .withLogConsumer(new Slf4jLogConsumer(log)) + .withCommand(cmdInDocker) + .withStartupCheckStrategy( + new IndefiniteWaitOneShotStartupCheckStrategy() + ).start() + + log.info "executing cmd end" + } + + private String replaceWindowsPath(Path tmpDir) { + return tmpDir.toString().replace(WINDOWS_C, WINDOWS_MNT).replace("\\", "/") + } + + private String[] useDockerPaths(List cmd, String tmpDirPath) { + def cmdLinux = [] + cmd.forEach { it -> + if (it.contains(tmpDirPath)) { + cmdLinux << it.replace(tmpDirPath, TMP_PDF).replace("\\", "/") + } else { + cmdLinux << it + } + } + return cmdLinux + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/pdf/builder/api/DocGenControllerSpec.groovy b/src/test/groovy/org/ods/doc/gen/pdf/builder/api/DocGenControllerSpec.groovy new file mode 100644 index 00000000..436c71c6 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/pdf/builder/api/DocGenControllerSpec.groovy @@ -0,0 +1,81 @@ +package org.ods.doc.gen.pdf.builder.api + +import groovy.json.JsonOutput +import groovy.util.logging.Slf4j +import org.ods.doc.gen.core.FileSystemHelper +import org.ods.doc.gen.pdf.builder.services.PdfGenerationService +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest +import org.springframework.boot.test.mock.mockito.MockBean +import org.springframework.http.MediaType +import org.springframework.test.web.servlet.MockMvc +import spock.lang.Specification +import spock.lang.TempDir + +import javax.inject.Inject +import java.nio.file.Files +import java.nio.file.Path + +import static org.mockito.Mockito.when +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status + +@WebMvcTest(DocGenController.class) +@Slf4j +class DocGenControllerSpec extends Specification { + + @TempDir + public Path tempFolder + + @Inject + private MockMvc mockMvc + + @MockBean + private PdfGenerationService service; + + @MockBean + private FileSystemHelper fileSystemHelper + + def "/document API is configured OK"() { + given: "A temporal folder " + String id = "${metadataValue.type}-v${metadataValue.version}" + when(fileSystemHelper.createTempDirectory(id)).thenReturn(tempFolder) + + and: "PdfGenerationService is mocked" + Path pdfFile = Path.of("src/test/resources/pdf.builder","CFTP-ordgp-WIP-8.pdf") + when(service.generatePdfFile(metadataValue, dataValue, tempFolder)).thenReturn(pdfFile) + + expect: "a client call to /document return the initial json as pdf data" + def postContent = JsonOutput.toJson([metadata: metadataValue, data: dataValue]) + def returnValue = this.mockMvc + .perform(post("/document").contentType(MediaType.APPLICATION_JSON).content(postContent)) + .andExpect(status().isOk()).andReturn() + // .andExpect(jsonPath("\$.data").value(pdfValue)) + returnValue != null + and: "the tmp folder is deleted" + !Files.exists(tempFolder) + + where: "use valid data to generate pdf" + metadataValue = [ type: "InstallationReport", version: "1.0" ] + dataValue = [ name: "Project Phoenix", metadata: [ header: "header" ]] + } + + def "/document API error msg"() { + expect: "/document return error code" + def postContent = JsonOutput.toJson([metadata: metadataValue, data: dataValue]) + def mvcResult = this.mockMvc + .perform(post("/document").contentType(MediaType.APPLICATION_JSON).content(postContent)) + .andExpect(status().isPreconditionFailed()) + .andReturn() + + and: "msg error" + mvcResult.response.contentAsString.startsWith("missing argument") + + where: "not valid post content" + dataValue | metadataValue + [ name: "Project Phoenix", metadata: [ header: "header" ]] | [ version: "1.0" ] + [ name: "Project Phoenix", metadata: [ header: "header" ]] | [ type: "InstallationReport" ] + [ ] | [ type: "InstallationReport", version: "1.0" ] + null | [ type: "InstallationReport", version: "1.0" ] + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/pdf/builder/repository/BitBucketDocumentTemplatesRepositorySpec.groovy b/src/test/groovy/org/ods/doc/gen/pdf/builder/repository/BitBucketDocumentTemplatesRepositorySpec.groovy new file mode 100644 index 00000000..b1cd9938 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/pdf/builder/repository/BitBucketDocumentTemplatesRepositorySpec.groovy @@ -0,0 +1,66 @@ +package org.ods.doc.gen.pdf.builder.repository + +import feign.FeignException +import feign.Request +import feign.RequestTemplate +import org.ods.doc.gen.BitBucketClientConfig +import org.ods.doc.gen.adapters.git.BitbucketService +import org.ods.doc.gen.core.ZipFacade +import org.springframework.beans.factory.annotation.Value +import spock.lang.Specification + +class BitBucketDocumentTemplatesRepositorySpec extends Specification { + + @Value('${bitbucket.username}') + String bitbucketUsername + @Value('${bitbucket.password}') + String bitbucketPassword + @Value('${bitbucket.url}') + String bitbucketUrl + + def "error msg in request by #exceptionTypeName"(){ + given: + def version = "1.0" + String bbDocProject = "?" + String bbRepo = "?" + ZipFacade zipFacade = new ZipFacade() + BitbucketService bitbucketService = Spy(new BitbucketService( + new BitBucketClientConfig(bitbucketUsername, bitbucketPassword, bitbucketUrl), + zipFacade + )) + def repository = new BitBucketDocumentTemplatesRepository( + bitbucketService, + zipFacade, + "basePath", bbDocProject, bbRepo) + + bitbucketService.downloadRepo(_,_,_,_) >> { throw createException(exceptionTypeName)} + when: + repository.getTemplatesForVersion(version) + + then: + def e = thrown(RuntimeException) + + where: + exceptionTypeName << ["BadRequest", "Unauthorized", "NotFound", "Other"] + } + + private FeignException createException(String exceptionTypeName) { + def headers = ["a":"aa"] + def request = Request.create(Request.HttpMethod.GET, "url", headers, Request.Body.create("h"), new RequestTemplate()) + def feignException + switch(exceptionTypeName) { + case "BadRequest": + feignException = new FeignException.BadRequest("BadRequest", request, null, null) + break + case "Unauthorized": + feignException = new FeignException.Unauthorized("BadRequest", request, null, null) + break + case "NotFound": + feignException = new FeignException.NotFound("BadRequest", request, null, null) + break + default: + feignException = new FeignException(500, "") + } + return feignException + } +} diff --git a/src/test/groovy/org/ods/doc/gen/pdf/builder/repository/WiremockDocumentRepository.groovy b/src/test/groovy/org/ods/doc/gen/pdf/builder/repository/WiremockDocumentRepository.groovy new file mode 100644 index 00000000..dc359106 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/pdf/builder/repository/WiremockDocumentRepository.groovy @@ -0,0 +1,101 @@ +package org.ods.doc.gen.pdf.builder.repository + +import com.github.tomakehurst.wiremock.client.MappingBuilder +import com.github.tomakehurst.wiremock.client.WireMock +import groovy.util.logging.Slf4j +import org.ods.doc.gen.BitBucketClientConfig +import org.ods.doc.gen.GithubClientConfig +import org.ods.doc.gen.core.test.wiremock.WireMockFacade +import org.springframework.stereotype.Repository + +import static com.github.tomakehurst.wiremock.client.WireMock.equalTo + +@Slf4j +@Repository +class WiremockDocumentRepository { + + public static final String GH_TEMPLATE = "pdf.builder/ods-document-generation-templates-github-1.2.zip" + public static final String BB_TEMPLATE = "pdf.builder/ods-document-generation-templates-bitbucket-1.2.zip" + + public static final String BB_URL = "/rest/api/latest/projects/myProject/repos/myRepo/archive" + public static final String BB_PROJECT = "myProject" + public static final String BB_REPO = "myRepo" + + public static final String GH_URL = "/opendevstack/ods-document-generation-templates/archive/vVERSION_ID.zip" + public static final String VERSION = "VERSION_ID" + + public static final int RETURN_OK = 200 + public static final String APP = "application/octet-stream" + public static final String ACCEPT = "Accept" + public static final String ZIP = "zip" + + private WireMockFacade wireMockFacade + + private final BitBucketClientConfig bitBucketClientConfig + private final GithubClientConfig githubClientConfig + private final BitBucketDocumentTemplatesRepository bitBucketDocumentTemplatesRepository + + WiremockDocumentRepository(BitBucketClientConfig bitBucketClientConfig, + GithubClientConfig githubClientConfig, + BitBucketDocumentTemplatesRepository bitBucketDocumentTemplatesRepository){ + this.githubClientConfig = githubClientConfig + this.bitBucketClientConfig = bitBucketClientConfig + this.bitBucketDocumentTemplatesRepository = bitBucketDocumentTemplatesRepository + wireMockFacade = new WireMockFacade() + } + + def tearDownWiremock(){ + wireMockFacade.stopWireMockServer() + } + + void setUpGithubRepository(String version) { + String githubUrl = mockTemplatesZipArchiveDownload(GH_URL.replace(VERSION, version), GH_TEMPLATE) + log.info("WireMockServer: [github: ${githubUrl}]") + githubClientConfig.setUrl(githubUrl) + githubClientConfig.setHttpProxyHost(null) + bitBucketDocumentTemplatesRepository.bbDocProject = BitBucketDocumentTemplatesRepository.NONE + } + + void setUpBitbucketRepository(String version) { + Map queryParams = [:] + queryParams.at = equalTo("${BitBucketDocumentTemplatesRepository.BRANCH}${version}") + queryParams.format = equalTo(ZIP) + + String serverUrl = mockTemplatesZipArchiveDownload(BB_URL, BB_TEMPLATE, RETURN_OK, queryParams) + bitBucketClientConfig.setUrl(serverUrl) + bitBucketDocumentTemplatesRepository.bbDocProject = BB_PROJECT + bitBucketDocumentTemplatesRepository.bbRepo = BB_REPO + } + + private String mockTemplatesZipArchiveDownload(String urlPartialPath, + String templatesName, + int returnStatus = RETURN_OK, + Map queryParams = null) { + def zipArchiveContent = getResource(templatesName).readBytes() + return startDocumentsWiremock(urlPartialPath, zipArchiveContent, returnStatus, queryParams) + } + + private String startDocumentsWiremock( + String urlPartialPath, + byte[] zipArchiveContent, + int returnStatus = RETURN_OK, + Map queryParams = null) { + MappingBuilder mappingBuilder = stubMap(urlPartialPath, queryParams, zipArchiveContent, returnStatus) + wireMockFacade.startWireMockServer().stubFor(mappingBuilder) + return wireMockFacade.wireMockServer.baseUrl() + } + + private MappingBuilder stubMap(String urlPartialPath, Map queryParams, byte[] zipArchiveContent, int returnStatus) { + MappingBuilder maps + maps = WireMock.get(WireMock.urlPathEqualTo(urlPartialPath)).withHeader(ACCEPT, WireMock.equalTo(APP)) + if (queryParams) + maps.withQueryParams(queryParams) + maps.willReturn(WireMock.aResponse().withBody(zipArchiveContent).withStatus(returnStatus)) + return maps + } + + private File getResource(String name) { + new File(getClass().getClassLoader().getResource(name).getFile()) + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/pdf/builder/services/PdfGenerationServiceSpec.groovy b/src/test/groovy/org/ods/doc/gen/pdf/builder/services/PdfGenerationServiceSpec.groovy new file mode 100644 index 00000000..3ae1233f --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/pdf/builder/services/PdfGenerationServiceSpec.groovy @@ -0,0 +1,91 @@ +package org.ods.doc.gen.pdf.builder.services + +import de.redsix.pdfcompare.CompareResultWithPageOverflow +import de.redsix.pdfcompare.PdfComparator +import de.redsix.pdfcompare.env.SimpleEnvironment +import groovy.json.JsonSlurper +import groovy.util.logging.Slf4j +import org.apache.commons.io.FileUtils +import org.apache.commons.io.FilenameUtils +import org.ods.doc.gen.TestConfig +import org.ods.doc.gen.core.test.fixture.FixtureHelper +import org.ods.doc.gen.pdf.builder.repository.WiremockDocumentRepository +import org.springframework.test.context.ActiveProfiles +import org.springframework.test.context.ContextConfiguration +import spock.lang.Specification +import spock.lang.TempDir + +import javax.inject.Inject +import java.nio.file.Path +import java.nio.file.Paths + +@Slf4j +@ActiveProfiles("test") +@ContextConfiguration(classes= [TestConfig.class]) +class PdfGenerationServiceSpec extends Specification { + + public static final String REPORT_FOLDER = "build/reports/pdf" + @Inject + PdfGenerationService pdfGenerationService + + @TempDir + public Path tempFolder + + @Inject + WiremockDocumentRepository wiremockDocumentRepository + + def cleanup(){ + wiremockDocumentRepository.tearDownWiremock() + } + + def "Generate pdf from #repository"() { + given: "a document repository" + def jsonRawData = getJsonRawData(fixtureElement.raw_data as String) + String metadataVersion = fixtureElement.metadata.version as String + if (repository == "Github"){ + wiremockDocumentRepository.setUpGithubRepository(metadataVersion) + } else { + wiremockDocumentRepository.setUpBitbucketRepository(metadataVersion) + } + + when: "generate pdf file" + Path resultFile = pdfGenerationService.generatePdfFile(fixtureElement.metadata as Map, jsonRawData as Map, tempFolder) + + then: "the result is the expected pdf" + comparePdfs(fixtureElement.expected as String, resultFile.toString()) + + where: "BB and GH repos" + repository << ["Github", "BitBucket"] + fixtureElement = [ + expected:"pdf.builder/CFTP-ordgp-WIP-8.pdf", + raw_data:"pdf.builder/CFTP-ordgp-WIP-8.json", + metadata: [ type: "CFTP-5", version: "1.2" ] + ] + } + + private Object getJsonRawData(String raw_data){ + def pdfRawData = new FixtureHelper().getResource(raw_data) + return new JsonSlurper().parse(pdfRawData) + } + + private comparePdfs(String expected, String resultFile) { + new File(REPORT_FOLDER).mkdirs() + File expectedFile = new FixtureHelper().getResource(expected) + String expectedPath = expectedFile.absolutePath + String fileName = FilenameUtils.removeExtension(expectedFile.name) + String diffFileName = REPORT_FOLDER + "/${fileName}-diff" + boolean filesAreEqual = new PdfComparator(expectedPath, resultFile, new CompareResultWithPageOverflow()) + .withEnvironment(new SimpleEnvironment() + .setParallelProcessing(true) + .setAddEqualPagesToResult(false)) + .compare().writeTo(diffFileName) + if (filesAreEqual) { + new File("${diffFileName}.pdf").delete() + } else { + String actualPdf = "${REPORT_FOLDER}/${fileName}-actual.pdf" + FileUtils.copyFile(Paths.get(resultFile).toFile(), Paths.get(actualPdf).toFile()) + } + return filesAreEqual + } + +} diff --git a/src/test/groovy/org/ods/doc/gen/pdf/builder/services/WkhtmltopdfServiceSpec.groovy b/src/test/groovy/org/ods/doc/gen/pdf/builder/services/WkhtmltopdfServiceSpec.groovy new file mode 100644 index 00000000..9c8c25a2 --- /dev/null +++ b/src/test/groovy/org/ods/doc/gen/pdf/builder/services/WkhtmltopdfServiceSpec.groovy @@ -0,0 +1,25 @@ +package org.ods.doc.gen.pdf.builder.services + +import spock.lang.Specification +import spock.lang.TempDir + +import java.nio.file.Path + +class WkhtmltopdfServiceSpec extends Specification { + + @TempDir + public Path tempFolder + + def "execution throw error"(){ + given: + def service = new WkhtmltopdfService() + def documentHtmlFile = Path.of("src/test/resources/pdf.builder","InstallationReport.html.tmpl") + def cmd = ["wkhtmltopdf", "--encoding", "UTF-8", "--no-outline", "--print-media-type"] + + when: + service.executeCmd(tempFolder, documentHtmlFile, cmd) + + then: + def e = thrown(IllegalStateException) + } +} diff --git a/src/test/groovy/util/DocUtilsSpec.groovy b/src/test/groovy/util/DocUtilsSpec.groovy deleted file mode 100644 index ca607080..00000000 --- a/src/test/groovy/util/DocUtilsSpec.groovy +++ /dev/null @@ -1,68 +0,0 @@ -package util - -import spock.lang.Specification - -import java.nio.file.Files -import java.nio.file.StandardCopyOption - -class DocUtilsSpec extends Specification { - - def "test extractZipArchive"() { - given: - def zipIs = getClass().getClassLoader().getResourceAsStream('templates.zip') - def zipFile = Files.createTempFile('templates', '.zip') - Files.copy(zipIs, zipFile, StandardCopyOption.REPLACE_EXISTING) - def targetDir = Files.createTempDirectory('tst') - def ret - - when: 'Target dir is empty and we extract the full archive' - ret = DocUtils.extractZipArchive(zipFile, targetDir) - - then: 'Correctly extracted' - ret == targetDir - Files.isDirectory(ret) - - when: 'Target dir has content and we extract the full archive' - ret = DocUtils.extractZipArchive(zipFile, targetDir) - - then: 'Correctly extracted' - ret == targetDir - Files.isDirectory(ret) - - when: 'Target dir has content and we extract part of the archive' - ret = DocUtils.extractZipArchive(zipFile, targetDir, 'templates') - - then: 'Correctly extracted' - ret == targetDir - Files.isDirectory(ret) - - when: 'Target dir is empty and we extract part of the archive' - targetDir.deleteDir() - Files.createDirectory(targetDir) - ret = DocUtils.extractZipArchive(zipFile, targetDir, 'templates') - - then: 'Correctly extracted' - ret == targetDir - Files.isDirectory(ret) - - when: 'Target dir does not exist and we extract part of the archive' - targetDir.deleteDir() - ret = DocUtils.extractZipArchive(zipFile, targetDir, 'templates') - - then: 'Correctly extracted' - ret == targetDir - Files.isDirectory(ret) - - when: 'Target dir does not exist and we extract the full archive' - targetDir.deleteDir() - ret = DocUtils.extractZipArchive(zipFile, targetDir, 'templates') - - then: 'Correctly extracted' - ret == targetDir - Files.isDirectory(ret) - - cleanup: - targetDir.deleteDir() - } - -} diff --git a/src/test/groovy/util/FileToolsSpec.groovy b/src/test/groovy/util/FileToolsSpec.groovy deleted file mode 100644 index d0f4e7a5..00000000 --- a/src/test/groovy/util/FileToolsSpec.groovy +++ /dev/null @@ -1,288 +0,0 @@ -package util - -import spock.lang.Specification - -import java.nio.file.Files -import java.nio.file.attribute.FileAttribute - -class FileToolsSpec extends Specification { - - def "test withTempFile with parent"() { - given: - def parent = Files.createTempDirectory('tst') - def prefix = 'tst' - def suffix = '.ext' - def attrs = [] - GroovySpy(Files, global: true) - def ret - def tempFile = null - - when: 'The closure succeeds' - ret = FileTools.withTempFile(parent, prefix, suffix, attrs) { return [it] } - - then: 'The temp file was created with Files and has been deleted' - 1 * Files.createTempFile(parent, prefix, suffix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - ret[0].is(tempFile) - Files.notExists(tempFile) - - when: 'The closure throws an exception' - FileTools.withTempFile(parent, prefix, suffix, attrs) { throw new RuntimeException() } - - then: 'A TempFile was created with Files and deleted afterwards. The exception is propagated.' - 1 * Files.createTempFile(parent, prefix, suffix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - Files.notExists(tempFile) - thrown(RuntimeException) - - cleanup: - parent.deleteDir() - Files.deleteIfExists(tempFile) - } - - def "test withTempFile without parent"() { - given: - def prefix = 'tst' - def suffix = '.ext' - def attrs = [] - GroovySpy(Files, global: true) - def ret - def tempFile = null - - when: 'The closure succeeds' - ret = FileTools.withTempFile(prefix, suffix, attrs) { return [it] } - - then: 'The temp file was created with Files and has been deleted' - 1 * Files.createTempFile(prefix, suffix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - ret[0].is(tempFile) - Files.notExists(tempFile) - - when: 'The closure throws an exception' - FileTools.withTempFile(prefix, suffix, attrs) { throw new RuntimeException() } - - then: 'A TempFile was created with Files and deleted afterwards. The exception is propagated.' - 1 * Files.createTempFile(prefix, suffix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - Files.notExists(tempFile) - thrown(RuntimeException) - - cleanup: - Files.deleteIfExists(tempFile) - } - - def "test newTempFile with parent"() { - given: - def parent = Files.createTempDirectory('tst') - def prefix = 'tst' - def suffix = '.ext' - def attrs = [] - GroovySpy(Files, global: true) - def ret - def tempFile = null - def closureArg = null - - when: 'The closure throws an exception' - FileTools.newTempFile(parent, prefix, suffix, attrs) { closureArg = it; throw new RuntimeException() } - - then: 'A TempFile was created with Files and deleted afterwards. The exception is propagated.' - 1 * Files.createTempFile(parent, prefix, suffix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - closureArg.is(tempFile) - Files.notExists(tempFile) - thrown(RuntimeException) - - when: 'The closure succeeds' - ret = FileTools.newTempFile(parent, prefix, suffix, attrs) { closureArg = it; return null } - - then: 'The temp file was created with Files and has been deleted' - 1 * Files.createTempFile(parent, prefix, suffix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - ret.is(tempFile) - closureArg.is(tempFile) - Files.exists(tempFile) - - cleanup: - parent.deleteDir() - Files.deleteIfExists(tempFile) - } - - def "test newTempFile without parent"() { - given: - def prefix = 'tst' - def suffix = '.ext' - def attrs = [] - GroovySpy(Files, global: true) - def ret - def tempFile = null - def closureArg = null - - when: 'The closure throws an exception' - FileTools.newTempFile(prefix, suffix, attrs) { closureArg = it; throw new RuntimeException() } - - then: 'A TempFile was created with Files and deleted afterwards. The exception is propagated.' - 1 * Files.createTempFile(prefix, suffix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - closureArg.is(tempFile) - Files.notExists(tempFile) - thrown(RuntimeException) - - when: 'The closure succeeds' - ret = FileTools.newTempFile(prefix, suffix, attrs) { closureArg = it; return null } - - then: 'The temp file was created with Files and has been deleted' - 1 * Files.createTempFile(prefix, suffix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - ret.is(tempFile) - closureArg.is(tempFile) - Files.exists(tempFile) - - cleanup: - Files.deleteIfExists(tempFile) - } - - def "test withTempDir with parent"() { - given: - def parent = Files.createTempDirectory('tst') - def prefix = 'tst' - def attrs = [] - GroovySpy(Files, global: true) - def ret - def tempFile = null - - when: 'The closure succeeds' - ret = FileTools.withTempDir(parent, prefix, attrs) { return [it] } - - then: 'The temp file was created with Files and has been deleted' - 1 * Files.createTempDirectory(parent, prefix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - ret[0].is(tempFile) - Files.notExists(tempFile) - - when: 'The closure throws an exception' - FileTools.withTempDir(parent, prefix, attrs) { throw new RuntimeException() } - - then: 'A TempFile was created with Files and deleted afterwards. The exception is propagated.' - 1 * Files.createTempDirectory(parent, prefix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - Files.notExists(tempFile) - thrown(RuntimeException) - - cleanup: - parent.deleteDir() - } - - def "test withTempDir without parent"() { - given: - def prefix = 'tst' - def attrs = [] - GroovySpy(Files, global: true) - def ret - def tempFile = null - - when: 'The closure succeeds' - ret = FileTools.withTempDir(prefix, attrs) { return [it] } - - then: 'The temp file was created with Files and has been deleted' - 1 * Files.createTempDirectory(prefix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - ret[0].is(tempFile) - Files.notExists(tempFile) - - when: 'The closure throws an exception' - FileTools.withTempDir(prefix, attrs) { throw new RuntimeException() } - - then: 'A TempFile was created with Files and deleted afterwards. The exception is propagated.' - 1 * Files.createTempDirectory(prefix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - Files.notExists(tempFile) - thrown(RuntimeException) - - cleanup: - Files.deleteIfExists(tempFile) - } - - def "test newTempDir with parent"() { - given: - def parent = Files.createTempDirectory('tst') - def prefix = 'tst' - def attrs = [] - GroovySpy(Files, global: true) - def ret - def tempFile = null - def closureArg = null - - when: 'The closure succeeds' - ret = FileTools.newTempDir(parent, prefix, attrs) { closureArg = it; return null } - - then: 'The temp file was created with Files and has been deleted' - 1 * Files.createTempDirectory(parent, prefix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - ret.is(tempFile) - closureArg.is(tempFile) - Files.exists(tempFile) - - when: 'The closure throws an exception' - FileTools.newTempDir(parent, prefix, attrs) { closureArg = it; throw new RuntimeException() } - - then: 'A TempFile was created with Files and deleted afterwards. The exception is propagated.' - 1 * Files.createTempDirectory(parent, prefix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - closureArg.is(tempFile) - Files.notExists(tempFile) - thrown(RuntimeException) - - cleanup: - parent.deleteDir() - } - - def "test newTempDir without parent"() { - given: - def prefix = 'tst' - def attrs = [] - GroovySpy(Files, global: true) - def ret - def tempFile = null - def closureArg = null - - when: 'The closure succeeds' - ret = FileTools.newTempDir(prefix, attrs) { closureArg = it; return null } - - then: 'The temp file was created with Files and has been deleted' - 1 * Files.createTempDirectory(prefix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - ret.is(tempFile) - closureArg.is(tempFile) - Files.exists(tempFile) - - when: 'The closure throws an exception' - FileTools.newTempDir(prefix, attrs) { closureArg = it; throw new RuntimeException() } - - then: 'A TempFile was created with Files and deleted afterwards. The exception is propagated.' - 1 * Files.createTempDirectory(prefix, { FileAttribute[] varArgs -> - Arrays.equals(varArgs, attrs as FileAttribute[]) - }) >> { tempFile = callRealMethod() } - closureArg.is(tempFile) - Files.notExists(tempFile) - thrown(RuntimeException) - - cleanup: - Files.deleteIfExists(tempFile) - } - -} diff --git a/src/test/groovy/util/TrySpec.groovy b/src/test/groovy/util/TrySpec.groovy deleted file mode 100644 index 5475731b..00000000 --- a/src/test/groovy/util/TrySpec.groovy +++ /dev/null @@ -1,673 +0,0 @@ -package util - -import spock.lang.Specification - -import java.nio.file.DirectoryNotEmptyException -import java.nio.file.Files - -class TrySpec extends Specification { - - def "test withFile_File"() { - given: - def file - def ret - def e - - when: 'The closure completes successfully' - file = File.createTempFile('tst', null) - ret = file.withFile { return 1 } - - then: 'The return value is that of the closure and the file has been deleted' - ret == 1 - !file.exists() - - when: 'The closure throws an exception' - file = File.createTempFile('tst', null) - file.withFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the file has been deleted' - thrown(IndexOutOfBoundsException) - !file.exists() - - when: 'The closure completes successfully, but the file does not exist' - file = File.createTempFile('tst', null) - file.delete() - ret = file.withFile { return 2 } - - then: 'The return value is that of the closure and no exception is thrown when trying to delete the file' - notThrown(IOException) - ret == 2 - - when: 'The closure throws an exception and the file does not exist' - file.withFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and no exception is suppressed when trying to delete the file' - e = thrown(IndexOutOfBoundsException) - e.suppressed.length == 0 - - when: 'The closure completes successfully, but the file path is invalid' - file = new File('Q:\\\\\0') - file.withFile { return 3 } - - then: 'The IllegalArgumentException thrown when trying to delete the file is propagated' - thrown(IllegalArgumentException) - - when: 'The closure throws an exception and the file path is invalid' - file = new File('Q:\\\\\0') - file.withFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and IllegalArgumentException is suppressed when trying to delete the file' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof IllegalArgumentException - - when: 'The closure completes successfully, but the file cannot be deleted' - file = File.createTempDir() - File.createTempFile('tst', null, file) - file.withFile { return 3 } - - then: 'The IOException thrown when trying to delete the file is propagated' - thrown(IOException) - - cleanup: - file.deleteDir() - } - - def "test initFile_File"() { - given: - def file - def ret - def e - - when: 'The closure completes successfully' - file = File.createTempFile('tst', null) - ret = file.initFile { return 1 } - - then: 'The return value is that of the closure and the file has not been deleted' - ret == 1 - file.exists() - - when: 'The closure throws an exception' - file.initFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the file has been deleted' - thrown(IndexOutOfBoundsException) - !file.exists() - - when: 'The closure throws an exception and the file does not exist' - file.initFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and no exception is suppressed when trying to delete the file' - e = thrown(IndexOutOfBoundsException) - e.suppressed.length == 0 - - when: 'The closure throws an exception and the file path is invalid' - file = new File('Q:\\\\\0') - file.initFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and IllegalArgumentException is suppressed when trying to delete the file' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof IllegalArgumentException - - when: 'The closure throws an exception, but the file cannot be deleted' - file = File.createTempDir() - File.createTempFile('tst', null, file) - file.initFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the IOException thrown when trying to delete the file is suppressed' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof IOException - - cleanup: - file.deleteDir() - } - - def "test withFile_Path"() { - given: - def path - def ret - def e - - when: 'The closure completes successfully' - path = Files.createTempFile('tst', null) - ret = path.withFile { return 1 } - - then: 'The return value is that of the closure and the file has been deleted' - ret == 1 - Files.notExists(path) - - when: 'The closure throws an exception' - path = Files.createTempFile('tst', null) - path.withFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the file has been deleted' - thrown(IndexOutOfBoundsException) - Files.notExists(path) - - when: 'The closure completes successfully, but the file does not exist' - ret = path.withFile { return 2 } - - then: 'The return value is that of the closure and no exception is thrown when trying to delete the file' - notThrown(IOException) - ret == 2 - - when: 'The closure throws an exception and the file does not exist' - path.withFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and no exception is suppressed when trying to delete the file' - e = thrown(IndexOutOfBoundsException) - e.suppressed.length == 0 - - when: 'The closure completes successfully, but the file is a non-empty directory' - path = Files.createTempDirectory('tst') - Files.createTempFile(path, 'tst', null) - path.withFile { return 3 } - - then: 'The DirectoryNotEmptyException thrown when trying to delete the file is propagated' - thrown(DirectoryNotEmptyException) - - when: 'The closure throws an exception and the file is a non-empty directory' - path.withFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and IllegalArgumentException is suppressed when trying to delete the file' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof DirectoryNotEmptyException - - cleanup: - path.deleteDir() - } - - def "test initFile_Path"() { - given: - def path - def ret - def e - - when: 'The closure completes successfully' - path = Files.createTempFile('tst', null) - ret = path.initFile { return 1 } - - then: 'The return value is that of the closure and the file has not been deleted' - ret == 1 - Files.exists(path) - - when: 'The closure throws an exception' - path.initFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the file has been deleted' - thrown(IndexOutOfBoundsException) - Files.notExists(path) - - when: 'The closure throws an exception and the file does not exist' - path.initFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and no exception is suppressed when trying to delete the file' - e = thrown(IndexOutOfBoundsException) - e.suppressed.length == 0 - - when: 'The closure throws an exception and the file is a non-empty directory' - path = Files.createTempDirectory('tst') - Files.createTempFile(path, 'tst', null) - path.initFile { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and DirectoryNotEmptyException is suppressed when trying to delete the file' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof DirectoryNotEmptyException - - cleanup: - path.deleteDir() - } - - def "test withDir_File"() { - given: - def dir - def contents - def ret - def e - - when: 'The closure completes successfully. Delete the contents only.' - dir = File.createTempDir() - contents = File.createTempFile('tst', null, dir) - ret = dir.withDir(true) { return 1 } - - then: 'The return value is that of the closure and the directory only has been deleted' - ret == 1 - dir.exists() - !contents.exists() - - when: 'The closure completes successfully' - File.createTempFile('tst', null, dir) - ret = dir.withDir { return 1 } - - then: 'The return value is that of the closure and the directory has been deleted' - ret == 1 - !dir.exists() - - when: 'The closure throws an exception. Delete the contents only.' - dir = File.createTempDir() - contents = File.createTempFile('tst', null, dir) - dir.withDir(true) { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the directory contents only has been deleted' - thrown(IndexOutOfBoundsException) - dir.exists() - !contents.exists() - - when: 'The closure throws an exception' - File.createTempFile('tst', null, dir) - dir.withDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the directory has been deleted' - thrown(IndexOutOfBoundsException) - !dir.exists() - - when: 'The closure completes successfully, but the directory does not exist' - ret = dir.withDir { return 2 } - - then: 'The return value is that of the closure and no exception is thrown when trying to delete the directory' - notThrown(IOException) - ret == 2 - - when: 'The closure throws an exception and the file does not exist' - dir.withDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and no exception is suppressed when trying to delete the directory' - e = thrown(IndexOutOfBoundsException) - e.suppressed.length == 0 - - when: 'The closure completes successfully, but the directory path is invalid' - dir = new File('Q:\\\\\0') - dir.withDir { return 3 } - - then: 'The IllegalArgumentException thrown when trying to delete the directory is propagated' - thrown(IllegalArgumentException) - - when: 'The closure throws an exception and the directory path is invalid' - dir = new File('Q:\\\\\0') - dir.withDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and IllegalArgumentException is suppressed when trying to delete the directory' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof IllegalArgumentException - - when: 'The closure completes successfully, but the file is not a directory' - dir = File.createTempFile('tst', null) - dir.withDir { return 3 } - - then: 'The IllegalArgumentException thrown when trying to delete the directory is propagated' - thrown(IllegalArgumentException) - - cleanup: - dir?.delete() - contents?.delete() - } - - def "test initDir_File"() { - given: - def dir - def contents - def ret - def e - - when: 'The closure completes successfully' - dir = File.createTempDir() - contents = File.createTempFile('tst', null, dir) - ret = dir.initDir { return 1 } - - then: 'The return value is that of the closure and neither the directory nor its contents have been deleted' - ret == 1 - dir.exists() - contents.exists() - - when: 'The closure throws an exception. Delete the contents only' - dir.initDir(true) { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the directory contents only has been deleted' - thrown(IndexOutOfBoundsException) - dir.exists() - !contents.exists() - - when: 'The closure throws an exception' - File.createTempFile('tst', null, dir) - dir.initDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the directory has been deleted' - thrown(IndexOutOfBoundsException) - !dir.exists() - - when: 'The closure throws an exception and the directory does not exist' - dir.initDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and no exception is suppressed when trying to delete the directory' - e = thrown(IndexOutOfBoundsException) - e.suppressed.length == 0 - - when: 'The closure throws an exception and the directory path is invalid' - dir = new File('Q:\\\\\0') - dir.initDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and IllegalArgumentException is suppressed when trying to delete the directory' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof IllegalArgumentException - - when: 'The closure throws an exception, but the file is not a directory' - dir = File.createTempFile('tst', null) - dir.initDir {throw new IndexOutOfBoundsException() } - - then: 'The IllegalArgumentException thrown when trying to delete the directory is propagated' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof IllegalArgumentException - - cleanup: - dir?.delete() - contents?.delete() - } - - def "test withDir_Path"() { - given: - def path - def contents - def ret - def e - - when: 'The closure completes successfully. Delete contents only.' - path = Files.createTempDirectory('tst') - contents = Files.createTempFile(path, 'tst', null) - ret = path.withDir(true) { return 1 } - - then: 'The return value is that of the closure and the directory contents only has been deleted' - ret == 1 - Files.exists(path) - Files.notExists(contents) - - when: 'The closure completes successfully' - Files.createTempFile(path, 'tst', null) - ret = path.withDir { return 1 } - - then: 'The return value is that of the closure and the directory has been deleted' - ret == 1 - Files.notExists(path) - - when: 'The closure throws an exception. Delete contents only.' - path = Files.createTempDirectory('tst') - contents = Files.createTempFile(path, 'tst', null) - path.withDir(true) { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the directory contents only has been deleted' - thrown(IndexOutOfBoundsException) - Files.exists(path) - Files.notExists(contents) - - when: 'The closure throws an exception' - Files.createTempFile(path, 'tst', null) - path.withDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the directory has been deleted' - thrown(IndexOutOfBoundsException) - Files.notExists(path) - - when: 'The closure completes successfully, but the directory does not exist' - ret = path.withDir { return 2 } - - then: 'The return value is that of the closure and no exception is thrown when trying to delete the directory' - notThrown(IOException) - ret == 2 - - when: 'The closure throws an exception and the directory does not exist' - path.withDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and no exception is suppressed when trying to delete the directory' - e = thrown(IndexOutOfBoundsException) - e.suppressed.length == 0 - - when: 'The closure completes successfully, but the path is not a directory' - path = Files.createTempFile('tst', null) - path.withDir { return 3 } - - then: 'The IllegalArgumentException thrown when trying to delete the directory is propagated' - thrown(IllegalArgumentException) - - when: 'The closure throws an exception and the path is not a directory' - path.withDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and IllegalArgumentException is suppressed when trying to delete the directory' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof IllegalArgumentException - - cleanup: - if (path) Files.deleteIfExists(path) - if (contents) Files.deleteIfExists(contents) - } - - def "test initDir_Path"() { - given: - def path - def contents - def ret - def e - - when: 'The closure completes successfully' - path = Files.createTempDirectory('tst') - contents = Files.createTempFile(path, 'tst', null) - ret = path.initDir { return 1 } - - then: 'The return value is that of the closure and neither the directory not its contents have been deleted' - ret == 1 - Files.exists(path) - Files.exists(contents) - - when: 'The closure throws an exception. Delete contents only.' - path.initDir(true) { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the directory contents only has been deleted' - thrown(IndexOutOfBoundsException) - Files.exists(path) - Files.notExists(contents) - - when: 'The closure throws an exception' - Files.createTempFile(path, 'tst', null) - path.initDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the directory has been deleted' - thrown(IndexOutOfBoundsException) - Files.notExists(path) - - when: 'The closure throws an exception and the directory does not exist' - path.initDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and no exception is suppressed when trying to delete the directory' - e = thrown(IndexOutOfBoundsException) - e.suppressed.length == 0 - - when: 'The closure throws an exception and the path is not a directory' - path = Files.createTempFile('tst', null) - path.initDir { throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and IllegalArgumentException is suppressed when trying to delete the directory' - e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof IllegalArgumentException - - cleanup: - Files.deleteIfExists(path) - } - - def "test withResource"() { - given: - def closeable = new MyCloseable() - def aList - def ret - - when: 'The closure returns successfully and no explicit cleanup is specified' - closeable.reset() - ret = closeable.withResource {return 1 } - - then: 'The return value is that of the closure and the close method was called' - ret == 1 - closeable.isClosed() - - when: 'The closure throws an exception and no explicit cleanup is specified' - closeable.reset() - closeable.withResource {throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the close method was called' - thrown(IndexOutOfBoundsException) - closeable.isClosed() - - when: 'The closure returns successfully and a explicit cleanup is specified' - closeable.close() - ret = closeable.withResource({ it.reset() }) {return 2 } - - then: 'The return value is that of the closure and the given cleanup was executed' - ret == 2 - !closeable.isClosed() - - when: 'The closure throws an exception and a explicit cleanup is specified' - closeable.close() - closeable.withResource({ it.reset() }) {throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the given cleanup was executed' - thrown(IndexOutOfBoundsException) - !closeable.isClosed() - - when: 'The closure returns successfully, but the cleanup fails' - closeable.reset() - closeable.withResource({ it.fail() }) {return 3 } - - then: 'The exception thrown by the cleanup is propagated' - thrown(UnsupportedOperationException) - !closeable.isClosed() - - when: 'The closure throws an exception and the cleanup fails' - closeable.reset() - closeable.withResource({ it.fail() }) { - throw new IndexOutOfBoundsException() - } - - then: 'The exception is propagated and the cleanup exception is suppressed' - def e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof UnsupportedOperationException - !closeable.isClosed() - - when: 'Specific cleanup with a resource that has no close method. The closure succeeds.' - aList = ['test'] - ret = aList.withResource({ it.clear() }) { - return it.size() - } - - then: 'The returned value is that of the closure and the cleanup was run' - ret == 1 - aList.isEmpty() - - when: 'Specific cleanup with a resource that has no close method. The closure throws an exception.' - aList = ['test'] - aList.withResource({ it.clear() }) { - throw new IndexOutOfBoundsException() - } - - then: 'The exception is propagated and the cleanup was run' - thrown(IndexOutOfBoundsException) - aList.isEmpty() - } - - def "test initResource"() { - given: - def closeable = new MyCloseable() - def aList - def ret - - when: 'The closure returns successfully and no explicit cleanup is specified' - closeable.reset() - ret = closeable.initResource {return 1 } - - then: 'The return value is that of the closure and the close method was not called' - ret == 1 - !closeable.isClosed() - - when: 'The closure throws an exception and no explicit cleanup is specified' - closeable.reset() - closeable.initResource {throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the close method was called' - thrown(IndexOutOfBoundsException) - closeable.isClosed() - - when: 'The closure returns successfully and a explicit cleanup is specified' - closeable.close() - ret = closeable.initResource({ it.reset() }) {return 2 } - - then: 'The return value is that of the closure and the given cleanup was not executed' - ret == 2 - closeable.isClosed() - - when: 'The closure throws an exception and a explicit cleanup is specified' - closeable.close() - closeable.initResource({ it.reset() }) {throw new IndexOutOfBoundsException() } - - then: 'The exception is propagated and the given cleanup was executed' - thrown(IndexOutOfBoundsException) - !closeable.isClosed() - - when: 'The closure returns successfully, but the cleanup fails' - closeable.reset() - ret = closeable.initResource({ it.fail() }) {return 3 } - - then: 'No exception was thrown as the cleanup was not run and the returned value is that of the closure' - notThrown(UnsupportedOperationException) - ret == 3 - !closeable.isClosed() - - when: 'The closure throws an exception and the cleanup fails' - closeable.reset() - closeable.initResource ({ it.fail() }) { - throw new IndexOutOfBoundsException() - } - - then: 'The exception is propagated and the cleanup exception is suppressed' - def e = thrown(IndexOutOfBoundsException) - e.suppressed[0] instanceof UnsupportedOperationException - !closeable.isClosed() - - when: 'Specific cleanup with a resource that has no close method. The closure succeeds.' - aList = ['test'] - ret = aList.initResource({ it.clear() }) { - return it.size() - } - - then: 'The returned value is that of the closure and the cleanup was not run' - ret == 1 - aList[0] == 'test' - - when: 'Specific cleanup with a resource that has no close method. The closure throws an exception.' - aList = ['test'] - aList.initResource({ it.clear() }) { - throw new IndexOutOfBoundsException() - } - - then: 'The exception is propagated and the cleanup was run' - thrown(IndexOutOfBoundsException) - aList.isEmpty() - } - - private static class MyCloseable { - - private closed = false - - boolean isClosed() { - return closed - } - - void close() { - closed = true - } - - void reset() { - closed = false - } - - @SuppressWarnings('GrMethodMayBeStatic') - void fail() { - throw new UnsupportedOperationException() - } - - } - -} diff --git a/src/test/resources/SpockConfig.groovy b/src/test/resources/SpockConfig.groovy new file mode 100644 index 00000000..8a6e22c8 --- /dev/null +++ b/src/test/resources/SpockConfig.groovy @@ -0,0 +1,5 @@ + +runner { + println "SpockConfig.groovy" + optimizeRunOrder true +} diff --git a/src/test/resources/bitbucketTraceability/bitbucket.csv b/src/test/resources/bitbucketTraceability/bitbucket.csv new file mode 100644 index 00000000..1ff1dff3 --- /dev/null +++ b/src/test/resources/bitbucketTraceability/bitbucket.csv @@ -0,0 +1,9 @@ +2021-03-16,project-admin|project-admin@edp.com,project-admin|project-admin@edp.com,http://bitbucket.odsbox.lan:7990/projects/EDPT3/repos/edpt3-demo-app-backend/pull-requests/2,59d9348a4df5e40260ec930053409aba163ebb69,edpt3-demo-app-backend +2021-03-16,openshift|openshift@example.com,project-admin|project-admin@edp.com,http://bitbucket.odsbox.lan:7990/projects/EDPT3/repos/edpt3-demo-app-backend/pull-requests/2,7da0c41dbbbe5c1af6d497a8fb31f87fbc55e33b,edpt3-demo-app-backend +2021-03-16,project-team-member|project-team-member@edp.com,project-team-member|project-team-member@edp.com,http://bitbucket.odsbox.lan:7990/projects/EDPT3/repos/edpt3-demo-app-backend/pull-requests/1,c2193652ed488744560c686cdd0e7e3c1dfa6b0f,edpt3-demo-app-backend +2021-03-16,openshift|openshift@example.com,project-team-member|project-team-member@edp.com,http://bitbucket.odsbox.lan:7990/projects/EDPT3/repos/edpt3-demo-app-backend/pull-requests/1,7a87b0122c90478eabf481b2fc04059260715fee,edpt3-demo-app-backend +2021-03-17,project-admin|project-admin@edp.com,project-team-member|project-team-member@edp.com;project-admin|project-admin@edp.com,http://bitbucket.odsbox.lan:7990/projects/EDPT3/repos/edpt3-demo-app-front-end/pull-requests/2,16770356fe981d00115e978ce31199f4371af5d9,edpt3-demo-app-front-end +2021-03-17,openshift|openshift@example.com,project-team-member|project-team-member@edp.com;project-admin|project-admin@edp.com,http://bitbucket.odsbox.lan:7990/projects/EDPT3/repos/edpt3-demo-app-front-end/pull-requests/2,69a7c95ddb20bce08fbe01bf067927a1d7bf6e7c,edpt3-demo-app-front-end +2021-03-17,openshift|openshift@example.com,project-team-member|project-team-member@edp.com;project-admin|project-admin@edp.com,http://bitbucket.odsbox.lan:7990/projects/EDPT3/repos/edpt3-demo-app-front-end/pull-requests/2,0e37d77af184bad786dcd07ee6e43c7430f66e7d,edpt3-demo-app-front-end +2021-03-16,project-admin|project-admin@edp.com,project-admin|project-admin@edp.com,http://bitbucket.odsbox.lan:7990/projects/EDPT3/repos/edpt3-demo-app-front-end/pull-requests/1,3e11de659989b1944a4b0528e467108f6373b755,edpt3-demo-app-front-end +2021-03-16,openshift|openshift@example.com,project-admin|project-admin@edp.com,http://bitbucket.odsbox.lan:7990/projects/EDPT3/repos/edpt3-demo-app-front-end/pull-requests/1,34d300361c1ba798c0adec984b0dfe3e473b472e,edpt3-demo-app-front-end diff --git a/src/test/resources/bitbucketTraceability/bitbucket.json b/src/test/resources/bitbucketTraceability/bitbucket.json new file mode 100644 index 00000000..eb831502 --- /dev/null +++ b/src/test/resources/bitbucketTraceability/bitbucket.json @@ -0,0 +1,140 @@ +[ + { + "date": "2021-03-16", + "authorEmail": "project-admin@edp.com", + "component": "edpt3-demo-app-backend", + "authorName": "project-admin", + "commit": "59d9348a4df5e40260ec930053409aba163ebb69", + "reviewers": [ + { + "reviewerName": "project-admin", + "reviewerEmail": "project-admin@edp.com" + } + ], + "url": "http:\/\/bitbucket.odsbox.lan:7990\/projects\/EDPT3\/repos\/edpt3-demo-app-backend\/pull-requests\/2" + }, + { + "date": "2021-03-16", + "authorEmail": "openshift@example.com", + "component": "edpt3-demo-app-backend", + "authorName": "openshift", + "commit": "7da0c41dbbbe5c1af6d497a8fb31f87fbc55e33b", + "reviewers": [ + { + "reviewerName": "project-admin", + "reviewerEmail": "project-admin@edp.com" + } + ], + "url": "http:\/\/bitbucket.odsbox.lan:7990\/projects\/EDPT3\/repos\/edpt3-demo-app-backend\/pull-requests\/2" + }, + { + "date": "2021-03-16", + "authorEmail": "project-team-member@edp.com", + "component": "edpt3-demo-app-backend", + "authorName": "project-team-member", + "commit": "c2193652ed488744560c686cdd0e7e3c1dfa6b0f", + "reviewers": [ + { + "reviewerName": "project-team-member", + "reviewerEmail": "project-team-member@edp.com" + } + ], + "url": "http:\/\/bitbucket.odsbox.lan:7990\/projects\/EDPT3\/repos\/edpt3-demo-app-backend\/pull-requests\/1" + }, + { + "date": "2021-03-16", + "authorEmail": "openshift@example.com", + "component": "edpt3-demo-app-backend", + "authorName": "openshift", + "commit": "7a87b0122c90478eabf481b2fc04059260715fee", + "reviewers": [ + { + "reviewerName": "project-team-member", + "reviewerEmail": "project-team-member@edp.com" + } + ], + "url": "http:\/\/bitbucket.odsbox.lan:7990\/projects\/EDPT3\/repos\/edpt3-demo-app-backend\/pull-requests\/1" + }, + { + "date": "2021-03-17", + "authorEmail": "project-admin@edp.com", + "component": "edpt3-demo-app-front-end", + "authorName": "project-admin", + "commit": "16770356fe981d00115e978ce31199f4371af5d9", + "reviewers": [ + { + "reviewerName": "project-team-member", + "reviewerEmail": "project-team-member@edp.com" + }, + { + "reviewerName": "project-admin", + "reviewerEmail": "project-admin@edp.com" + } + ], + "url": "http:\/\/bitbucket.odsbox.lan:7990\/projects\/EDPT3\/repos\/edpt3-demo-app-front-end\/pull-requests\/2" + }, + { + "date": "2021-03-17", + "authorEmail": "openshift@example.com", + "component": "edpt3-demo-app-front-end", + "authorName": "openshift", + "commit": "69a7c95ddb20bce08fbe01bf067927a1d7bf6e7c", + "reviewers": [ + { + "reviewerName": "project-team-member", + "reviewerEmail": "project-team-member@edp.com" + }, + { + "reviewerName": "project-admin", + "reviewerEmail": "project-admin@edp.com" + } + ], + "url": "http:\/\/bitbucket.odsbox.lan:7990\/projects\/EDPT3\/repos\/edpt3-demo-app-front-end\/pull-requests\/2" + }, + { + "date": "2021-03-17", + "authorEmail": "openshift@example.com", + "component": "edpt3-demo-app-front-end", + "authorName": "openshift", + "commit": "0e37d77af184bad786dcd07ee6e43c7430f66e7d", + "reviewers": [ + { + "reviewerName": "project-team-member", + "reviewerEmail": "project-team-member@edp.com" + }, + { + "reviewerName": "project-admin", + "reviewerEmail": "project-admin@edp.com" + } + ], + "url": "http:\/\/bitbucket.odsbox.lan:7990\/projects\/EDPT3\/repos\/edpt3-demo-app-front-end\/pull-requests\/2" + }, + { + "date": "2021-03-16", + "authorEmail": "project-admin@edp.com", + "component": "edpt3-demo-app-front-end", + "authorName": "project-admin", + "commit": "3e11de659989b1944a4b0528e467108f6373b755", + "reviewers": [ + { + "reviewerName": "project-admin", + "reviewerEmail": "project-admin@edp.com" + } + ], + "url": "http:\/\/bitbucket.odsbox.lan:7990\/projects\/EDPT3\/repos\/edpt3-demo-app-front-end\/pull-requests\/1" + }, + { + "date": "2021-03-16", + "authorEmail": "openshift@example.com", + "component": "edpt3-demo-app-front-end", + "authorName": "openshift", + "commit": "34d300361c1ba798c0adec984b0dfe3e473b472e", + "reviewers": [ + { + "reviewerName": "project-admin", + "reviewerEmail": "project-admin@edp.com" + } + ], + "url": "http:\/\/bitbucket.odsbox.lan:7990\/projects\/EDPT3\/repos\/edpt3-demo-app-front-end\/pull-requests\/1" + } +] \ No newline at end of file diff --git a/src/test/resources/bitbucketTraceability/workspace/metadata.yml b/src/test/resources/bitbucketTraceability/workspace/metadata.yml new file mode 100644 index 00000000..10aa542d --- /dev/null +++ b/src/test/resources/bitbucketTraceability/workspace/metadata.yml @@ -0,0 +1,33 @@ +--- +id: edpt3 +name: Project edpt3 +description: Description of edpt3. + +services: + bitbucket: + credentials: + id: net-cd-cd-user-with-password + jira: + credentials: + id: net-cd-cd-user-with-password + nexus: + repository: + name: leva-documentation + +repositories: + - id: demo-app-backend + name: edpt3-demo-app-backend + type: ods + - id: demo-app-front-end + name: edpt3-demo-app-front-end + type: ods + - id: demo-app-end-to-end + name: edpt3-demo-app-end-to-end + type: ods-test + +capabilities: +- LeVADocs: + GAMPCategory: "5" + templatesVersion: "1.0" + +environments: {} diff --git a/src/test/resources/data/TEST-com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest.xml b/src/test/resources/data/TEST-com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest.xml deleted file mode 100644 index 6071bae1..00000000 --- a/src/test/resources/data/TEST-com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest.xml +++ /dev/null @@ -1,10592 +0,0 @@ - - - - - - - - - (PlatformDependent0.java:227) - at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:289) - at io.netty.util.internal.PlatformDependent.(PlatformDependent.java:92) - at io.netty.util.ConstantPool.(ConstantPool.java:32) - at io.netty.channel.ChannelOption$1.(ChannelOption.java:36) - at io.netty.channel.ChannelOption.(ChannelOption.java:36) - at reactor.netty.tcp.TcpClient.(TcpClient.java:661) - at reactor.netty.http.client.HttpClient.(HttpClient.java:1257) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.(ProvisionAdaptersClient.java:95) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) - at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:80) - at org.codehaus.groovy.reflection.CachedConstructor.doConstructorInvoke(CachedConstructor.java:74) - at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrap.callConstructor(ConstructorSite.java:84) - at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallConstructor(CallSiteArray.java:59) - at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:237) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest.setup(ProvisionAdaptersClientTest.groovy:57) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.spockframework.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:200) - at org.spockframework.runtime.model.MethodInfo.lambda$new$0(MethodInfo.java:40) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.doRunSetup(PlatformSpecRunner.java:314) - at org.spockframework.runtime.PlatformSpecRunner.lambda$createMethodInfoForDoRunSetup$7(PlatformSpecRunner.java:296) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.runSetup(PlatformSpecRunner.java:290) - at org.spockframework.runtime.PlatformSpecRunner.runSetup(PlatformSpecRunner.java:285) - at org.spockframework.runtime.SimpleFeatureNode.before(SimpleFeatureNode.java:41) - at org.spockframework.runtime.SimpleFeatureNode.before(SimpleFeatureNode.java:14) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:132) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:125) - at org.spockframework.runtime.SpockNode.sneakyInvoke(SpockNode.java:24) - at org.spockframework.runtime.IterationNode.lambda$around$0(IterationNode.java:54) - at org.spockframework.runtime.PlatformSpecRunner.lambda$createMethodInfoForDoRunIteration$5(PlatformSpecRunner.java:237) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.runIteration(PlatformSpecRunner.java:218) - at org.spockframework.runtime.IterationNode.around(IterationNode.java:54) - at org.spockframework.runtime.SimpleFeatureNode.lambda$around$0(SimpleFeatureNode.java:50) - at org.spockframework.runtime.SpockNode.sneakyInvoke(SpockNode.java:24) - at org.spockframework.runtime.FeatureNode.lambda$around$0(FeatureNode.java:29) - at org.spockframework.runtime.PlatformSpecRunner.lambda$createMethodInfoForDoRunFeature$4(PlatformSpecRunner.java:199) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.runFeature(PlatformSpecRunner.java:192) - at org.spockframework.runtime.FeatureNode.around(FeatureNode.java:29) - at org.spockframework.runtime.SimpleFeatureNode.around(SimpleFeatureNode.java:50) - at org.spockframework.runtime.SimpleFeatureNode.around(SimpleFeatureNode.java:14) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:123) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:122) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:80) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1540) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:38) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:139) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:125) - at org.spockframework.runtime.SpockNode.sneakyInvoke(SpockNode.java:24) - at org.spockframework.runtime.SpecNode.lambda$around$0(SpecNode.java:61) - at org.spockframework.runtime.PlatformSpecRunner.lambda$createMethodInfoForDoRunSpec$0(PlatformSpecRunner.java:59) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.runSpec(PlatformSpecRunner.java:53) - at org.spockframework.runtime.SpecNode.around(SpecNode.java:61) - at org.spockframework.runtime.SpecNode.around(SpecNode.java:8) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:123) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:122) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:80) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1540) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:38) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:139) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:125) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:135) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:123) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:122) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:80) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:32) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:51) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:229) - at org.junit.platform.launcher.core.DefaultLauncher.lambda$execute$6(DefaultLauncher.java:197) - at org.junit.platform.launcher.core.DefaultLauncher.withInterceptedStreams(DefaultLauncher.java:211) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:191) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:128) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:79) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:75) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:61) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:94) - at com.sun.proxy.$Proxy5.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.stop(TestWorker.java:132) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.remote.internal.hub.MessageHubBackedObjectConnection$DispatchWrapper.dispatch(MessageHubBackedObjectConnection.java:182) - at org.gradle.internal.remote.internal.hub.MessageHubBackedObjectConnection$DispatchWrapper.dispatch(MessageHubBackedObjectConnection.java:164) - at org.gradle.internal.remote.internal.hub.MessageHub$Handler.run(MessageHub.java:412) - at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64) - at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:48) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:56) - at java.base/java.lang.Thread.run(Thread.java:834) -13:17:53.837 [Test worker] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Bits.unaligned: available, true -13:17:53.842 [Test worker] DEBUG io.netty.util.internal.PlatformDependent0 - jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable -java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$6 cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to unnamed module @553a3d88 - at java.base/jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:361) - at java.base/java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:591) - at java.base/java.lang.reflect.Method.invoke(Method.java:558) - at io.netty.util.internal.PlatformDependent0$6.run(PlatformDependent0.java:347) - at java.base/java.security.AccessController.doPrivileged(Native Method) - at io.netty.util.internal.PlatformDependent0.(PlatformDependent0.java:338) - at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:289) - at io.netty.util.internal.PlatformDependent.(PlatformDependent.java:92) - at io.netty.util.ConstantPool.(ConstantPool.java:32) - at io.netty.channel.ChannelOption$1.(ChannelOption.java:36) - at io.netty.channel.ChannelOption.(ChannelOption.java:36) - at reactor.netty.tcp.TcpClient.(TcpClient.java:661) - at reactor.netty.http.client.HttpClient.(HttpClient.java:1257) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.(ProvisionAdaptersClient.java:95) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) - at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:80) - at org.codehaus.groovy.reflection.CachedConstructor.doConstructorInvoke(CachedConstructor.java:74) - at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrap.callConstructor(ConstructorSite.java:84) - at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallConstructor(CallSiteArray.java:59) - at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:237) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest.setup(ProvisionAdaptersClientTest.groovy:57) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.spockframework.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:200) - at org.spockframework.runtime.model.MethodInfo.lambda$new$0(MethodInfo.java:40) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.doRunSetup(PlatformSpecRunner.java:314) - at org.spockframework.runtime.PlatformSpecRunner.lambda$createMethodInfoForDoRunSetup$7(PlatformSpecRunner.java:296) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.runSetup(PlatformSpecRunner.java:290) - at org.spockframework.runtime.PlatformSpecRunner.runSetup(PlatformSpecRunner.java:285) - at org.spockframework.runtime.SimpleFeatureNode.before(SimpleFeatureNode.java:41) - at org.spockframework.runtime.SimpleFeatureNode.before(SimpleFeatureNode.java:14) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:132) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:125) - at org.spockframework.runtime.SpockNode.sneakyInvoke(SpockNode.java:24) - at org.spockframework.runtime.IterationNode.lambda$around$0(IterationNode.java:54) - at org.spockframework.runtime.PlatformSpecRunner.lambda$createMethodInfoForDoRunIteration$5(PlatformSpecRunner.java:237) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.runIteration(PlatformSpecRunner.java:218) - at org.spockframework.runtime.IterationNode.around(IterationNode.java:54) - at org.spockframework.runtime.SimpleFeatureNode.lambda$around$0(SimpleFeatureNode.java:50) - at org.spockframework.runtime.SpockNode.sneakyInvoke(SpockNode.java:24) - at org.spockframework.runtime.FeatureNode.lambda$around$0(FeatureNode.java:29) - at org.spockframework.runtime.PlatformSpecRunner.lambda$createMethodInfoForDoRunFeature$4(PlatformSpecRunner.java:199) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.runFeature(PlatformSpecRunner.java:192) - at org.spockframework.runtime.FeatureNode.around(FeatureNode.java:29) - at org.spockframework.runtime.SimpleFeatureNode.around(SimpleFeatureNode.java:50) - at org.spockframework.runtime.SimpleFeatureNode.around(SimpleFeatureNode.java:14) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:123) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:122) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:80) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1540) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:38) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:139) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:125) - at org.spockframework.runtime.SpockNode.sneakyInvoke(SpockNode.java:24) - at org.spockframework.runtime.SpecNode.lambda$around$0(SpecNode.java:61) - at org.spockframework.runtime.PlatformSpecRunner.lambda$createMethodInfoForDoRunSpec$0(PlatformSpecRunner.java:59) - at org.spockframework.runtime.model.MethodInfo.invoke(MethodInfo.java:120) - at org.spockframework.runtime.PlatformSpecRunner.invokeRaw(PlatformSpecRunner.java:395) - at org.spockframework.runtime.PlatformSpecRunner.invoke(PlatformSpecRunner.java:378) - at org.spockframework.runtime.PlatformSpecRunner.runSpec(PlatformSpecRunner.java:53) - at org.spockframework.runtime.SpecNode.around(SpecNode.java:61) - at org.spockframework.runtime.SpecNode.around(SpecNode.java:8) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:123) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:122) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:80) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1540) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:38) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:139) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:125) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:135) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:123) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:122) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:80) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:32) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:51) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:229) - at org.junit.platform.launcher.core.DefaultLauncher.lambda$execute$6(DefaultLauncher.java:197) - at org.junit.platform.launcher.core.DefaultLauncher.withInterceptedStreams(DefaultLauncher.java:211) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:191) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:128) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:79) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:75) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:61) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:94) - at com.sun.proxy.$Proxy5.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.stop(TestWorker.java:132) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.remote.internal.hub.MessageHubBackedObjectConnection$DispatchWrapper.dispatch(MessageHubBackedObjectConnection.java:182) - at org.gradle.internal.remote.internal.hub.MessageHubBackedObjectConnection$DispatchWrapper.dispatch(MessageHubBackedObjectConnection.java:164) - at org.gradle.internal.remote.internal.hub.MessageHub$Handler.run(MessageHub.java:412) - at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64) - at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:48) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:56) - at java.base/java.lang.Thread.run(Thread.java:834) -13:17:53.852 [Test worker] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.DirectByteBuffer.(long, int): unavailable -13:17:53.852 [Test worker] DEBUG io.netty.util.internal.PlatformDependent - sun.misc.Unsafe: available -13:17:53.987 [Test worker] DEBUG io.netty.util.internal.PlatformDependent - maxDirectMemory: 536870912 bytes (maybe) -13:17:53.987 [Test worker] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.tmpdir: C:\Users\rodrjona\AppData\Local\Temp (java.io.tmpdir) -13:17:53.988 [Test worker] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.bitMode: 64 (sun.arch.data.model) -13:17:53.992 [Test worker] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.maxDirectMemory: -1 bytes -13:17:53.993 [Test worker] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.uninitializedArrayAllocationThreshold: -1 -13:17:54.086 [Test worker] DEBUG io.netty.util.internal.CleanerJava9 - java.nio.ByteBuffer.cleaner(): available -13:17:54.088 [Test worker] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.noPreferDirect: false -13:17:54.164 [Test worker] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv4Stack: false -13:17:54.164 [Test worker] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv6Addresses: false -13:17:56.372 [Test worker] DEBUG io.netty.util.NetUtil - Loopback interface: lo (Software Loopback Interface 1, 127.0.0.1) -13:17:56.374 [Test worker] DEBUG io.netty.util.NetUtil - Failed to get SOMAXCONN from sysctl and file \proc\sys\net\core\somaxconn. Default: 200 -13:17:56.410 [Test worker] DEBUG reactor.util.Loggers$LoggerFactory - Using Slf4j logging framework -13:17:56.500 [Test worker] DEBUG reactor.netty.tcp.TcpResources - [http] resources will use the default LoopResources: DefaultLoopResources {prefix=reactor-http, daemon=true, selectCount=4, workerCount=4} -13:17:56.501 [Test worker] DEBUG reactor.netty.tcp.TcpResources - [http] resources will use the default ConnectionProvider: reactor.netty.resources.PooledConnectionProvider@a55c95f -13:17:58.994 [Test worker] DEBUG org.eclipse.jetty.util.log - Logging to Logger[org.eclipse.jetty.util.log] via org.eclipse.jetty.util.log.Slf4jLog -13:17:58.999 [Test worker] INFO org.eclipse.jetty.util.log - Logging initialized @30553ms to org.eclipse.jetty.util.log.Slf4jLog -13:17:59.058 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@35ed1b9d{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:17:59.167 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@454ca7aa[HTTP/1.1] added {HttpConfiguration@35aeb0f9{32768/8192,8192/8192,https://:0,[]},POJO} -13:17:59.258 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{null, ()}{0.0.0.0:0} added {Server@35ed1b9d{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:17:59.258 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:17:59.259 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@74ee0887{STOPPED},AUTO} -13:17:59.259 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@61eca8ed,POJO} -13:17:59.260 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@454ca7aa[HTTP/1.1],AUTO} -13:17:59.261 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@454ca7aa[HTTP/1.1] -13:17:59.275 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:17:59.279 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@35ed1b9d{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:17:59.531 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@35ed1b9d{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,UNAVAILABLE},MANAGED} -13:17:59.577 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@663eb065 -13:17:59.619 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,UNAVAILABLE} added {ServletHandler@4e968e6a{STOPPED},MANAGED} -13:17:59.758 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@35ed1b9d{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@62d767f{/,null,UNAVAILABLE},MANAGED} -13:17:59.758 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@7d8ff7a3 -13:17:59.759 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@62d767f{/,null,UNAVAILABLE} added {ServletHandler@574cac87{STOPPED},MANAGED} -13:17:59.823 [Test worker] DEBUG org.eclipse.jetty.http.PreEncodedHttpField - HttpField encoders loaded: [org.eclipse.jetty.http2.hpack.HpackFieldPreEncoder@4290ac39, org.eclipse.jetty.http.Http1FieldPreEncoder@2cc08c74] -13:17:59.977 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@62d767f{/,null,UNAVAILABLE} added {NotFoundHandler@523928ab{STOPPED},MANAGED} -13:18:00.062 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@3bfe8ca3{STOPPED} added {o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,UNAVAILABLE},AUTO} -13:18:00.099 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:18:00.103 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STOPPED,min=32,inflate=-1} mime types IncludeExclude@7767ac1f{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:18:00.139 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@42831d1d{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@62d767f{/,null,UNAVAILABLE},MANAGED} -13:18:00.141 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@3bfe8ca3{STOPPED} added {GzipHandler@42831d1d{STOPPED,min=32,inflate=-1},AUTO} -13:18:00.158 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@35ed1b9d{STOPPED}[9.4.28.v20200408] added {HandlerCollection@3bfe8ca3{STOPPED},MANAGED} -13:18:00.212 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@35ed1b9d{STOPPED}[9.4.28.v20200408] -13:18:00.214 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@35ed1b9d{STARTING}[9.4.28.v20200408] added {ErrorHandler@456cfdb7{STOPPED},AUTO} -13:18:00.219 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:18:00.294 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@35ed1b9d{STARTING}[9.4.28.v20200408] -13:18:00.295 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:18:00.298 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=0} -13:18:00.299 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp824248140]@3121074c{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] added {ReservedThreadExecutor@238f6469{s=0/1,p=0},AUTO} -13:18:00.299 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@238f6469{s=0/1,p=0} -13:18:00.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @31880ms ReservedThreadExecutor@238f6469{s=0/1,p=0} -13:18:00.327 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp824248140-18,5,main] -13:18:00.328 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp824248140-19,5,main] -13:18:00.329 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp824248140-20,5,main] -13:18:00.330 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp824248140-21,5,main] -13:18:00.331 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp824248140-22,5,main] -13:18:00.332 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp824248140-23,5,main] -13:18:00.333 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp824248140-24,5,main] -13:18:00.335 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp824248140-25,5,main] -13:18:00.354 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @31905ms QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.355 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@3bfe8ca3{STOPPED} -13:18:00.356 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@3bfe8ca3{STARTING} -13:18:00.356 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,UNAVAILABLE} -13:18:00.360 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,STARTING} -13:18:00.360 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@4e968e6a{STOPPED} -13:18:00.366 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-b85589b[EMBEDDED:null] -13:18:00.372 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-b85589b@5d4b18c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:00.372 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-58247b16[EMBEDDED:null] -13:18:00.373 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-58247b16@6d001b34==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:00.373 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf[EMBEDDED:null] -13:18:00.373 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:18:00.374 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-66fab470=org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:00.401 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-66fab470] -13:18:00.401 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:00.402 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:00.407 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-58247b16=org.eclipse.jetty.servlet.DefaultServlet-58247b16@6d001b34==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-b85589b=org.eclipse.jetty.servlet.DefaultServlet-b85589b@5d4b18c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:00.410 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@4e968e6a{STARTING} -13:18:00.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @31965ms ServletHandler@4e968e6a{STARTED} -13:18:00.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:00.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @31972ms org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:00.427 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@304a38f0 -13:18:00.464 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:00.464 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.468 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32022ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.469 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-58247b16@6d001b34==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.469 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32023ms org.eclipse.jetty.servlet.DefaultServlet-58247b16@6d001b34==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.469 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-b85589b@5d4b18c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.470 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32023ms org.eclipse.jetty.servlet.DefaultServlet-b85589b@5d4b18c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.471 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:00.473 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32027ms o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:00.477 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@42831d1d{STOPPED,min=32,inflate=-1} -13:18:00.486 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@42831d1d{STARTING,min=32,inflate=-1} -13:18:00.486 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@62d767f{/,null,UNAVAILABLE} -13:18:00.492 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@62d767f{/,null,STARTING} -13:18:00.494 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@574cac87{STOPPED} -13:18:00.494 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-35d8900b[EMBEDDED:null] -13:18:00.494 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-35d8900b@5415e9de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:00.494 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34[EMBEDDED:null] -13:18:00.495 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:00.495 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c=org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-5b8e1134=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-5b8e1134@5b8e1134==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-18db2e65=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-18db2e65@18db2e65==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true} -13:18:00.495 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-5b8e1134, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-18db2e65, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c] -13:18:00.495 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:00.495 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:00.496 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-35d8900b=org.eclipse.jetty.servlet.DefaultServlet-35d8900b@5415e9de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:00.496 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@574cac87{STARTING} -13:18:00.496 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32051ms ServletHandler@574cac87{STARTED} -13:18:00.497 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@523928ab{STOPPED} -13:18:00.497 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@523928ab{STARTING} -13:18:00.497 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32052ms NotFoundHandler@523928ab{STARTED} -13:18:00.498 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-5b8e1134@5b8e1134==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:00.498 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32053ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-5b8e1134@5b8e1134==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:00.498 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@12640dc -13:18:00.500 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-18db2e65@18db2e65==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:00.500 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32054ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-18db2e65@18db2e65==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:00.501 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@3977d55a -13:18:00.501 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:00.502 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32055ms org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:00.502 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@3f13462b -13:18:00.507 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:00.508 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.510 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32064ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.510 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-35d8900b@5415e9de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.512 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32067ms org.eclipse.jetty.servlet.DefaultServlet-35d8900b@5415e9de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:00.512 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:00.514 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32069ms o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:00.514 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32069ms GzipHandler@42831d1d{STARTED,min=32,inflate=-1} -13:18:00.514 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32069ms HandlerCollection@3bfe8ca3{STARTED} -13:18:00.515 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@456cfdb7{STOPPED} -13:18:00.515 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@456cfdb7{STARTING} -13:18:00.515 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32070ms ErrorHandler@456cfdb7{STARTED} -13:18:00.515 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:00.518 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:00.525 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@74ee0887{STOPPED} -13:18:00.714 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.732 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.730 [qtp824248140-22] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.734 [qtp824248140-19] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.533 [qtp824248140-18] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.735 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.738 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.739 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.741 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32296ms ScheduledExecutorScheduler@74ee0887{STARTED} -13:18:00.742 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@454ca7aa[HTTP/1.1] -13:18:00.742 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32297ms HttpConnectionFactory@454ca7aa[HTTP/1.1] -13:18:00.742 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:00.928 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.8119304+02:00 added {SelectorProducer@53886ac6,POJO} -13:18:00.929 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9289104+02:00 added {QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}],UNMANAGED} -13:18:00.932 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.932905+02:00 created -13:18:00.934 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@19f48377{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9349057+02:00,MANAGED} -13:18:00.935 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@19f48377{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:00.937 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9369132+02:00 added {SelectorProducer@a77e489,POJO} -13:18:00.939 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9399163+02:00 added {QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}],UNMANAGED} -13:18:00.939 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9399163+02:00 created -13:18:00.940 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@61fc9209{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9409095+02:00,MANAGED} -13:18:00.940 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@61fc9209{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:00.947 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@19f48377{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:00.947 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.947903+02:00 -13:18:00.948 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32503ms EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9489134+02:00 -13:18:00.952 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@7201fa81 startThread=0 -13:18:00.953 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@6c5d4a6a on ManagedSelector@19f48377{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:00.953 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@7201fa81 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.957 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9579108+02:00 tryProduce false -13:18:00.968 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:00.969 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@6c5d4a6a -13:18:00.969 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:00.969 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 waiting with 0 keys -13:18:00.972 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32526ms ManagedSelector@19f48377{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:00.972 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@61fc9209{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:00.973 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9739019+02:00 -13:18:00.973 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32528ms EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9739019+02:00 -13:18:00.981 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@11f56092 startThread=0 -13:18:00.981 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@6eb27163 on ManagedSelector@61fc9209{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:00.981 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@11f56092 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:00.982 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:00.9829012+02:00 tryProduce false -13:18:00.982 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:00.982 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@6eb27163 -13:18:00.982 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:00.982 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 0 keys -13:18:00.985 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32540ms ManagedSelector@61fc9209{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:00.986 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32541ms SelectorManager@NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:00.994 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@7b71cf78,POJO} -13:18:00.995 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@7b71cf78 startThread=0 -13:18:00.998 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@144fa239,POJO} -13:18:00.999 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@144fa239 startThread=0 -13:18:00.999 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@5168195d,POJO} -13:18:01.000 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@5168195d startThread=0 -13:18:01.000 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:01.000 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32555ms NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:01.000 [Test worker] INFO org.eclipse.jetty.server.Server - Started @32555ms -13:18:01.001 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @32555ms Server@35ed1b9d{STARTED}[9.4.28.v20200408] -13:18:01.002 [qtp824248140-22] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@7b71cf78 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:01.011 [qtp824248140-19] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@144fa239 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:01.017 [qtp824248140-18] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@5168195d in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:02.037 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 0; route allocated: 0 of 5; total allocated: 0 of 50] -13:18:02.120 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 0][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:02.145 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:02.154 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:02.158 [qtp824248140-22-acceptor-0@7b71cf78-NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@75473384 on ManagedSelector@61fc9209{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:02.160 [qtp824248140-22-acceptor-0@7b71cf78-NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@61fc9209{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:02.160 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:64952<->127.0.0.1:8080 -13:18:02.162 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:02.162 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:02.163 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken with none selected -13:18:02.164 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 0/0/0 selected -13:18:02.164 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 0 keys, 1 updates -13:18:02.164 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:02.164 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@75473384 -13:18:02.164 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@75473384 startThread=0 -13:18:02.165 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:02.165 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 1 keys -13:18:02.166 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@75473384 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:02.163 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:02.189 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> POST /__admin/mappings HTTP/1.1 -13:18:02.189 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Length: 328 -13:18:02.190 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Type: text/plain; charset=UTF-8 -13:18:02.190 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Host: localhost:8080 -13:18:02.191 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Connection: Keep-Alive -13:18:02.191 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Length: 328[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Host: localhost:8080[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "{[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "id" : "426032fd-5bba-4660-9b00-65bb621aa3c1",[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "request" : {[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "method" : "GET"[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " },[\r][\n]" -13:18:02.192 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "response" : {[\r][\n]" -13:18:02.193 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "status" : 401[\r][\n]" -13:18:02.193 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " },[\r][\n]" -13:18:02.193 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "uuid" : "426032fd-5bba-4660-9b00-65bb621aa3c1",[\r][\n]" -13:18:02.193 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:02.193 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:02.198 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "}" -13:18:02.231 [qtp824248140-24] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=26/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 25 ms, remaining: 29975 ms -13:18:02.544 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=340/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:02.579 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=375/30000}{io=0/0,kio=0,kro=0}-> -13:18:02.581 [qtp824248140-24] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=376/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:02.599 [qtp824248140-24] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=379/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:02.599 [qtp824248140-24] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=395/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:02.600 [qtp824248140-24] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@73330a74{AC.ReadCB@6d895b6e{HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:02.607 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:02.608 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@6bae17c5 on ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:02.608 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:02.608 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken with none selected -13:18:02.608 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 0/0/1 selected -13:18:02.608 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 0 keys, 1 updates -13:18:02.608 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:02.608 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=8/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:02.609 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@75473384 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}] -13:18:02.609 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@6bae17c5 -13:18:02.610 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9/30000}{io=1/1,kio=1,kro=0}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:02.610 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:02.610 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 1 keys -13:18:02.610 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 1/1/1 selected -13:18:02.610 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 1 keys, 0 updates -13:18:02.611 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64952], selector=sun.nio.ch.WindowsSelectorImpl@79f2d02e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=10/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:02.611 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=11/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:02.612 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=12/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:02.612 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=0} tryExecute EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:02.6125734+02:00 -13:18:02.613 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1} startReservedThread p=1 -13:18:02.618 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@238f6469{s=0/1,p=1}@45cccc31 startThread=0 -13:18:02.619 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:02.6195766+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=19/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:02.620 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=20/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:02.620 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:02.620 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:02.621 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=20/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:02.621 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 1 keys -13:18:02.625 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@238f6469{s=0/1,p=1}@45cccc31 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}] -13:18:02.626 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=1}@45cccc31 started -13:18:02.626 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@45cccc31 waiting -13:18:02.627 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=27/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:02.628 [qtp824248140-21] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@73330a74{AC.ReadCB@6d895b6e{HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=28/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:02.629 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=28/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:02.633 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 523 HeapByteBuffer@6457bf7d[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:02.638 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 523 HeapByteBuffer@6457bf7d[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:02.641 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:02.643 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:02.644 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:02.662 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:02.663 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:02.663 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:02.663 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:02.666 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:02.667 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:02.667 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:02.669 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:02.669 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:02.670 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:02.670 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:02.670 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:02.674 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:02.674 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:02.699 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:02.701 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:02.701 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:02.701 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:02.704 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 328 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:02.727 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=94/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=25} parsed true HttpParser{s=CONTENT,0 of 328} -13:18:02.728 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=26} -13:18:02.728 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:02.732 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=29} -13:18:02.736 [qtp824248140-21] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=33} -13:18:02.737 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:02.737 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:02.742 [qtp824248140-21] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:02.750 [qtp824248140-21] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:02.793 [qtp824248140-21] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@6fe29760 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf -13:18:02.794 [qtp824248140-21] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:02.795 [qtp824248140-21] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:02.796 [qtp824248140-21] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:03.144 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=511/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=442} parse HeapByteBuffer@6457bf7d[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "426032fd-5bb...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:03.144 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6457bf7d[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "426032fd-5bb...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:03.147 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=444} Content@6d50db8c{HeapByteBufferR@2abf5856[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "426032fd-5bb...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:03.148 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=0,[0]=null,s=STREAM] addContent Content@6d50db8c{HeapByteBufferR@2abf5856[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "426032fd-5bb...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:03.148 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:03.149 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=447} -13:18:03.149 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:03.150 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=447} -13:18:03.150 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:03.151 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=517/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,328 of 328},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=449} parsed false HttpParser{s=END,328 of 328} -13:18:03.152 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=328,q=1,[0]=EOF,s=STREAM] read 328 from Content@6d50db8c{HeapByteBufferR@2abf5856[p=523,l=523,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:03.153 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=520/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,328 of 328},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=451} -13:18:03.156 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:03.884 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@1ac5ccc[p=0,l=328,c=8192,r=328]={<<<{\r\n "id" : "426032fd-5bb...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:03.887 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@5b058719[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "426032fd-5bb...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:03.888 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@5b058719[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "426032fd-5bb...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@788766c6{null} -13:18:03.889 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1186} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:03.906 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1e6aab03] (null,[p=0,l=328,c=32768,r=328],false)@START -13:18:03.911 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@5b058719[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "426032fd-5bb...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:03.912 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:03.912 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:03.912 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1e6aab03] ([p=0,l=122,c=8192,r=122],[p=0,l=328,c=32768,r=328],false)@COMMITTED -13:18:03.913 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@6457bf7d[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@5b058719[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "426032fd-5bb...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:03.913 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:03.914 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "HTTP/1.1 201 Created[\r][\n]" -13:18:03.914 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Content-Type: application/json[\r][\n]" -13:18:03.914 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]" -13:18:03.914 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:03.914 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:03.914 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "148[\r][\n]" -13:18:03.914 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1281/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,328 of 328},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1212} -13:18:03.915 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 328 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,328 of 328},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1213} -13:18:03.916 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=450 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:03.916 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:03.916 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1e6aab03] ([p=122,l=122,c=8192,r=0],[p=328,l=328,c=32768,r=0],false)@COMMITTED -13:18:03.917 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:03.918 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@788766c6{null} -13:18:03.918 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@788766c6{null} -13:18:03.919 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@50626068] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:03.919 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@50626068] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:03.919 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@50626068] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:03.919 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@29acffbb[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:03.919 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:03.920 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,328 of 328},g=HttpGenerator@54c679a9{s=COMPLETING}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1217} -13:18:03.920 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:03.920 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:03.920 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@50626068] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:03.920 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:03.921 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@7239355a in null -13:18:03.923 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << HTTP/1.1 201 Created -13:18:03.923 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Content-Type: application/json -13:18:03.923 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Transfer-Encoding: chunked -13:18:03.923 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Server: Jetty(9.4.28.v20200408) -13:18:03.923 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:03.925 [qtp824248140-21] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1221} -13:18:03.926 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:03.926 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:03.926 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1224} -13:18:03.928 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@7f33d4be) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:03.929 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:03.929 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:03.930 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:03.930 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1228} -13:18:03.930 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=328 -13:18:03.944 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "{[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "id" : "426032fd-5bba-4660-9b00-65bb621aa3c1",[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "request" : {[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "method" : "GET"[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " },[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "response" : {[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "status" : 401[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " },[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "uuid" : "426032fd-5bba-4660-9b00-65bb621aa3c1",[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "}[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "0[\r][\n]" -13:18:03.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:03.967 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 0][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:03.967 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 0 -13:18:03.967 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 0][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:03.969 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:03.969 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,328 of 328} -13:18:03.969 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:03.969 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:03.970 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:03.970 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:03.971 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=50/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:03.971 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=51/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:03.971 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:03.971 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=51/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:03.972 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=51/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:03.972 [qtp824248140-21] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=52/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:03.972 [qtp824248140-21] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@73330a74{AC.ReadCB@6d895b6e{HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:03.972 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:03.975 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@6bae17c5 on ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:03.976 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:03.976 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken with none selected -13:18:03.976 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 0/0/1 selected -13:18:03.976 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 0 keys, 1 updates -13:18:03.976 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:03.976 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@6bae17c5 -13:18:03.976 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:03.976 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:03.976 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 1 keys -13:18:03.977 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:03.977 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:04.067 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:04.067 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 0][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:04.067 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 30000 -13:18:04.067 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:04.071 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[read] I/O error: Read timed out" -13:18:04.071 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:04.071 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:04.071 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:04.071 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> POST /__admin/mappings HTTP/1.1 -13:18:04.071 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Length: 644 -13:18:04.071 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Type: text/plain; charset=UTF-8 -13:18:04.072 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Host: localhost:8080 -13:18:04.072 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Connection: Keep-Alive -13:18:04.072 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Length: 644[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Host: localhost:8080[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "{[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "id" : "119840fa-8e29-44b8-bf4c-6e4b40a3c5e5",[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "request" : {[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "method" : "POST",[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "headers" : {[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "Content-Type" : {[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "equalTo" : "application/json"[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " }[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " },[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " } ][\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " },[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "response" : {[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "status" : 200,[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:04.072 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "headers" : {[\r][\n]" -13:18:04.073 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:04.073 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " }[\r][\n]" -13:18:04.073 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " },[\r][\n]" -13:18:04.073 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "uuid" : "119840fa-8e29-44b8-bf4c-6e4b40a3c5e5",[\r][\n]" -13:18:04.073 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:04.073 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:04.073 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "}" -13:18:04.073 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 1/1/1 selected -13:18:04.073 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 1 keys, 0 updates -13:18:04.074 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64952], selector=sun.nio.ch.WindowsSelectorImpl@79f2d02e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=101/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.075 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=102/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.075 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=102/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:04.075 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0} tryExecute EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:04.0753561+02:00 -13:18:04.076 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=0}@45cccc31 offer EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:04.0763565+02:00 -13:18:04.076 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1} startReservedThread p=1 -13:18:04.076 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@238f6469{s=0/1,p=1}@454c973f startThread=0 -13:18:04.077 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:04.0763565+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=104/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:04.077 [qtp824248140-23] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@73330a74{AC.ReadCB@6d895b6e{HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=104/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:04.078 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=105/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:04.078 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 839 HeapByteBuffer@6457bf7d[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.079 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 839 HeapByteBuffer@6457bf7d[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.079 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:04.079 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.079 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:04.079 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:04.079 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:04.079 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:04.080 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 644 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:04.081 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 644},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} parsed true HttpParser{s=CONTENT,0 of 644} -13:18:04.081 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:18:04.081 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:04.081 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:04.081 [qtp824248140-23] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:04.081 [qtp824248140-23] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:04.081 [qtp824248140-23] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:04.081 [qtp824248140-23] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:04.082 [qtp824248140-23] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:04.082 [qtp824248140-23] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:04.082 [qtp824248140-23] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:04.083 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 644},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} parse HeapByteBuffer@6457bf7d[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "119840fa-8e2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:04.083 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6457bf7d[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "119840fa-8e2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.083 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} Content@367929e9{HeapByteBufferR@42c42a9b[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "119840fa-8e2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:04.083 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=0,[0]=null,s=STREAM] addContent Content@367929e9{HeapByteBufferR@42c42a9b[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "119840fa-8e2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:04.083 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:04.083 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:04.083 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:04.083 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:04.083 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:04.084 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,644 of 644},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} parsed false HttpParser{s=END,644 of 644} -13:18:04.084 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=644,q=1,[0]=EOF,s=STREAM] read 644 from Content@367929e9{HeapByteBufferR@42c42a9b[p=839,l=839,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:04.084 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,644 of 644},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:04.084 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:04.088 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1}@45cccc31 task=EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:04.0873557+02:00 -13:18:04.090 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:04.0903541+02:00 tryProduce true -13:18:04.090 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:04.093 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:04.094 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@238f6469{s=0/1,p=1}@454c973f in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}] -13:18:04.094 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=1}@454c973f started -13:18:04.094 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@454c973f waiting -13:18:04.108 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,644 of 644},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=28} -13:18:04.108 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 1 keys -13:18:04.329 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@31311a45[p=0,l=644,c=8192,r=644]={<<<{\r\n "id" : "119840fa-8e2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:04.330 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@5b058719[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "119840fa-8e2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.330 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@5b058719[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "119840fa-8e2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@788766c6{null} -13:18:04.330 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=250} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:04.330 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c1d35d5] (null,[p=0,l=644,c=32768,r=644],false)@START -13:18:04.331 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@5b058719[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "119840fa-8e2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.331 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:04.331 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:04.331 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c1d35d5] ([p=0,l=122,c=8192,r=122],[p=0,l=644,c=32768,r=644],false)@COMMITTED -13:18:04.331 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@6457bf7d[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@5b058719[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "119840fa-8e2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:04.331 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:04.332 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "HTTP/1.1 201 Created[\r][\n]" -13:18:04.332 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Content-Type: application/json[\r][\n]" -13:18:04.332 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]" -13:18:04.332 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:04.332 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:04.332 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "284[\r][\n]" -13:18:04.332 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << HTTP/1.1 201 Created -13:18:04.332 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Content-Type: application/json -13:18:04.332 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Transfer-Encoding: chunked -13:18:04.332 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Server: Jetty(9.4.28.v20200408) -13:18:04.332 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:04.334 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=254/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,644 of 644},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=254} -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "{[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "id" : "119840fa-8e29-44b8-bf4c-6e4b40a3c5e5",[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "request" : {[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "url" : "/api/v0/components/login",[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "method" : "POST",[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "headers" : {[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "Content-Type" : {[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "equalTo" : "application/json"[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " }[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " },[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "bodyPatterns" : [ {[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:04.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " } ][\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " },[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "response" : {[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "status" : 200,[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "headers" : {[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "Content-Type" : "application/json"[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " }[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " },[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "uuid" : "119840fa-8e29-44b8-bf4c-6e4b40a3c5e5",[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:04.335 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "}" -13:18:04.335 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 644 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,644 of 644},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=254} -13:18:04.335 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=766 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:04.335 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:04.335 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c1d35d5] ([p=122,l=122,c=8192,r=0],[p=644,l=644,c=32768,r=0],false)@COMMITTED -13:18:04.335 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:04.336 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@788766c6{null} -13:18:04.336 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@788766c6{null} -13:18:04.336 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1f0599a6] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:04.336 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1f0599a6] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:04.336 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1f0599a6] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:04.336 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@29acffbb[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:04.336 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:04.336 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:04.336 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "0[\r][\n]" -13:18:04.336 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:04.336 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 0][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:04.336 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 0 -13:18:04.336 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 0][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:04.354 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,644 of 644},g=HttpGenerator@54c679a9{s=COMPLETING}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=274} -13:18:04.355 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:04.355 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:04.356 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1f0599a6] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:04.356 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:04.359 [qtp824248140-23] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@7239355a in null -13:18:04.360 [qtp824248140-23] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:04.360 [qtp824248140-23] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=280} -13:18:04.360 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:04.360 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.360 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=280} -13:18:04.360 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@6dd29221) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:04.360 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.360 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.360 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.361 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=280} -13:18:04.363 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=644 -13:18:04.370 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.370 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,644 of 644} -13:18:04.370 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:04.370 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.372 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.372 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.372 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=17/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.372 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=17/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:04.372 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.373 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=17/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:04.379 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=21/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.380 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=25/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.380 [qtp824248140-23] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@73330a74{AC.ReadCB@6d895b6e{HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:04.380 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.380 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@6bae17c5 on ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:04.380 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:04.380 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken with none selected -13:18:04.381 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 0/0/1 selected -13:18:04.381 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 0 keys, 1 updates -13:18:04.381 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:04.381 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@6bae17c5 -13:18:04.381 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.381 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:04.381 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:04.381 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 1 keys -13:18:04.381 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@11f56092 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:04.385 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:04.387 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 0][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:04.387 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 30000 -13:18:04.387 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:04.389 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[read] I/O error: Read timed out" -13:18:04.389 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:04.389 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:04.389 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:04.389 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> POST /__admin/mappings HTTP/1.1 -13:18:04.389 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Length: 2378 -13:18:04.389 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Type: text/plain; charset=UTF-8 -13:18:04.389 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Host: localhost:8080 -13:18:04.389 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Connection: Keep-Alive -13:18:04.389 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Length: 2378[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Host: localhost:8080[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "{[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "id" : "6e7cff03-5f6c-4a54-a8ee-a7e30bf9466d",[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "request" : {[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "method" : "GET",[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "headers" : {[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "Authorization" : {[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " }[\r][\n]" -13:18:04.390 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " }[\r][\n]" -13:18:04.391 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " },[\r][\n]" -13:18:04.392 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "response" : {[\r][\n]" -13:18:04.392 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "status" : 200,[\r][\n]" -13:18:04.392 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "body" : "{\"id\":\"awx\",\"name\":\"AWX\",\"deleted\":false,\"type\":\"REST\",\"parameters\":{\"provisionAdapterUrl\":\"/provision-adapters/awx/jobs\"},\"questions\":[{\"type\":\"survey.question.FreeInput\",\"prompt\":\"AWX instance URL:\",\"description\":\"This is the URL of the AWX installation.\",\"variableName\":\"provisioningBaseUrl\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"https://inhas66974\",\"answerBaseType\":\"STRING\",\"restrictions\":null},{\"type\":\"survey.question.SelectOption\",\"prompt\":\"Select AWX template type\",\"description\":\"Actually only workflow job templates are supported.\",\"variableName\":\"awxTemplateType\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"minimumNumberSelections\":1,\"maximumNumberSelections\":1,\"options\":[\"workflow\"],\"defaultAnswer\":[\"workflow\"]},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Specify provisioning job identifier\",\"description\":\"You can find this identifier in AWX.\",\"variableName\":\"awxTemplateId\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":null,\"answerBaseType\":\"INTEGER\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning username:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningUsername\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.username\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning password:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningPassword\",\"mandatory\":true,\"masked\":true,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.password\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null}]}",[\r][\n]" -13:18:04.392 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "headers" : {[\r][\n]" -13:18:04.392 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:04.393 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " }[\r][\n]" -13:18:04.393 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " },[\r][\n]" -13:18:04.393 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "uuid" : "6e7cff03-5f6c-4a54-a8ee-a7e30bf9466d",[\r][\n]" -13:18:04.393 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:04.393 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:04.393 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "}" -13:18:04.393 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 1/1/1 selected -13:18:04.393 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 1 keys, 0 updates -13:18:04.393 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64952], selector=sun.nio.ch.WindowsSelectorImpl@79f2d02e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.394 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.394 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:04.395 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0} tryExecute EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:04.395311+02:00 -13:18:04.395 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=0}@454c973f offer EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:04.395311+02:00 -13:18:04.395 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1} startReservedThread p=1 -13:18:04.396 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@238f6469{s=0/1,p=1}@a53c6a3 startThread=0 -13:18:04.396 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:04.3963166+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=16/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:04.396 [qtp824248140-20] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@73330a74{AC.ReadCB@6d895b6e{HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=16/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:04.397 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=16/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:04.397 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 2574 HeapByteBuffer@6457bf7d[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.397 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 2574 HeapByteBuffer@6457bf7d[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.397 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:04.398 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 2378 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 2378},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} parsed true HttpParser{s=CONTENT,0 of 2378} -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:04.399 [qtp824248140-20] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:04.400 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 2378},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} parse HeapByteBuffer@6457bf7d[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "6e7cff03-5f6...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:04.400 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6457bf7d[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "6e7cff03-5f6...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.401 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} Content@e6c5331{HeapByteBufferR@4b6ecc98[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "6e7cff03-5f6...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:04.402 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=0,[0]=null,s=STREAM] addContent Content@e6c5331{HeapByteBufferR@4b6ecc98[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "6e7cff03-5f6...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:04.402 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:04.402 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:04.402 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:04.402 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:04.402 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:04.403 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} parsed false HttpParser{s=END,2378 of 2378} -13:18:04.403 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=2378,q=1,[0]=EOF,s=STREAM] read 2378 from Content@e6c5331{HeapByteBufferR@4b6ecc98[p=2574,l=2574,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:04.403 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} -13:18:04.403 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:04.429 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1}@454c973f task=EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:04.4293129+02:00 -13:18:04.430 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:04.4303145+02:00 tryProduce true -13:18:04.430 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:04.430 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:04.430 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@238f6469{s=0/1,p=1}@a53c6a3 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}] -13:18:04.430 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=1}@a53c6a3 started -13:18:04.430 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@a53c6a3 waiting -13:18:04.432 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=34/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=34} -13:18:04.433 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 1 keys -13:18:04.465 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@16f6279d[p=0,l=2378,c=8192,r=2378]={<<<{\r\n "id" : "6e7cff03-5f6...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:04.465 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@5b058719[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "6e7cff03-5f6...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.466 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@5b058719[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "6e7cff03-5f6...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@788766c6{null} -13:18:04.466 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=68} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:04.466 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2b4133d7] (null,[p=0,l=2378,c=32768,r=2378],false)@START -13:18:04.466 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@5b058719[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "6e7cff03-5f6...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.466 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:04.466 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:04.466 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2b4133d7] ([p=0,l=122,c=8192,r=122],[p=0,l=2378,c=32768,r=2378],false)@COMMITTED -13:18:04.466 [qtp824248140-20] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@6457bf7d[p=0,l=122,c=8192,r=122]={<<>>ection: K...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@5b058719[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "6e7cff03-5f6...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:04.466 [qtp824248140-20] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:04.467 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "HTTP/1.1 201 Created[\r][\n]" -13:18:04.467 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Content-Type: application/json[\r][\n]" -13:18:04.467 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]" -13:18:04.467 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:04.467 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:04.467 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "94A[\r][\n]" -13:18:04.467 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << HTTP/1.1 201 Created -13:18:04.467 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Content-Type: application/json -13:18:04.467 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Transfer-Encoding: chunked -13:18:04.467 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Server: Jetty(9.4.28.v20200408) -13:18:04.467 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:04.468 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=70/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=70} -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "{[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "id" : "6e7cff03-5f6c-4a54-a8ee-a7e30bf9466d",[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "request" : {[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "method" : "GET",[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "headers" : {[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "Authorization" : {[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " }[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " }[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " },[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "response" : {[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "status" : 200,[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "body" : "{\"id\":\"awx\",\"name\":\"AWX\",\"deleted\":false,\"type\":\"REST\",\"parameters\":{\"provisionAdapterUrl\":\"/provision-adapters/awx/jobs\"},\"questions\":[{\"type\":\"survey.question.FreeInput\",\"prompt\":\"AWX instance URL:\",\"description\":\"This is the URL of the AWX installation.\",\"variableName\":\"provisioningBaseUrl\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"https://inhas66974\",\"answerBaseType\":\"STRING\",\"restrictions\":null},{\"type\":\"survey.question.SelectOption\",\"prompt\":\"Select AWX template type\",\"description\":\"Actually only workflow job templates are supported.\",\"variableName\":\"awxTemplateType\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"minimumNumberSelections\":1,\"maximumNumberSelections\":1,\"options\":[\"workflow\"],\"defaultAnswer\":[\"workflow\"]},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Specify provisioning job identifier\",\"description\":\"You can find this identifier in AWX.\",\"variableName\":\"awxTemplateId\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":null,\"answerBaseType\":\"INTEGER\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning username:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningUsername\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.username\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning password:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningPassword\",\"mandatory\":true,\"masked\":true,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.password\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null}]}",[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "headers" : {[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "Content-Type" : "application/json"[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " }[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " },[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "uuid" : "6e7cff03-5f6c-4a54-a8ee-a7e30bf9466d",[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:04.468 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "}" -13:18:04.469 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 2378 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=71} -13:18:04.469 [qtp824248140-20] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=2500 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:04.469 [qtp824248140-20] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:04.469 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2b4133d7] ([p=122,l=122,c=8192,r=0],[p=2378,l=2378,c=32768,r=0],false)@COMMITTED -13:18:04.469 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:04.469 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@788766c6{null} -13:18:04.469 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@788766c6{null} -13:18:04.469 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@28c3a4a8] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:04.469 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@28c3a4a8] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:04.470 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@28c3a4a8] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:04.470 [qtp824248140-20] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@29acffbb[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:04.470 [qtp824248140-20] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:04.470 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:04.470 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "0[\r][\n]" -13:18:04.470 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:04.470 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 0][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:04.470 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 0 -13:18:04.470 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 0][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:04.478 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@54c679a9{s=COMPLETING}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=80} -13:18:04.478 [qtp824248140-20] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:04.478 [qtp824248140-20] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:04.478 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@28c3a4a8] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:04.478 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:04.478 [qtp824248140-20] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@7239355a in null -13:18:04.479 [qtp824248140-20] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:04.479 [qtp824248140-20] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} -13:18:04.479 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:04.479 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.479 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} -13:18:04.479 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@2a1f39cc) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:04.479 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.479 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.480 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.480 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=82} -13:18:04.480 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=2378 -13:18:04.480 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:04.480 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,2378 of 2378} -13:18:04.480 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:04.480 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.480 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.480 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.481 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.481 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:04.481 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:04.481 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:04.481 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.482 [qtp824248140-20] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.482 [qtp824248140-20] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@73330a74{AC.ReadCB@6d895b6e{HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:04.482 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.483 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@6bae17c5 on ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:04.483 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:04.483 [qtp824248140-20] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:04.483 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@45cccc31 size 1 > capacity -13:18:04.483 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@238f6469{s=1/1,p=0}@45cccc31 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:04.484 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken with none selected -13:18:04.484 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 0/0/1 selected -13:18:04.484 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 0 keys, 1 updates -13:18:04.484 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:04.484 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@6bae17c5 -13:18:04.484 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:04.484 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:04.484 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 1 keys -13:18:05.823 [Test worker] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.level: simple -13:18:05.823 [Test worker] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.targetRecords: 4 -13:18:05.882 [Test worker] DEBUG reactor.netty.resources.DefaultLoopEpoll - Default Epoll support : false -13:18:05.884 [Test worker] DEBUG reactor.netty.resources.DefaultLoopKQueue - Default KQueue support : false -13:18:05.905 [Test worker] DEBUG io.netty.channel.MultithreadEventLoopGroup - -Dio.netty.eventLoopThreads: 8 -13:18:05.979 [Test worker] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 -13:18:05.979 [Test worker] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 -13:18:06.005 [Test worker] DEBUG io.netty.channel.nio.NioEventLoop - -Dio.netty.noKeySetOptimization: false -13:18:06.006 [Test worker] DEBUG io.netty.channel.nio.NioEventLoop - -Dio.netty.selectorAutoRebuildThreshold: 512 -13:18:06.046 [Test worker] DEBUG io.netty.util.internal.PlatformDependent - org.jctools-core.MpscChunkedArrayQueue: available -13:18:06.208 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5f1f40fb] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:06.223 [Test worker] DEBUG reactor.netty.resources.PooledConnectionProvider - Creating a new client pool [PoolFactory {maxConnections=500, pendingAcquireMaxCount=-1, pendingAcquireTimeout=45000, maxIdleTime=-1, maxLifeTime=-1, metricsEnabled=false}] for [localhost:8080] -13:18:06.328 [Test worker] DEBUG io.netty.channel.DefaultChannelId - -Dio.netty.processId: 4312 (auto-detected) -13:18:07.408 [Test worker] DEBUG io.netty.channel.DefaultChannelId - -Dio.netty.machineId: 00:24:32:ff:fe:17:65:c8 (auto-detected) -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.numHeapArenas: 5 -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.numDirectArenas: 5 -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.pageSize: 8192 -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxOrder: 11 -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.chunkSize: 16777216 -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.tinyCacheSize: 512 -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.smallCacheSize: 256 -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.normalCacheSize: 64 -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxCachedBufferCapacity: 32768 -13:18:07.537 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.cacheTrimInterval: 8192 -13:18:07.538 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.cacheTrimIntervalMillis: 0 -13:18:07.538 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.useCacheForAllThreads: true -13:18:07.538 [Test worker] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 -13:18:07.570 [Test worker] DEBUG io.netty.buffer.ByteBufUtil - -Dio.netty.allocator.type: pooled -13:18:07.570 [Test worker] DEBUG io.netty.buffer.ByteBufUtil - -Dio.netty.threadLocalDirectBufferSize: 0 -13:18:07.571 [Test worker] DEBUG io.netty.buffer.ByteBufUtil - -Dio.netty.maxThreadLocalCharBufferSize: 16384 -13:18:07.594 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:07.784 [reactor-http-nio-1] DEBUG io.netty.buffer.AbstractByteBuf - -Dio.netty.buffer.checkAccessible: true -13:18:07.785 [reactor-http-nio-1] DEBUG io.netty.buffer.AbstractByteBuf - -Dio.netty.buffer.checkBounds: true -13:18:07.830 [reactor-http-nio-1] DEBUG io.netty.util.ResourceLeakDetectorFactory - Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@1575e428 -13:18:07.852 [reactor-http-nio-1] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x9c15a5a1] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:07.884 [qtp824248140-22-acceptor-0@7b71cf78-NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@7178a9f4 on ManagedSelector@19f48377{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:07.884 [qtp824248140-22-acceptor-0@7b71cf78-NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@19f48377{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:07.885 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken with none selected -13:18:07.885 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken up from select, 0/0/0 selected -13:18:07.885 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 processing 0 keys, 1 updates -13:18:07.885 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:07.885 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@7178a9f4 -13:18:07.885 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@7178a9f4 startThread=0 -13:18:07.885 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:07.885 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 waiting with 1 keys -13:18:07.886 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@7178a9f4 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:07.887 [qtp824248140-23] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:07.887 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:07.887 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}-> -13:18:07.888 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:07.888 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:07.889 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:07.890 [qtp824248140-23] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2feb1a06{AC.ReadCB@2bcfd4ee{HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:07.890 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:07.891 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@555c9d3f on ManagedSelector@19f48377{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:07.891 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@19f48377{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:07.891 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken with none selected -13:18:07.891 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken up from select, 0/0/1 selected -13:18:07.891 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 processing 0 keys, 1 updates -13:18:07.891 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:07.891 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@555c9d3f -13:18:07.891 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/1,kio=0,kro=0}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:07.891 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@7178a9f4 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:07.891 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:07.891 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:07.892 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 waiting with 1 keys -13:18:07.906 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:07.907 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:07.908 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:08.086 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:08.183 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:08.199 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:08.200 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:08.216 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:08.431 [reactor-http-nio-1] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.maxCapacityPerThread: 4096 -13:18:08.431 [reactor-http-nio-1] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.maxSharedCapacityFactor: 2 -13:18:08.431 [reactor-http-nio-1] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.linkCapacity: 16 -13:18:08.431 [reactor-http-nio-1] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.ratio: 8 -13:18:08.495 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken up from select, 1/1/1 selected -13:18:08.495 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 processing 1 keys, 0 updates -13:18:08.496 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64963], selector=sun.nio.ch.WindowsSelectorImpl@6fac80d8, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=606/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:08.496 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=606/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:08.497 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=607/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:08.497 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0} tryExecute EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:08.4978581+02:00 -13:18:08.498 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=0}@a53c6a3 offer EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:08.4988716+02:00 -13:18:08.498 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1} startReservedThread p=1 -13:18:08.498 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@238f6469{s=0/1,p=1}@1e1e1c94 startThread=0 -13:18:08.499 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:08.4998588+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=609/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:08.499 [qtp824248140-25] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@2feb1a06{AC.ReadCB@2bcfd4ee{HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=609/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:08.499 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=609/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:08.500 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@6457bf7d[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.500 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@6457bf7d[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.500 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:08.500 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.500 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:08.500 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:08.500 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:08.500 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:08.501 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:08.502 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:08.502 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:08.502 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:08.502 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:08.502 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:08.502 [qtp824248140-25] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:08.502 [qtp824248140-25] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:08.502 [qtp824248140-25] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@70434a12 in null -13:18:08.503 [qtp824248140-25] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:08.503 [qtp824248140-25] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:08.503 [qtp824248140-25] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:08.503 [qtp824248140-25] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:08.503 [qtp824248140-25] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@7be2ae82 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34 -13:18:08.506 [qtp824248140-25] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:08.506 [qtp824248140-25] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:08.506 [qtp824248140-25] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:08.508 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:08.515 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@238f6469{s=0/1,p=1}@1e1e1c94 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}] -13:18:08.515 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=1}@1e1e1c94 started -13:18:08.515 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@1e1e1c94 waiting -13:18:08.522 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.522 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.522 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@a53c6a3 task=EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:08.5228381+02:00 -13:18:08.522 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=22/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=21} filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.522 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:08.5228381+02:00 tryProduce true -13:18:08.522 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:08.522 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:08.522 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=22/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=21} parse HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:08.522 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.522 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=22/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=21} -13:18:08.522 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:08.522 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 waiting with 1 keys -13:18:08.522 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=21} -13:18:08.525 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:08.526 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=24} -13:18:08.526 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@bbb4c99[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:08.526 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=26/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=END,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=25} parsed false HttpParser{s=END,0 of -1} -13:18:08.526 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=26/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=END,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=25} -13:18:08.527 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:08.564 [qtp824248140-25] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@782da429 exclude by status 401 -13:18:08.564 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@452fe4bf{null} -13:18:08.565 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=64} -401 null HTTP/1.1 -Matched-Stub-Id: 426032fd-5bba-4660-9b00-65bb621aa3c1 - - -13:18:08.565 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@54d5fa5e] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:08.565 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:08.565 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 426032fd-5bba-4660-9b00-65bb621aa3c1 - - -13:18:08.565 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:08.565 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@54d5fa5e] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:08.565 [qtp824248140-25] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@41cc0001{IDLE}->null [HeapByteBuffer@6457bf7d[p=0,l=145,c=8192,r=145]={<<>> Bearer \r...\x00\x00\x00\x00\x00\x00\x00}] -13:18:08.565 [qtp824248140-25] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@41cc0001{WRITING}->null:IDLE-->WRITING -13:18:08.566 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=65/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=END,0 of -1},g=HttpGenerator@3da61055{s=COMMITTED}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=65} -13:18:08.566 [qtp824248140-25] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@41cc0001{WRITING}->null -13:18:08.566 [qtp824248140-25] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@41cc0001{IDLE}->null:WRITING-->IDLE -13:18:08.566 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@54d5fa5e] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:08.566 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:08.566 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@452fe4bf{null} -13:18:08.566 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@452fe4bf{null} -13:18:08.567 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7b7c0e9b] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:08.568 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7b7c0e9b] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:08.568 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7b7c0e9b] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:08.568 [qtp824248140-25] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@41cc0001{IDLE}->null [HeapByteBuffer@29acffbb[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:08.568 [qtp824248140-25] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@41cc0001{WRITING}->null:IDLE-->WRITING -13:18:08.568 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=END,0 of -1},g=HttpGenerator@3da61055{s=COMPLETING}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=67} -13:18:08.569 [qtp824248140-25] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@41cc0001{WRITING}->null -13:18:08.569 [qtp824248140-25] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@41cc0001{IDLE}->null:WRITING-->IDLE -13:18:08.569 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7b7c0e9b] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:08.569 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:08.569 [qtp824248140-25] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=68} -13:18:08.569 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:08.569 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@5275071b{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:08.569 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=68} -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@7068f43e) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@5275071b{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@5275071b{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@5275071b{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=69} -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@5275071b{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.570 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.571 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.571 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:08.571 [qtp824248140-25] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:08.571 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:08.571 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:08.572 [qtp824248140-25] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:08.572 [qtp824248140-25] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2feb1a06{AC.ReadCB@2bcfd4ee{HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:08.572 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:08.572 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@555c9d3f on ManagedSelector@19f48377{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:08.572 [qtp824248140-25] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@19f48377{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:08.573 [qtp824248140-25] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:08.573 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@7201fa81 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:08.575 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken with none selected -13:18:08.575 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken up from select, 0/0/1 selected -13:18:08.575 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 processing 0 keys, 1 updates -13:18:08.575 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:08.575 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@555c9d3f -13:18:08.577 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:08.577 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:08.577 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 waiting with 1 keys -13:18:08.595 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=426032fd-5bba-4660-9b00-65bb621aa3c1, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:08.595 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:08.609 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5f1f40fb] Response 401 UNAUTHORIZED -13:18:08.871 [reactor-http-nio-1] DEBUG reactor.netty.channel.FluxReceive - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:09.106 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:09.321 [reactor-http-nio-1] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:09.393 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7e840953] HTTP POST http://localhost:8080/api/v0/components/login -13:18:09.396 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0] Created a new pooled channel, now 2 active connections and 0 inactive connections -13:18:09.397 [reactor-http-nio-1] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x816336b0] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:09.426 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:09.426 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:09.427 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:09.427 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:09.427 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:09.442 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Channel cleaned, now 1 active connections and 1 inactive connections -13:18:09.446 [qtp824248140-22-acceptor-0@7b71cf78-NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@347a39bf on ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:09.447 [qtp824248140-22-acceptor-0@7b71cf78-NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@61fc9209{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:09.447 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken with none selected -13:18:09.447 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 0/0/1 selected -13:18:09.447 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 0 keys, 1 updates -13:18:09.447 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:09.447 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@347a39bf -13:18:09.447 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@347a39bf startThread=0 -13:18:09.447 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:09.447 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 2 keys -13:18:09.449 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@347a39bf in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:09.450 [qtp824248140-23] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:09.450 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:09.451 [qtp824248140-23] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}-> -13:18:09.451 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.451 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.452 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.452 [qtp824248140-23] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@a0f5303{AC.ReadCB@4b0008a0{HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:09.452 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.452 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@56eafcff on ManagedSelector@61fc9209{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:09.452 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@61fc9209{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:09.453 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken with none selected -13:18:09.453 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 0/0/2 selected -13:18:09.453 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 0 keys, 1 updates -13:18:09.453 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:09.453 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@56eafcff -13:18:09.453 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.453 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:09.454 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 2 keys -13:18:09.454 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=0}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.454 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@347a39bf in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:09.471 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:09.472 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 1 inactive connections -13:18:09.474 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:09.475 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:09.478 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:09.480 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:09.481 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:09.484 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:09.629 [reactor-http-nio-1] DEBUG org.springframework.core.codec.CharSequenceEncoder - [7e840953] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:09.736 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 1/1/2 selected -13:18:09.736 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 1 keys, 0 updates -13:18:09.737 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64964], selector=sun.nio.ch.WindowsSelectorImpl@79f2d02e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=284/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.737 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=285/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.737 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=285/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:09.738 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0} tryExecute EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:09.7386653+02:00 -13:18:09.739 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=0}@1e1e1c94 offer EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:09.7396662+02:00 -13:18:09.739 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1} startReservedThread p=1 -13:18:09.739 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@238f6469{s=0/1,p=1}@7d50f11a startThread=0 -13:18:09.740 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:09.7396662+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=287/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:09.740 [qtp824248140-24] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@a0f5303{AC.ReadCB@4b0008a0{HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=288/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:09.741 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=288/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:09.741 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@6457bf7d[p=0,l=220,c=8192,r=220]={<<>>6c-4a54-a...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.741 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@6457bf7d[p=0,l=220,c=8192,r=220]={<<>>6c-4a54-a...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=220,c=8192,r=220]={<<>>6c-4a54-a...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=220,c=8192,r=220]={<<>>6c-4a54-a...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:09.742 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:09.743 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:09.744 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=1} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:09.744 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:09.744 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:09.744 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:09.744 [qtp824248140-24] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:09.744 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:09.744 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@165b346e in null -13:18:09.744 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:09.745 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:09.745 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:09.745 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:09.745 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:09.745 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:09.746 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=3} parse HeapByteBuffer@6457bf7d[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>6c-4a54-a...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:09.747 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6457bf7d[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>6c-4a54-a...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.747 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=4} Content@d50195f{HeapByteBufferR@71d682d0[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>6c-4a54-a...\x00\x00\x00\x00\x00\x00\x00}} -13:18:09.747 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@bf465d1[c=0,q=0,[0]=null,s=STREAM] addContent Content@d50195f{HeapByteBufferR@71d682d0[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>6c-4a54-a...\x00\x00\x00\x00\x00\x00\x00}} -13:18:09.748 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:09.749 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -13:18:09.749 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:09.749 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -13:18:09.749 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@bf465d1[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:09.749 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=END,51 of 51},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} parsed false HttpParser{s=END,51 of 51} -13:18:09.750 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@bf465d1[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@d50195f{HeapByteBufferR@71d682d0[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>6c-4a54-a...\x00\x00\x00\x00\x00\x00\x00}} -13:18:09.750 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=END,51 of 51},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=7} -13:18:09.750 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:09.759 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@44c3d885[p=0,l=21,c=8192,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:09.760 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@49d4bba3[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.760 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/login)@165b346e -13:18:09.760 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@c51704b exclude no deflater -13:18:09.760 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@49d4bba3[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@242346fd{null} -13:18:09.760 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=17} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: 119840fa-8e29-44b8-bf4c-6e4b40a3c5e5 -Vary: Accept-Encoding, User-Agent - - -13:18:09.761 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@7efea50c[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@121b00d3] (null,[p=0,l=21,c=32768,r=21],false)@START -13:18:09.761 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@49d4bba3[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.761 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: 119840fa-8e29-44b8-bf4c-6e4b40a3c5e5 -Vary: Accept-Encoding, User-Agent - - -13:18:09.761 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:09.761 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@7efea50c[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@121b00d3] ([p=0,l=206,c=8192,r=206],[p=0,l=21,c=32768,r=21],false)@COMMITTED -13:18:09.762 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@154fe9f3{IDLE}->null [HeapByteBuffer@6457bf7d[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@49d4bba3[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:09.762 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@154fe9f3{WRITING}->null:IDLE-->WRITING -13:18:09.762 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=21/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=END,51 of 51},g=HttpGenerator@41b585b5{s=COMMITTED}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=19} -13:18:09.764 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 21 NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=END,51 of 51},g=HttpGenerator@41b585b5{s=COMMITTED}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=21} -13:18:09.764 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=227 remaining=0 WriteFlusher@154fe9f3{WRITING}->null -13:18:09.764 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@154fe9f3{IDLE}->null:WRITING-->IDLE -13:18:09.764 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@7efea50c[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@121b00d3] ([p=206,l=206,c=8192,r=0],[p=21,l=21,c=32768,r=0],false)@COMMITTED -13:18:09.764 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:09.765 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@242346fd{null} -13:18:09.765 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@242346fd{null} -13:18:09.765 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@7efea50c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2be55109] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:09.765 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@7efea50c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2be55109] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:09.765 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@7efea50c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2be55109] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:09.765 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@154fe9f3{IDLE}->null [HeapByteBuffer@29acffbb[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:09.765 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@154fe9f3{WRITING}->null:IDLE-->WRITING -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=END,51 of 51},g=HttpGenerator@41b585b5{s=COMPLETING}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=22} -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@154fe9f3{WRITING}->null -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@154fe9f3{IDLE}->null:WRITING-->IDLE -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@7efea50c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2be55109] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=23} -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7a04d7ba{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@7a04d7ba{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=23} -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@20b857bc) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:09.766 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@7a04d7ba{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7a04d7ba{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@7a04d7ba{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=24} -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=21 -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@7a04d7ba{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,51 of 51} -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.767 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.768 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.768 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:09.769 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:09.769 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:09.769 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.769 [qtp824248140-24] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.770 [qtp824248140-24] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@a0f5303{AC.ReadCB@4b0008a0{HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:09.770 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.770 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:09.770 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:09.770 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:09.770 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:09.771 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 2 keys -13:18:09.775 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1}@1e1e1c94 task=EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:09.7756714+02:00 -13:18:09.775 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:09.7756714+02:00 tryProduce true -13:18:09.775 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=1}@1e1e1c94 waiting -13:18:09.775 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@238f6469{s=1/1,p=1}@7d50f11a in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=1}] -13:18:09.776 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=1}@7d50f11a size 1 > capacity -13:18:09.776 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@238f6469{s=1/1,p=0}@7d50f11a in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:09.781 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:09.792 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=119840fa-8e29-44b8-bf4c-6e4b40a3c5e5, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:09.792 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:09.793 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7e840953] Response 200 OK -13:18:09.799 [reactor-http-nio-1] DEBUG reactor.netty.channel.FluxReceive - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:09.919 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:09.920 [reactor-http-nio-1] DEBUG org.springframework.core.codec.StringDecoder - [7e840953] Decoded "{"token":"someToken"}" -13:18:09.922 [reactor-http-nio-1] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient logged successfully -13:18:09.922 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:09.922 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:09.922 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:09.923 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:09.923 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:09.923 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:10.638 [parallel-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5f1f40fb] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:10.641 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 1 inactive connections -13:18:10.642 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:10.642 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:10.642 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:10.642 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:10.644 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken up from select, 1/1/1 selected -13:18:10.644 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 processing 1 keys, 0 updates -13:18:10.645 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:10.645 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64963], selector=sun.nio.ch.WindowsSelectorImpl@6fac80d8, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2072/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:10.645 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2072/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:10.645 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2073/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:10.645 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0} tryExecute EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:10.6455436+02:00 -13:18:10.646 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=0}@1e1e1c94 offer EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:10.6465469+02:00 -13:18:10.646 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1} startReservedThread p=1 -13:18:10.646 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@238f6469{s=0/1,p=1}@7058916b startThread=0 -13:18:10.647 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:10.6475456+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2074/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:10.647 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1}@1e1e1c94 task=EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:10.6475456+02:00 -13:18:10.647 [qtp824248140-21] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@2feb1a06{AC.ReadCB@2bcfd4ee{HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2075/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:10.647 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:10.6475456+02:00 tryProduce true -13:18:10.647 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2075/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:10.648 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 166 HeapByteBuffer@6457bf7d[p=0,l=166,c=8192,r=166]={<<>>\nServer: ...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.648 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 166 HeapByteBuffer@6457bf7d[p=0,l=166,c=8192,r=166]={<<>>\nServer: ...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.648 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=166,c=8192,r=166]={<<>>\nServer: ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:10.648 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=166,c=8192,r=166]={<<>>\nServer: ...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.648 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:10.648 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:10.648 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:10.648 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:10.648 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer someToken - - -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:10.649 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@70434a12 in null -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:10.650 [qtp824248140-21] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:10.652 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@238f6469{s=0/1,p=1}@7058916b in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}] -13:18:10.652 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=1}@7058916b started -13:18:10.652 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@7058916b waiting -13:18:10.647 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:10.652 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.652 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.653 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:10.653 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.653 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} parse HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:10.653 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.653 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:10.653 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:10.653 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:10.653 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:10.653 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@bbb4c99[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:10.653 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:10.653 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 waiting with 1 keys -13:18:10.653 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=END,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} parsed false HttpParser{s=END,0 of -1} -13:18:10.654 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=END,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=5} -13:18:10.654 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:10.657 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@129fead[p=0,l=1677,c=8192,r=1677]={<<<{"id":"awx","name":"AWX",...,"restrictions":null}]}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:10.657 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@49d4bba3[p=0,l=1677,c=32768,r=1677]={<<<{"id":"awx","name":"AWX",...,"restrictions":null}]}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.657 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@70434a12 -13:18:10.657 [qtp824248140-21] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@35cef42a exclude no deflater -13:18:10.657 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@49d4bba3[p=0,l=1677,c=32768,r=1677]={<<<{"id":"awx","name":"AWX",...,"restrictions":null}]}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@452fe4bf{null} -13:18:10.658 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=9} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: 6e7cff03-5f6c-4a54-a8ee-a7e30bf9466d -Vary: Accept-Encoding, User-Agent - - -13:18:10.658 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@75819c26] (null,[p=0,l=1677,c=32768,r=1677],false)@START -13:18:10.658 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@49d4bba3[p=0,l=1677,c=32768,r=1677]={<<<{"id":"awx","name":"AWX",...,"restrictions":null}]}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.658 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: 6e7cff03-5f6c-4a54-a8ee-a7e30bf9466d -Vary: Accept-Encoding, User-Agent - - -13:18:10.658 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:10.658 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@75819c26] ([p=0,l=207,c=8192,r=207],[p=0,l=1677,c=32768,r=1677],false)@COMMITTED -13:18:10.658 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@41cc0001{IDLE}->null [HeapByteBuffer@6457bf7d[p=0,l=207,c=8192,r=207]={<<>>ogClientA...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@49d4bba3[p=0,l=1677,c=32768,r=1677]={<<<{"id":"awx","name":"AWX",...,"restrictions":null}]}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:10.658 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@41cc0001{WRITING}->null:IDLE-->WRITING -13:18:10.659 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 207 NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=10/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=END,0 of -1},g=HttpGenerator@3da61055{s=COMMITTED}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=10} -13:18:10.659 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 1677 NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=END,0 of -1},g=HttpGenerator@3da61055{s=COMMITTED}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=10} -13:18:10.659 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=1884 remaining=0 WriteFlusher@41cc0001{WRITING}->null -13:18:10.659 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@41cc0001{IDLE}->null:WRITING-->IDLE -13:18:10.659 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@75819c26] ([p=207,l=207,c=8192,r=0],[p=1677,l=1677,c=32768,r=0],false)@COMMITTED -13:18:10.659 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:10.659 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=6e7cff03-5f6c-4a54-a8ee-a7e30bf9466d, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:10.659 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@452fe4bf{null} -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@452fe4bf{null} -13:18:10.660 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@57584784] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@57584784] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:10.660 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5f1f40fb] Response 200 OK -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@57584784] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@41cc0001{IDLE}->null [HeapByteBuffer@29acffbb[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@41cc0001{WRITING}->null:IDLE-->WRITING -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=END,0 of -1},g=HttpGenerator@3da61055{s=COMPLETING}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=11} -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@41cc0001{WRITING}->null -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@41cc0001{IDLE}->null:WRITING-->IDLE -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@58ca6aa0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@57584784] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:10.660 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=12} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@5275071b{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@5275071b{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=12} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@194a0754) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@5275071b{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@5275071b{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@5275071b{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=12} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=1677 -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@5275071b{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.661 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.662 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.662 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:10.662 [reactor-http-nio-1] DEBUG reactor.netty.channel.FluxReceive - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:10.662 [qtp824248140-21] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:10.662 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:10.663 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:10.663 [qtp824248140-21] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:10.663 [qtp824248140-21] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2feb1a06{AC.ReadCB@2bcfd4ee{HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:10.663 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:10.664 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@555c9d3f on ManagedSelector@19f48377{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:10.664 [qtp824248140-21] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@19f48377{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:10.664 [qtp824248140-21] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:10.664 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@a53c6a3 size 1 > capacity -13:18:10.664 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@238f6469{s=1/1,p=0}@a53c6a3 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:10.664 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken with none selected -13:18:10.665 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken up from select, 0/0/1 selected -13:18:10.665 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 processing 0 keys, 1 updates -13:18:10.665 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:10.665 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@555c9d3f -13:18:10.665 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:10.665 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:10.665 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 waiting with 1 keys -13:18:10.672 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:11.061 [reactor-http-nio-1] DEBUG org.springframework.http.codec.json.Jackson2JsonDecoder - [5f1f40fb] Decoded [ProvisionAdapterResponse(id=awx, name=AWX, deleted=false, type=REST, parameters={provisionAdapterUrl (truncated)...] -13:18:11.168 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:11.168 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:11.168 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:11.168 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:11.168 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:11.169 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:11.206 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:11.208 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[read] I/O error: Read timed out" -13:18:11.208 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 0][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:11.208 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 30000 -13:18:11.208 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:11.210 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[read] I/O error: Read timed out" -13:18:11.210 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:11.210 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:11.210 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:11.211 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> POST /__admin/requests/count HTTP/1.1 -13:18:11.211 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Length: 86 -13:18:11.211 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Type: text/plain; charset=UTF-8 -13:18:11.211 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Host: localhost:8080 -13:18:11.211 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Connection: Keep-Alive -13:18:11.211 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Length: 86[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Host: localhost:8080[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "{[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "url" : "/api/v0/components/provision-adapters/{adapter}",[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "method" : "GET"[\r][\n]" -13:18:11.211 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "}" -13:18:11.211 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 1/1/2 selected -13:18:11.211 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 1 keys, 0 updates -13:18:11.212 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64952], selector=sun.nio.ch.WindowsSelectorImpl@79f2d02e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6730/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.212 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6731/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.212 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6731/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:11.212 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0} tryExecute EatWhatYouKill@36d30a44/SelectorProducer@a77e489/REPRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:11.2124622+02:00 -13:18:11.213 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=0}@7058916b offer EatWhatYouKill@36d30a44/SelectorProducer@a77e489/REPRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:11.2134623+02:00 -13:18:11.214 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1} startReservedThread p=1 -13:18:11.214 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@238f6469{s=0/1,p=1}@6aefd6e0 startThread=0 -13:18:11.215 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:11.2144608+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6734/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:11.216 [qtp824248140-24] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@73330a74{AC.ReadCB@6d895b6e{HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6734/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:11.216 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6735/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:11.216 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 286 HeapByteBuffer@6457bf7d[p=0,l=286,c=8192,r=286]={<<>>/componen...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.216 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 286 HeapByteBuffer@6457bf7d[p=0,l=286,c=8192,r=286]={<<>>/componen...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=286,c=8192,r=286]={<<>>/componen...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=286,c=8192,r=286]={<<>>/componen...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:11.217 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 86 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 86},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} parsed true HttpParser{s=CONTENT,0 of 86} -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:11.218 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:11.219 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 86},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parse HeapByteBuffer@6457bf7d[p=200,l=286,c=8192,r=86]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>/componen...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:11.219 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6457bf7d[p=200,l=286,c=8192,r=86]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>/componen...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.219 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} Content@85aa3f{HeapByteBufferR@169de3f[p=200,l=286,c=8192,r=86]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>/componen...\x00\x00\x00\x00\x00\x00\x00}} -13:18:11.220 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=0,[0]=null,s=STREAM] addContent Content@85aa3f{HeapByteBufferR@169de3f[p=200,l=286,c=8192,r=86]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>/componen...\x00\x00\x00\x00\x00\x00\x00}} -13:18:11.220 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:11.220 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} -13:18:11.220 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:11.220 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} -13:18:11.220 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:11.220 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,86 of 86},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} parsed false HttpParser{s=END,86 of 86} -13:18:11.220 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=86,q=1,[0]=EOF,s=STREAM] read 86 from Content@85aa3f{HeapByteBufferR@169de3f[p=286,l=286,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>/componen...\x00\x00\x00\x00\x00\x00\x00}} -13:18:11.221 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,86 of 86},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} -13:18:11.221 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:11.240 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=1}@7058916b task=EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:11.2404595+02:00 -13:18:11.241 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=true/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:11.2414676+02:00 tryProduce true -13:18:11.245 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:11.245 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:11.245 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@238f6469{s=0/1,p=1}@6aefd6e0 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=0/1,p=1}] -13:18:11.246 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=1}@6aefd6e0 started -13:18:11.246 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@6aefd6e0 waiting -13:18:11.250 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=32/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,86 of 86},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=32} -13:18:11.250 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 2 keys -13:18:11.254 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@20f240c5[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:11.254 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@5b058719[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.254 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@5b058719[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@788766c6{null} -13:18:11.255 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=37} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:11.255 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5547ceb8] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:11.255 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@5b058719[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.255 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:11.255 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:11.255 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5547ceb8] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:11.255 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@6457bf7d[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@5b058719[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:11.256 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:11.256 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]" -13:18:11.256 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Content-Type: application/json[\r][\n]" -13:18:11.256 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]" -13:18:11.256 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:11.256 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:11.256 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "38[\r][\n]" -13:18:11.256 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << HTTP/1.1 200 OK -13:18:11.256 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Content-Type: application/json -13:18:11.256 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Transfer-Encoding: chunked -13:18:11.256 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Server: Jetty(9.4.28.v20200408) -13:18:11.256 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:11.257 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=40/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,86 of 86},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=40} -13:18:11.257 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "{[\r][\n]" -13:18:11.257 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "count" : 0,[\r][\n]" -13:18:11.257 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "requestJournalDisabled" : false[\r][\n]" -13:18:11.257 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "}" -13:18:11.257 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,86 of 86},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=40} -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5547ceb8] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@788766c6{null} -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@788766c6{null} -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@182dff2c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@182dff2c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@182dff2c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@29acffbb[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:11.258 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:11.258 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:11.258 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "0[\r][\n]" -13:18:11.258 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:11.259 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 0][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:11.259 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 0 -13:18:11.259 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 0][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:11.264 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:11.264 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 0][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:11.264 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 30000 -13:18:11.264 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:11.269 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[read] I/O error: Read timed out" -13:18:11.269 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:11.269 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:11.269 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:11.270 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> POST /__admin/requests/count HTTP/1.1 -13:18:11.270 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Length: 63 -13:18:11.270 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Type: text/plain; charset=UTF-8 -13:18:11.270 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Host: localhost:8080 -13:18:11.271 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Connection: Keep-Alive -13:18:11.271 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:11.271 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:11.271 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Length: 63[\r][\n]" -13:18:11.271 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:11.271 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Host: localhost:8080[\r][\n]" -13:18:11.271 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]" -13:18:11.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:11.275 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" -13:18:11.275 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "{[\r][\n]" -13:18:11.275 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:11.275 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "method" : "GET"[\r][\n]" -13:18:11.275 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "}" -13:18:11.275 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=17/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,86 of 86},g=HttpGenerator@54c679a9{s=COMPLETING}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=58} -13:18:11.275 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:11.275 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:11.275 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@182dff2c] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:11.275 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:11.276 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@7239355a in null -13:18:11.276 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@62d767f{/,null,AVAILABLE} -13:18:11.276 [qtp824248140-24] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=59} -13:18:11.276 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:11.276 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:11.276 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=59} -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@7b568dc4) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=60} -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@131607a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,86 of 86} -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 263 HeapByteBuffer@6457bf7d[p=0,l=263,c=8192,r=263]={<<>>\r\n "meth...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.277 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 263 HeapByteBuffer@6457bf7d[p=0,l=263,c=8192,r=263]={<<>>\r\n "meth...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6457bf7d[p=0,l=263,c=8192,r=263]={<<>>\r\n "meth...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6457bf7d[p=0,l=263,c=8192,r=263]={<<>>\r\n "meth...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:11.278 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 63 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} parsed true HttpParser{s=CONTENT,0 of 63} -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,AVAILABLE} -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:11.279 [qtp824248140-24] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} parse HeapByteBuffer@6457bf7d[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>\r\n "meth...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6457bf7d[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>\r\n "meth...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} Content@49100e03{HeapByteBufferR@22493b97[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>\r\n "meth...\x00\x00\x00\x00\x00\x00\x00}} -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=0,[0]=null,s=STREAM] addContent Content@49100e03{HeapByteBufferR@22493b97[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>\r\n "meth...\x00\x00\x00\x00\x00\x00\x00}} -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} parsed false HttpParser{s=END,63 of 63} -13:18:11.281 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@f3b1939[c=63,q=1,[0]=EOF,s=STREAM] read 63 from Content@49100e03{HeapByteBufferR@22493b97[p=263,l=263,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>\r\n "meth...\x00\x00\x00\x00\x00\x00\x00}} -13:18:11.282 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=4} -13:18:11.283 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:11.297 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@55ea746d[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@5b058719[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@5b058719[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@788766c6{null} -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=20} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1a9debb9] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@5b058719[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1a9debb9] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@6457bf7d[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@5b058719[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:11.298 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:11.299 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]" -13:18:11.299 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Content-Type: application/json[\r][\n]" -13:18:11.299 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]" -13:18:11.299 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:11.299 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:11.299 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "38[\r][\n]" -13:18:11.299 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << HTTP/1.1 200 OK -13:18:11.299 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Content-Type: application/json -13:18:11.299 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Transfer-Encoding: chunked -13:18:11.299 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Server: Jetty(9.4.28.v20200408) -13:18:11.300 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:11.300 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=21/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=22} -13:18:11.300 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "{[\r][\n]" -13:18:11.301 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "count" : 0,[\r][\n]" -13:18:11.301 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "requestJournalDisabled" : false[\r][\n]" -13:18:11.301 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "}" -13:18:11.301 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=COMMITTED}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=23} -13:18:11.301 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:11.301 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:11.301 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1a9debb9] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:11.301 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:11.302 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@788766c6{null} -13:18:11.302 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@788766c6{null} -13:18:11.302 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@53349eff] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:11.302 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@53349eff] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:11.302 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@53349eff] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:11.302 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5e80a9d5{IDLE}->null [HeapByteBuffer@29acffbb[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:11.302 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{WRITING}->null:IDLE-->WRITING -13:18:11.302 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:11.302 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "0[\r][\n]" -13:18:11.302 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:11.302 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 0][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:11.302 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 0 -13:18:11.302 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 0][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:11.304 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@35ed1b9d{STARTED}[9.4.28.v20200408] -13:18:11.304 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@35ed1b9d{STOPPING}[9.4.28.v20200408] -13:18:11.307 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@61fc9209{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:11.308 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@249787e1 on ManagedSelector@61fc9209{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:11.308 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@61fc9209{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:11.309 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken with none selected -13:18:11.309 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 0/0/2 selected -13:18:11.309 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 0 keys, 1 updates -13:18:11.309 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:11.309 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@249787e1 -13:18:11.309 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@61fc9209{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:11.316 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=14/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=COMPLETING}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=38} -13:18:11.316 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=14/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=COMPLETING}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=38} -13:18:11.316 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,CLOSED,fill=-,flush=W,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=COMPLETING}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=38} -13:18:11.317 [qtp824248140-24] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=COMPLETING}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=39} -13:18:11.317 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@5e80a9d5{WRITING}->null -13:18:11.317 [qtp824248140-24] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING-->IDLE -13:18:11.317 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4252d2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@53349eff] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:11.317 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - failed: WriteFlusher@5e80a9d5{WRITING}->null -java.nio.channels.ClosedChannelException: null - at org.eclipse.jetty.io.WriteFlusher.onClose(WriteFlusher.java:528) - at org.eclipse.jetty.io.AbstractEndPoint.onClose(AbstractEndPoint.java:354) - at org.eclipse.jetty.io.ChannelEndPoint.onClose(ChannelEndPoint.java:214) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.onClose(NetworkTrafficSocketChannelEndPoint.java:100) - at org.eclipse.jetty.io.AbstractEndPoint.doOnClose(AbstractEndPoint.java:225) - at org.eclipse.jetty.io.AbstractEndPoint.close(AbstractEndPoint.java:192) - at org.eclipse.jetty.io.AbstractEndPoint.close(AbstractEndPoint.java:175) - at org.eclipse.jetty.io.AbstractConnection.close(AbstractConnection.java:254) - at org.eclipse.jetty.util.IO.close(IO.java:374) - at org.eclipse.jetty.io.ManagedSelector$CloseConnections.update(ManagedSelector.java:877) - at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.processUpdates(ManagedSelector.java:434) - at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.produce(ManagedSelector.java:405) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produceTask(EatWhatYouKill.java:360) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:184) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:11.317 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5e80a9d5{IDLE}->null:WRITING!->FAILED -13:18:11.317 [qtp824248140-24] DEBUG org.eclipse.jetty.io.AbstractEndPoint - shutdownOutput NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=0/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=END}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=39} -13:18:11.317 [qtp824248140-23] DEBUG org.eclipse.jetty.io.WriteFlusher - ignored: WriteFlusher@5e80a9d5{IDLE}->null -java.nio.channels.ClosedChannelException: null - at org.eclipse.jetty.io.WriteFlusher.onClose(WriteFlusher.java:528) - at org.eclipse.jetty.io.AbstractEndPoint.onClose(AbstractEndPoint.java:354) - at org.eclipse.jetty.io.ChannelEndPoint.onClose(ChannelEndPoint.java:214) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.onClose(NetworkTrafficSocketChannelEndPoint.java:100) - at org.eclipse.jetty.io.AbstractEndPoint.doOnClose(AbstractEndPoint.java:225) - at org.eclipse.jetty.io.AbstractEndPoint.close(AbstractEndPoint.java:192) - at org.eclipse.jetty.io.AbstractEndPoint.close(AbstractEndPoint.java:175) - at org.eclipse.jetty.io.AbstractConnection.close(AbstractConnection.java:254) - at org.eclipse.jetty.util.IO.close(IO.java:374) - at org.eclipse.jetty.io.ManagedSelector$CloseConnections.update(ManagedSelector.java:877) - at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.processUpdates(ManagedSelector.java:434) - at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.produce(ManagedSelector.java:405) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produceTask(EatWhatYouKill.java:360) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:184) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:11.318 [qtp824248140-23] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@73330a74{null} -13:18:11.318 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@61fc9209{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:11.318 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@d2ee3d startThread=0 -13:18:11.318 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1548/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.318 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1548/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.318 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=1548/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.319 [qtp824248140-23] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@a0f5303{AC.ReadCB@4b0008a0{HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=1549/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4b0008a0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:11.321 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:11.321 [qtp824248140-23] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:11.322 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1552/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4b0008a0[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:11.322 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@61fc9209{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:11.322 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@23a3239e startThread=1 -13:18:11.322 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp824248140-32,5,main] -13:18:11.322 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:11.322 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e waiting with 2 keys -13:18:11.323 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@62864e96 on ManagedSelector@61fc9209{STOPPING} id=1 keys=0 selected=0 updates=0 -13:18:11.323 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@61fc9209{STOPPING} id=1 keys=0 selected=0 updates=1 -13:18:11.323 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken with none selected -13:18:11.323 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e woken up from select, 0/0/0 selected -13:18:11.323 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@79f2d02e processing 0 keys, 1 updates -13:18:11.323 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:11.323 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@62864e96 -13:18:11.324 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:11.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@36d30a44/SelectorProducer@a77e489/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=0,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:11.3244458+02:00 -13:18:11.324 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@7058916b size 1 > capacity -13:18:11.324 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@238f6469{s=1/1,p=0}@7058916b in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=0,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.324 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@d2ee3d in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.324 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=END}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=46} -13:18:11.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@36d30a44/SelectorProducer@a77e489/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=0,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:11.3244458+02:00 -13:18:11.318 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:11.321 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x816336b0, L:/127.0.0.1:64964 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x816336b0, L:/127.0.0.1:64964 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:11.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@61fc9209{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:11.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@19f48377{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:11.325 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@76a0571e on ManagedSelector@19f48377{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:11.325 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@19f48377{STOPPING} id=0 keys=1 selected=0 updates=1 -13:18:11.325 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=END}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=47} -13:18:11.325 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@d2ee3d in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.325 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken with none selected -13:18:11.325 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@23a3239e in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.325 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken up from select, 0/0/1 selected -13:18:11.325 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 processing 0 keys, 1 updates -13:18:11.325 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:11.325 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@76a0571e -13:18:11.325 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@19f48377{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:11.326 [qtp824248140-23] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1556/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4b0008a0[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.326 [qtp824248140-20] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=662/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.326 [qtp824248140-20] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=662/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.326 [qtp824248140-23] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@4b0008a0::NetworkTrafficSocketChannelEndPoint@e15bde{/127.0.0.1:64964<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1556/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4b0008a0[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@41b585b5{s=START}]=>HttpChannelOverHttp@dc8d72f{s=HttpChannelState@7a04d7ba{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.326 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@23a3239e in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.326 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=662/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.326 [qtp824248140-20] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@2feb1a06{AC.ReadCB@2bcfd4ee{HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=662/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@2bcfd4ee[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:11.326 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:11.326 [qtp824248140-20] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:11.326 [qtp824248140-20] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=663/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:11.327 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@19f48377{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:11.327 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@df229dd startThread=0 -13:18:11.327 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:11.327 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 waiting with 1 keys -13:18:11.327 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9c15a5a1, L:/127.0.0.1:64963 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x9c15a5a1, L:/127.0.0.1:64963 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:11.327 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@6e907ea4 on ManagedSelector@19f48377{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:11.327 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@19f48377{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:11.328 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken with none selected -13:18:11.328 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@42831d1d{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@7239355a in null -13:18:11.328 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 woken up from select, 0/0/0 selected -13:18:11.328 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6fac80d8 processing 0 keys, 1 updates -13:18:11.328 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:11.328 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@6e907ea4 -13:18:11.328 [qtp824248140-24] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@62d767f{/,null,SHUTDOWN} -13:18:11.328 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:11.328 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - sendError HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:11.328 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/PRODUCING/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:11.3284443+02:00 -13:18:11.328 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=1/1,p=0}@1e1e1c94 size 1 > capacity -13:18:11.328 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@238f6469{s=1/1,p=0}@1e1e1c94 in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.328 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@df229dd in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=3,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.328 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@6fa9da72/SelectorProducer@53886ac6/IDLE/p=false/QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:11.3284443+02:00 -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@19f48377{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:11.329 [qtp824248140-20] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=665/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@454ca7aa[HTTP/1.1] -13:18:11.329 [qtp824248140-20] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@2bcfd4ee::NetworkTrafficSocketChannelEndPoint@54884eec{/127.0.0.1:64963<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=665/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@2bcfd4ee[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@3da61055{s=START}]=>HttpChannelOverHttp@610e7a35{s=HttpChannelState@5275071b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@454ca7aa[HTTP/1.1] -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@74ee0887{STARTED} -13:18:11.329 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@df229dd in QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=3,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@74ee0887{STOPPED} -13:18:11.329 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@35ed1b9d{STOPPING}[9.4.28.v20200408] -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@456cfdb7{STARTED} -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@456cfdb7{STOPPING} -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@456cfdb7{STOPPED} -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@3bfe8ca3{STARTED} -13:18:11.329 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@3bfe8ca3{STOPPING} -13:18:11.330 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@42831d1d{STARTED,min=32,inflate=-1} -13:18:11.330 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@42831d1d{STOPPING,min=32,inflate=-1} -13:18:11.330 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@62d767f{/,null,SHUTDOWN} -13:18:11.330 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@62d767f{/,null,UNAVAILABLE} -13:18:11.330 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@523928ab{STARTED} -13:18:11.330 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@523928ab{STOPPING} -13:18:11.330 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@523928ab{STOPPED} -13:18:11.330 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@574cac87{STARTED} -13:18:11.330 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@574cac87{STOPPING} -13:18:11.331 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:11.331 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-14940e3c@14940e3c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:11.331 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-18db2e65@18db2e65==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:11.331 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-18db2e65@18db2e65==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:11.331 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-5b8e1134@5b8e1134==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:11.331 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-5b8e1134@5b8e1134==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:11.332 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - /__admin/requests/count -java.lang.IllegalStateException: COMPLETED - at org.eclipse.jetty.server.HttpChannelState.sendError(HttpChannelState.java:893) - at org.eclipse.jetty.server.Response.sendError(Response.java:462) - at org.eclipse.jetty.server.Response.sendError(Response.java:433) - at org.eclipse.jetty.server.handler.ContextHandler.checkContext(ContextHandler.java:1183) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1223) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:11.333 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=15/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=END}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=55} {} -13:18:11.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=16/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=END}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=56} -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=16/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6d895b6e[p=HttpParser{s=END,63 of 63},g=HttpGenerator@54c679a9{s=END}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=56} -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=56} -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@3e85d0e5) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@131607a{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@131607a{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@131607a{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=5,c=true/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=56} -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:11.334 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@131607a{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:11.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-11017c34@b54a7bdc==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-35d8900b@5415e9de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-35d8900b@5415e9de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@574cac87{STOPPED} -13:18:11.337 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@62d767f{/,null,UNAVAILABLE} -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@62d767f{/,null,UNAVAILABLE} -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@42831d1d{STOPPED,min=32,inflate=-1} -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,SHUTDOWN} -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,UNAVAILABLE} -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@4e968e6a{STARTED} -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@4e968e6a{STOPPING} -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-66fab470@66fab470==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-5caa16bf@54365==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.335 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,63 of 63} -13:18:11.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-b85589b@5d4b18c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-b85589b@5d4b18c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-58247b16@6d001b34==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.338 [qtp824248140-24] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:11.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-58247b16@6d001b34==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@4e968e6a{STOPPED} -13:18:11.338 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,UNAVAILABLE} -13:18:11.338 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:11.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@4bef83b{/__admin,null,UNAVAILABLE} -13:18:11.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@3bfe8ca3{STOPPED} -13:18:11.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp824248140]@3121074c{STARTED,8<=9<=14,i=4,r=1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.339 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp824248140]@3121074c{STOPPING,8<=9<=14,i=4,r=-1,q=0}[ReservedThreadExecutor@238f6469{s=1/1,p=0}] -13:18:11.339 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@238f6469{s=1/1,p=0} -13:18:11.339 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=0/1,p=0}@6aefd6e0 offer STOP! -13:18:11.339 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@238f6469{s=-1/1,p=0} -13:18:11.339 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.339 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@35ed1b9d{STOPPED}[9.4.28.v20200408] -13:18:11.344 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@37e679cd{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:11.344 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@55738316[HTTP/1.1] added {HttpConfiguration@13e556a0{32768/8192,8192/8192,https://:0,[]},POJO} -13:18:11.345 [qtp824248140-24] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6d895b6e::NetworkTrafficSocketChannelEndPoint@5c83d21{/127.0.0.1:64952<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=21/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6d895b6e[p=HttpParser{s=CLOSE,63 of 63},g=HttpGenerator@54c679a9{s=START}]=>HttpChannelOverHttp@4adcbb1c{s=HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@131607a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:11.345 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=-1/1,p=0}@454c973f Exited -13:18:11.345 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@238f6469{s=-1/1,p=0}@454c973f in QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.345 [qtp824248140-24] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp824248140-24,5,main] exited for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.353 [qtp824248140-22] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp824248140-22-acceptor-0@7b71cf78-NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.353 [qtp824248140-22] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp824248140-22,5,main] exited for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.493 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{null, ()}{0.0.0.0:0} added {Server@37e679cd{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:18:11.493 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:11.493 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@289ae342{STOPPED},AUTO} -13:18:11.494 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@6138ae74,POJO} -13:18:11.494 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@55738316[HTTP/1.1],AUTO} -13:18:11.494 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@55738316[HTTP/1.1] -13:18:11.494 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:18:11.494 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@37e679cd{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:18:11.495 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@37e679cd{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,UNAVAILABLE},MANAGED} -13:18:11.495 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@42856eb8 -13:18:11.495 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,UNAVAILABLE} added {ServletHandler@3d7a1559{STOPPED},MANAGED} -13:18:11.499 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@37e679cd{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@7b8a759f{/,null,UNAVAILABLE},MANAGED} -13:18:11.499 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@16372efd -13:18:11.499 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@7b8a759f{/,null,UNAVAILABLE} added {ServletHandler@588c1a7f{STOPPED},MANAGED} -13:18:11.499 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@7b8a759f{/,null,UNAVAILABLE} added {NotFoundHandler@14277aa2{STOPPED},MANAGED} -13:18:11.499 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@5e85fbf5{STOPPED} added {o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,UNAVAILABLE},AUTO} -13:18:11.501 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:18:11.501 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STOPPED,min=32,inflate=-1} mime types IncludeExclude@65e5f078{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:18:11.501 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@74c28093{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@7b8a759f{/,null,UNAVAILABLE},MANAGED} -13:18:11.501 [qtp824248140-32] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.502 [qtp824248140-32] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp824248140-32,5,main] exited for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.502 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@5e85fbf5{STOPPED} added {GzipHandler@74c28093{STOPPED,min=32,inflate=-1},AUTO} -13:18:11.503 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@37e679cd{STOPPED}[9.4.28.v20200408] added {HandlerCollection@5e85fbf5{STOPPED},MANAGED} -13:18:11.503 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@37e679cd{STOPPED}[9.4.28.v20200408] -13:18:11.503 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@37e679cd{STARTING}[9.4.28.v20200408] added {ErrorHandler@57e7119f{STOPPED},AUTO} -13:18:11.503 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:18:11.503 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@37e679cd{STARTING}[9.4.28.v20200408] -13:18:11.503 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:18:11.503 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=0} -13:18:11.503 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp336949043]@14156f33{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] added {ReservedThreadExecutor@264c02c5{s=0/1,p=0},AUTO} -13:18:11.503 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@264c02c5{s=0/1,p=0} -13:18:11.503 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43060ms ReservedThreadExecutor@264c02c5{s=0/1,p=0} -13:18:11.504 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp336949043-33,5,main] -13:18:11.504 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp336949043-34,5,main] -13:18:11.505 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp336949043-35,5,main] -13:18:11.507 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp336949043-36,5,main] -13:18:11.507 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp336949043-37,5,main] -13:18:11.508 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp336949043-38,5,main] -13:18:11.509 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp336949043-39,5,main] -13:18:11.509 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp336949043-40,5,main] -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43066ms QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@5e85fbf5{STOPPED} -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@5e85fbf5{STARTING} -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,UNAVAILABLE} -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,STARTING} -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@3d7a1559{STOPPED} -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-4c343c97[EMBEDDED:null] -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-4c343c97@e97dee1d==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-1995578c[EMBEDDED:null] -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-1995578c@e601db0==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:11.510 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07[EMBEDDED:null] -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07@4730b6c6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-48906236=org.eclipse.jetty.servlets.CrossOriginFilter-48906236@48906236==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-48906236] -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-1995578c=org.eclipse.jetty.servlet.DefaultServlet-1995578c@e601db0==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-4c343c97=org.eclipse.jetty.servlet.DefaultServlet-4c343c97@e97dee1d==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07@4730b6c6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true} -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@3d7a1559{STARTING} -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43067ms ServletHandler@3d7a1559{STARTED} -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-48906236@48906236==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43067ms org.eclipse.jetty.servlets.CrossOriginFilter-48906236@48906236==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@1c3a848d -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07@4730b6c6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43067ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07@4730b6c6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-1995578c@e601db0==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43067ms org.eclipse.jetty.servlet.DefaultServlet-1995578c@e601db0==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-4c343c97@e97dee1d==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43067ms org.eclipse.jetty.servlet.DefaultServlet-4c343c97@e97dee1d==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.511 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,AVAILABLE} -13:18:11.511 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43068ms o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,AVAILABLE} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@74c28093{STOPPED,min=32,inflate=-1} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@74c28093{STARTING,min=32,inflate=-1} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@7b8a759f{/,null,UNAVAILABLE} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@7b8a759f{/,null,STARTING} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@588c1a7f{STOPPED} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-13c6528a[EMBEDDED:null] -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-13c6528a@18b448fa==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0[EMBEDDED:null] -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-2cc0d5bb=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-2cc0d5bb@2cc0d5bb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-db380ab=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-db380ab@db380ab==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06=org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-2cc0d5bb, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-db380ab, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06] -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-13c6528a=org.eclipse.jetty.servlet.DefaultServlet-13c6528a@18b448fa==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@588c1a7f{STARTING} -13:18:11.512 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43069ms ServletHandler@588c1a7f{STARTED} -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@14277aa2{STOPPED} -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@14277aa2{STARTING} -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43069ms NotFoundHandler@14277aa2{STARTED} -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-2cc0d5bb@2cc0d5bb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43069ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-2cc0d5bb@2cc0d5bb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@6347a8a8 -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-db380ab@db380ab==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43069ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-db380ab@db380ab==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@1f6a31a7 -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43069ms org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@2c97f3fa -13:18:11.513 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:11.514 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.514 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43071ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.514 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-13c6528a@18b448fa==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.515 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43071ms org.eclipse.jetty.servlet.DefaultServlet-13c6528a@18b448fa==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:11.515 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:11.515 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43071ms o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:11.515 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43071ms GzipHandler@74c28093{STARTED,min=32,inflate=-1} -13:18:11.515 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43071ms HandlerCollection@5e85fbf5{STARTED} -13:18:11.515 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@57e7119f{STOPPED} -13:18:11.515 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@57e7119f{STARTING} -13:18:11.515 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43072ms ErrorHandler@57e7119f{STARTED} -13:18:11.516 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.516 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:11.516 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@289ae342{STOPPED} -13:18:11.516 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43072ms ScheduledExecutorScheduler@289ae342{STARTED} -13:18:11.516 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@55738316[HTTP/1.1] -13:18:11.516 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43073ms HttpConnectionFactory@55738316[HTTP/1.1] -13:18:11.516 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.517 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5174395+02:00 added {SelectorProducer@3a1df2c1,POJO} -13:18:11.517 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5174395+02:00 added {QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}],UNMANAGED} -13:18:11.518 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5174395+02:00 created -13:18:11.518 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@74341b2c{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5184239+02:00,MANAGED} -13:18:11.518 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@74341b2c{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:11.518 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5184239+02:00 added {SelectorProducer@ba28fc3,POJO} -13:18:11.519 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5194244+02:00 added {QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}],UNMANAGED} -13:18:11.519 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5194244+02:00 created -13:18:11.519 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@5efcef8c{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5194244+02:00,MANAGED} -13:18:11.519 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@5efcef8c{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:11.519 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@74341b2c{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:11.520 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5204245+02:00 -13:18:11.520 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43076ms EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.5204245+02:00 -13:18:11.521 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@a457204 startThread=0 -13:18:11.521 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@14879989 on ManagedSelector@74341b2c{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:11.634 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=-1/1,p=0}@6aefd6e0 task=STOP! -13:18:11.634 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@238f6469{s=-1/1,p=0}@6aefd6e0 Exited -13:18:11.634 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@238f6469{s=-1/1,p=0}@6aefd6e0 in QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.635 [qtp824248140-25] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp824248140-25,5,main] exited for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.636 [qtp824248140-19] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp824248140-19-acceptor-1@144fa239-NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.636 [qtp824248140-19] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp824248140-19,5,main] exited for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.676 [qtp824248140-18] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp824248140-18-acceptor-2@5168195d-NetworkTrafficServerConnector@6a7c003b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.676 [qtp824248140-18] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp824248140-18,5,main] exited for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:11.677 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.677 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@a457204 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.678 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.6783969+02:00 tryProduce false -13:18:11.678 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:11.678 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@14879989 -13:18:11.679 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43235ms ManagedSelector@74341b2c{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:11.679 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@5efcef8c{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:11.679 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.6794079+02:00 -13:18:11.680 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:11.680 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 0 keys -13:18:11.681 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43236ms EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.6804009+02:00 -13:18:11.684 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@bc4c04d startThread=0 -13:18:11.684 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@32fdce36 on ManagedSelector@5efcef8c{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:11.742 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.743 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@bc4c04d in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.744 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:11.7433963+02:00 tryProduce false -13:18:11.744 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:11.745 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@32fdce36 -13:18:11.745 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:11.745 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 0 keys -13:18:11.745 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43301ms ManagedSelector@5efcef8c{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:11.745 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43301ms SelectorManager@NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.745 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@13095f3f,POJO} -13:18:11.745 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@13095f3f startThread=0 -13:18:11.745 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@3bead706,POJO} -13:18:11.745 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@3bead706 startThread=0 -13:18:11.745 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@1601be9e,POJO} -13:18:11.745 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@1601be9e startThread=0 -13:18:11.745 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.746 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43302ms NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:11.746 [Test worker] INFO org.eclipse.jetty.server.Server - Started @43302ms -13:18:11.746 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @43302ms Server@37e679cd{STARTED}[9.4.28.v20200408] -13:18:11.751 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:11.752 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 0][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:11.752 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 30000 -13:18:11.752 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:11.752 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "end of stream" -13:18:11.752 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection detected -13:18:11.752 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: Close connection -13:18:11.752 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:11.753 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:11.754 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:64969<->127.0.0.1:8080 -13:18:11.754 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:11.754 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:11.754 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:11.754 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> POST /__admin/mappings HTTP/1.1 -13:18:11.754 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Length: 290 -13:18:11.754 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Content-Type: text/plain; charset=UTF-8 -13:18:11.754 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Host: localhost:8080 -13:18:11.754 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> Connection: Keep-Alive -13:18:11.754 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Length: 290[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Host: localhost:8080[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "{[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "id" : "2f9bf285-9512-41ed-90c0-5d064ab79188",[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "request" : {[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:11.754 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "method" : "GET"[\r][\n]" -13:18:11.755 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " },[\r][\n]" -13:18:11.755 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "response" : {[\r][\n]" -13:18:11.755 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "status" : 200,[\r][\n]" -13:18:11.755 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "fixedDelayMilliseconds" : 2100[\r][\n]" -13:18:11.755 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " },[\r][\n]" -13:18:11.755 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> " "uuid" : "2f9bf285-9512-41ed-90c0-5d064ab79188"[\r][\n]" -13:18:11.755 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 >> "}" -13:18:11.819 [qtp336949043-35] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.819 [qtp336949043-35] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@13095f3f in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.839 [qtp336949043-36] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.840 [qtp336949043-36] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@3bead706 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.883 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@697c1280 on ManagedSelector@5efcef8c{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:11.883 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5efcef8c{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:11.883 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:11.883 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/0 selected -13:18:11.883 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 1 updates -13:18:11.883 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:11.883 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@697c1280 -13:18:11.883 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@697c1280 startThread=0 -13:18:11.883 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:11.883 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 1 keys -13:18:11.922 [qtp336949043-37] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:11.924 [qtp336949043-37] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@1601be9e in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:12.167 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:12.168 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@697c1280 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}] -13:18:12.169 [qtp336949043-38] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:12.171 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:12.172 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}-> -13:18:12.172 [qtp336949043-38] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.173 [qtp336949043-38] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.173 [qtp336949043-38] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.173 [qtp336949043-38] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@7de8fbe9{AC.ReadCB@5ca2382{HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:12.174 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.174 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@625c445b on ManagedSelector@5efcef8c{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:12.174 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5efcef8c{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:12.175 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:12.175 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/1 selected -13:18:12.175 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 1 updates -13:18:12.175 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:12.175 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@625c445b -13:18:12.175 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=0}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.175 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:12.176 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 1 keys -13:18:12.176 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 1/1/1 selected -13:18:12.176 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 1 keys, 0 updates -13:18:12.176 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64969], selector=sun.nio.ch.WindowsSelectorImpl@24f6d469, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.176 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.176 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:12.177 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.177 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=0} tryExecute EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:12.1763335+02:00 -13:18:12.177 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@697c1280 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}] -13:18:12.177 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=1} startReservedThread p=1 -13:18:12.177 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@264c02c5{s=0/1,p=1}@2e0ebf19 startThread=0 -13:18:12.177 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@264c02c5{s=0/1,p=1}@2e0ebf19 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}] -13:18:12.177 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:12.1773262+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:12.178 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:12.178 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:12.178 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:12.177 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=1}@2e0ebf19 started -13:18:12.178 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.178 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 1 keys -13:18:12.178 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0}@2e0ebf19 waiting -13:18:12.276 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:12.277 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=103/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:12.278 [qtp336949043-39] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@7de8fbe9{AC.ReadCB@5ca2382{HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=104/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:12.278 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=105/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:12.279 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 485 HeapByteBuffer@1de9b522[p=0,l=485,c=8192,r=485]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.284 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 485 HeapByteBuffer@1de9b522[p=0,l=485,c=8192,r=485]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.285 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@1de9b522[p=0,l=485,c=8192,r=485]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:12.286 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@1de9b522[p=0,l=485,c=8192,r=485]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.286 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:12.287 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:12.288 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:12.288 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:12.288 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:12.289 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:12.289 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:12.289 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:12.290 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:12.291 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:12.291 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:12.291 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:12.291 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:12.291 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:12.292 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:12.292 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:12.292 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:12.292 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:12.292 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:12.292 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 290 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:12.295 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=CONTENT,0 of 290},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=2} parsed true HttpParser{s=CONTENT,0 of 290} -13:18:12.295 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=3} -13:18:12.295 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:12.295 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:12.295 [qtp336949043-39] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:12.296 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,AVAILABLE} -13:18:12.296 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,AVAILABLE} -13:18:12.296 [qtp336949043-39] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07@4730b6c6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:12.296 [qtp336949043-39] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-48906236@48906236==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07@4730b6c6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:12.297 [qtp336949043-39] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@132e48ef for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07 -13:18:12.511 [qtp336949043-39] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:12.511 [qtp336949043-39] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-48906236@48906236==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:12.511 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:12.511 [qtp336949043-39] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07@4730b6c6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:12.512 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=232/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=CONTENT,0 of 290},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=220} parse HeapByteBuffer@1de9b522[p=195,l=485,c=8192,r=290]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "2f9bf285-951...d-90c0-5d064ab79188"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:12.512 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@1de9b522[p=195,l=485,c=8192,r=290]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "2f9bf285-951...d-90c0-5d064ab79188"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.513 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=220} Content@1711de52{HeapByteBufferR@521342d4[p=195,l=485,c=8192,r=290]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "2f9bf285-951...d-90c0-5d064ab79188"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:12.513 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@203bd11[c=0,q=0,[0]=null,s=STREAM] addContent Content@1711de52{HeapByteBufferR@521342d4[p=195,l=485,c=8192,r=290]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "2f9bf285-951...d-90c0-5d064ab79188"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:12.513 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:12.513 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=221} -13:18:12.513 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:12.513 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=221} -13:18:12.513 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@203bd11[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:12.513 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=234/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=END,290 of 290},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=221} parsed false HttpParser{s=END,290 of 290} -13:18:12.514 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@203bd11[c=290,q=1,[0]=EOF,s=STREAM] read 290 from Content@1711de52{HeapByteBufferR@521342d4[p=485,l=485,c=8192,r=0]={POST /__a...188"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:12.514 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=234/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=END,290 of 290},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=222} -13:18:12.514 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:12.577 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@638bf48e[p=0,l=290,c=8192,r=290]={<<<{\r\n "id" : "2f9bf285-951...d-90c0-5d064ab79188"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:12.578 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@7a7155e3[p=0,l=290,c=32768,r=290]={<<<{\r\n "id" : "2f9bf285-951...d-90c0-5d064ab79188"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.579 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@7a7155e3[p=0,l=290,c=32768,r=290]={<<<{\r\n "id" : "2f9bf285-951...d-90c0-5d064ab79188"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@323cbd9b{null} -13:18:12.579 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=287} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:12.586 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@2d4865f8[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@115bdb5b] (null,[p=0,l=290,c=32768,r=290],false)@START -13:18:12.586 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@7a7155e3[p=0,l=290,c=32768,r=290]={<<<{\r\n "id" : "2f9bf285-951...d-90c0-5d064ab79188"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.587 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:12.587 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:12.588 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2d4865f8[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@115bdb5b] ([p=0,l=122,c=8192,r=122],[p=0,l=290,c=32768,r=290],false)@COMMITTED -13:18:12.588 [qtp336949043-39] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@61755ade{IDLE}->null [HeapByteBuffer@1de9b522[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@7a7155e3[p=0,l=290,c=32768,r=290]={<<<{\r\n "id" : "2f9bf285-951...d-90c0-5d064ab79188"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:12.589 [qtp336949043-39] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@61755ade{WRITING}->null:IDLE-->WRITING -13:18:12.590 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "HTTP/1.1 201 Created[\r][\n]" -13:18:12.590 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Content-Type: application/json[\r][\n]" -13:18:12.590 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]" -13:18:12.590 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:12.590 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:12.590 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "122[\r][\n]" -13:18:12.590 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << HTTP/1.1 201 Created -13:18:12.590 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Content-Type: application/json -13:18:12.590 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Transfer-Encoding: chunked -13:18:12.590 [Test worker] DEBUG org.apache.http.headers - http-outgoing-0 << Server: Jetty(9.4.28.v20200408) -13:18:12.590 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:12.593 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=313/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=END,290 of 290},g=HttpGenerator@33bb3ddd{s=COMMITTED}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=300} -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "{[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "id" : "2f9bf285-9512-41ed-90c0-5d064ab79188",[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "request" : {[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "method" : "GET"[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " },[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "response" : {[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "status" : 200,[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "fixedDelayMilliseconds" : 2100[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " },[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << " "uuid" : "2f9bf285-9512-41ed-90c0-5d064ab79188"[\r][\n]" -13:18:12.593 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "}" -13:18:12.594 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 290 NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=END,290 of 290},g=HttpGenerator@33bb3ddd{s=COMMITTED}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=302} -13:18:12.595 [qtp336949043-39] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=412 remaining=0 WriteFlusher@61755ade{WRITING}->null -13:18:12.595 [qtp336949043-39] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@61755ade{IDLE}->null:WRITING-->IDLE -13:18:12.596 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2d4865f8[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@115bdb5b] ([p=122,l=122,c=8192,r=0],[p=290,l=290,c=32768,r=0],false)@COMMITTED -13:18:12.597 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:12.600 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@323cbd9b{null} -13:18:12.601 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@323cbd9b{null} -13:18:12.601 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@2d4865f8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3672e30e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:12.602 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@2d4865f8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3672e30e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:12.603 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2d4865f8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3672e30e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:12.603 [qtp336949043-39] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@61755ade{IDLE}->null [HeapByteBuffer@58fb379d[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:12.604 [qtp336949043-39] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@61755ade{WRITING}->null:IDLE-->WRITING -13:18:12.605 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:12.605 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "0[\r][\n]" -13:18:12.605 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -13:18:12.605 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 0][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:12.605 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 0 -13:18:12.605 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 0][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:12.607 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [76659ac2] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=END,290 of 290},g=HttpGenerator@33bb3ddd{s=COMPLETING}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=316} -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@61755ade{WRITING}->null -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@61755ade{IDLE}->null:WRITING-->IDLE -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2d4865f8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3672e30e] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@1735beda in null -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=317} -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@273bb14{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:12.609 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@273bb14{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=318} -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@5c5db548) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@273bb14{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@273bb14{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@273bb14{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=318} -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=290 -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@273bb14{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,290 of 290} -13:18:12.610 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:12.614 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.619 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc8d78ff3] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:12.620 [reactor-http-nio-2] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xc8d78ff3] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:12.620 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.621 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.622 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.622 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:12.622 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.623 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:12.624 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:12.624 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:12.624 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:12.625 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:12.625 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:12.625 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:12.625 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:12.626 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=17/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:12.628 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=18/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.628 [qtp336949043-39] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=18/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.630 [qtp336949043-39] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@7de8fbe9{AC.ReadCB@5ca2382{HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:12.633 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.633 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@625c445b on ManagedSelector@5efcef8c{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:12.633 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5efcef8c{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:12.634 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:12.634 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/1 selected -13:18:12.634 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 1 updates -13:18:12.634 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:12.634 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@625c445b -13:18:12.634 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.634 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:12.634 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 1 keys -13:18:12.634 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:12.635 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:12.624 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@67bbf1df on ManagedSelector@74341b2c{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:12.636 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@74341b2c{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:12.636 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken with none selected -13:18:12.636 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 0/0/0 selected -13:18:12.636 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 0 keys, 1 updates -13:18:12.636 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:12.636 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@67bbf1df -13:18:12.636 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@67bbf1df startThread=0 -13:18:12.636 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:12.636 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 1 keys -13:18:12.639 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@67bbf1df in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:12.639 [qtp336949043-40] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:12.639 [qtp336949043-40] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:12.639 [qtp336949043-40] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:12.639 [qtp336949043-40] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.640 [qtp336949043-40] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.640 [qtp336949043-40] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.640 [qtp336949043-40] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@108af1d8{AC.ReadCB@21e1566a{HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:12.640 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.640 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@6ab7e01f on ManagedSelector@74341b2c{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:12.641 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@74341b2c{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:12.641 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken with none selected -13:18:12.641 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 0/0/1 selected -13:18:12.641 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 0 keys, 1 updates -13:18:12.641 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:12.641 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@6ab7e01f -13:18:12.641 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.642 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:12.642 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 1 keys -13:18:12.642 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.642 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@67bbf1df in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:12.644 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:12.645 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 1/1/1 selected -13:18:12.645 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 1 keys, 0 updates -13:18:12.645 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64971], selector=sun.nio.ch.WindowsSelectorImpl@69c35d72, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/1,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.645 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:12.645 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:12.646 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0} tryExecute EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:12.6454854+02:00 -13:18:12.646 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=0}@2e0ebf19 offer EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:12.6464886+02:00 -13:18:12.646 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=1} startReservedThread p=1 -13:18:12.646 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@264c02c5{s=0/1,p=1}@633b3602 startThread=0 -13:18:12.646 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:12.6464886+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:12.646 [qtp336949043-33] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@108af1d8{AC.ReadCB@21e1566a{HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>he-HttpCl...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>he-HttpCl...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>he-HttpCl...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>he-HttpCl...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:12.647 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:12.648 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,AVAILABLE} -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@2639a401 in null -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:12.649 [qtp336949043-33] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@55625579 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0 -13:18:12.651 [qtp336949043-33] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:12.651 [qtp336949043-33] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:12.651 [qtp336949043-33] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.652 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@264c02c5{s=0/1,p=1}@633b3602 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}] -13:18:12.652 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=1}@633b3602 started -13:18:12.652 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0}@633b3602 waiting -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} parse HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:12.652 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@17d54491[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:12.653 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=5} parsed false HttpParser{s=END,0 of -1} -13:18:12.653 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=5} -13:18:12.653 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:12.659 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0}@2e0ebf19 task=EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:12.6594858+02:00 -13:18:12.659 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:12.6594858+02:00 tryProduce true -13:18:12.659 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:12.659 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:12.660 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=11} -13:18:12.660 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 1 keys -13:18:14.635 [reactor-http-nio-2] WARN reactor.netty.http.client.HttpClientConnect - [id: 0xc8d78ff3, L:/127.0.0.1:64971 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:18:14.639 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [76659ac2] Cancel signal (to close connection) -13:18:14.641 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc8d78ff3, L:/127.0.0.1:64971 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:14.641 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc8d78ff3, L:/127.0.0.1:64971 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0xc8d78ff3, L:/127.0.0.1:64971 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:14.642 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc8d78ff3, L:/127.0.0.1:64971 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0xc8d78ff3, L:/127.0.0.1:64971 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:14.642 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc8d78ff3, L:/127.0.0.1:64971 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc8d78ff3, L:/127.0.0.1:64971 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:14.758 [qtp336949043-33] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@2639a401 -13:18:14.758 [qtp336949043-33] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@2d64eb4f exclude no deflater -13:18:14.758 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@46165b4e{null} -13:18:14.758 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2110} -200 null HTTP/1.1 -Matched-Stub-Id: 2f9bf285-9512-41ed-90c0-5d064ab79188 -Vary: Accept-Encoding, User-Agent - - -13:18:14.758 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@1180768[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3c542a16] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:14.759 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:14.759 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 2f9bf285-9512-41ed-90c0-5d064ab79188 -Vary: Accept-Encoding, User-Agent - - -13:18:14.759 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:14.759 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1180768[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3c542a16] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:14.759 [qtp336949043-33] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@36608040{IDLE}->null [HeapByteBuffer@1de9b522[p=0,l=170,c=8192,r=170]={<<>>/4.5.12 (...\x00\x00\x00\x00\x00\x00\x00}] -13:18:14.759 [qtp336949043-33] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@36608040{WRITING}->null:IDLE-->WRITING -13:18:14.759 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2112/30000}{io=0/0,kio=0,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1236191b{s=COMMITTED}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2111} -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@36608040{WRITING}->null -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@36608040{IDLE}->null:WRITING-->IDLE -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1180768[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3c542a16] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@46165b4e{null} -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@46165b4e{null} -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@1180768[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@425861e9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@1180768[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@425861e9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1180768[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@425861e9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@36608040{IDLE}->null [HeapByteBuffer@58fb379d[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:14.760 [qtp336949043-33] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@36608040{WRITING}->null:IDLE-->WRITING -13:18:14.762 [qtp336949043-33] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:14.763 [qtp336949043-33] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@36608040{FAILED}->null:WRITING-->FAILED -13:18:14.767 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:14.770 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=10/30000}{io=0/0,kio=0,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1236191b{s=COMPLETING}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2122} {} -13:18:14.771 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=11/30000}{io=0/0,kio=0,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1236191b{s=COMPLETING}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2123} -13:18:14.771 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=11/30000}{io=0/0,kio=0,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1236191b{s=COMPLETING}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2123} -13:18:14.771 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=11/30000}{io=0/0,kio=0,kro=1}->HttpConnection@21e1566a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1236191b{s=COMPLETING}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2123} -13:18:14.771 [qtp336949043-33] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@108af1d8{null} -13:18:14.771 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@74341b2c{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:14.771 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@26e2024c startThread=0 -13:18:14.771 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken with none selected -13:18:14.771 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 0/0/0 selected -13:18:14.771 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:14.771 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 0 keys, 0 updates -13:18:14.772 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:14.772 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:14.772 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 0 keys -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2124} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@64e3d492{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@64e3d492{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2124} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@3dc9059f) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@64e3d492{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@64e3d492{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@64e3d492{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2124} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@64e3d492{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,0 of -1} -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:14.772 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.773 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=12/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@21e1566a[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:14.773 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@a457204 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:14.773 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@26e2024c in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:14.773 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=13/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@21e1566a[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.773 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@21e1566a::NetworkTrafficSocketChannelEndPoint@6e1bbfe2{/127.0.0.1:64971<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=13/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@21e1566a[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@1236191b{s=START}]=>HttpChannelOverHttp@60dc5c51{s=HttpChannelState@64e3d492{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.773 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@26e2024c in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:14.920 [parallel-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [76659ac2] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:14.925 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb5b9c51c] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:14.925 [reactor-http-nio-3] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xb5b9c51c] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:14.927 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@638479f0 on ManagedSelector@5efcef8c{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:14.927 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:14.927 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5efcef8c{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:14.928 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:14.928 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:14.928 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:14.928 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/1 selected -13:18:14.928 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 1 updates -13:18:14.928 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:14.928 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:14.928 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@638479f0 -13:18:14.928 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@638479f0 startThread=0 -13:18:14.928 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:14.928 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 2 keys -13:18:14.928 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:14.928 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:14.928 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:14.929 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:14.934 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@638479f0 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:14.934 [qtp336949043-33] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:14.934 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:14.934 [qtp336949043-33] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:14.938 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.938 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=0}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.938 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=0}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.938 [qtp336949043-33] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2acb7559{AC.ReadCB@403e0ca5{HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:14.938 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.938 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@6f33cf60 on ManagedSelector@5efcef8c{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:14.938 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5efcef8c{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:14.941 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:14.941 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/2 selected -13:18:14.941 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 1 updates -13:18:14.941 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:14.941 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@6f33cf60 -13:18:14.941 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/1,kio=1,kro=0}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.941 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:14.941 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 2 keys -13:18:14.941 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/1,kio=1,kro=0}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.942 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@638479f0 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:14.951 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 1/1/2 selected -13:18:14.951 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 1 keys, 0 updates -13:18:14.951 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:14.952 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64972], selector=sun.nio.ch.WindowsSelectorImpl@24f6d469, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/1,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.952 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:14.952 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:14.952 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0} tryExecute EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:14.952215+02:00 -13:18:14.953 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=0}@633b3602 offer EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:14.9531631+02:00 -13:18:14.953 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=1} startReservedThread p=1 -13:18:14.953 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@264c02c5{s=0/1,p=1}@794bf028 startThread=0 -13:18:14.954 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:14.9531631+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=15/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:14.954 [qtp336949043-34] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@2acb7559{AC.ReadCB@403e0ca5{HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=15/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:14.954 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=16/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:14.955 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:14.956 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:14.956 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:14.956 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:14.956 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:14.956 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:14.956 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:14.956 [qtp336949043-34] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:14.956 [qtp336949043-34] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,AVAILABLE} -13:18:14.957 [qtp336949043-34] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@5a2d3c80 in null -13:18:14.957 [qtp336949043-34] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:14.957 [qtp336949043-34] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:14.957 [qtp336949043-34] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:14.957 [qtp336949043-34] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:14.957 [qtp336949043-34] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:14.957 [qtp336949043-34] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parse HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@180a6ab[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:14.958 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:14.959 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:14.959 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:14.977 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=1}@633b3602 task=EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:14.9761581+02:00 -13:18:14.977 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:14.9771565+02:00 tryProduce true -13:18:14.978 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:14.978 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:14.978 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=23/30000}{io=0/0,kio=0,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=23} -13:18:14.978 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 2 keys -13:18:14.982 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@264c02c5{s=0/1,p=1}@794bf028 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}] -13:18:14.982 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=1}@794bf028 started -13:18:14.982 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0}@794bf028 waiting -13:18:16.929 [reactor-http-nio-3] WARN reactor.netty.http.client.HttpClientConnect - [id: 0xb5b9c51c, L:/127.0.0.1:64972 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:18:16.930 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [76659ac2] Cancel signal (to close connection) -13:18:16.931 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb5b9c51c, L:/127.0.0.1:64972 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:16.931 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0xb5b9c51c, L:/127.0.0.1:64972 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0xb5b9c51c, L:/127.0.0.1:64972 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:16.931 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0xb5b9c51c, L:/127.0.0.1:64972 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0xb5b9c51c, L:/127.0.0.1:64972 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:16.932 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb5b9c51c, L:/127.0.0.1:64972 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xb5b9c51c, L:/127.0.0.1:64972 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:17.065 [qtp336949043-34] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@5a2d3c80 -13:18:17.065 [qtp336949043-34] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@b23cbf3 exclude no deflater -13:18:17.065 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@2dcfa00f{null} -13:18:17.065 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2110} -200 null HTTP/1.1 -Matched-Stub-Id: 2f9bf285-9512-41ed-90c0-5d064ab79188 -Vary: Accept-Encoding, User-Agent - - -13:18:17.065 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@1eb5400a[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1a840889] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:17.065 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:17.065 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 2f9bf285-9512-41ed-90c0-5d064ab79188 -Vary: Accept-Encoding, User-Agent - - -13:18:17.065 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:17.065 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1eb5400a[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1a840889] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:17.066 [qtp336949043-34] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@f6d3479{IDLE}->null [HeapByteBuffer@1de9b522[p=0,l=170,c=8192,r=170]={<<>>/4.5.12 (...\x00\x00\x00\x00\x00\x00\x00}] -13:18:17.066 [qtp336949043-34] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@f6d3479{WRITING}->null:IDLE-->WRITING -13:18:17.066 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2112/30000}{io=0/0,kio=0,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6de5195c{s=COMMITTED}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2111} -13:18:17.066 [qtp336949043-34] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@f6d3479{WRITING}->null -13:18:17.066 [qtp336949043-34] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@f6d3479{IDLE}->null:WRITING-->IDLE -13:18:17.066 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1eb5400a[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1a840889] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:17.067 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:17.067 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@2dcfa00f{null} -13:18:17.067 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@2dcfa00f{null} -13:18:17.067 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@1eb5400a[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5f722243] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:17.067 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@1eb5400a[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5f722243] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:17.067 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1eb5400a[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5f722243] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:17.067 [qtp336949043-34] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@f6d3479{IDLE}->null [HeapByteBuffer@58fb379d[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:17.067 [qtp336949043-34] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@f6d3479{WRITING}->null:IDLE-->WRITING -13:18:17.071 [qtp336949043-34] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:17.072 [qtp336949043-34] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@f6d3479{FAILED}->null:WRITING-->FAILED -13:18:17.072 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:17.074 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6de5195c{s=COMPLETING}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2118} {} -13:18:17.074 [qtp336949043-34] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6de5195c{s=COMPLETING}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2119} -13:18:17.074 [qtp336949043-34] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6de5195c{s=COMPLETING}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2119} -13:18:17.074 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@403e0ca5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6de5195c{s=COMPLETING}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2119} -13:18:17.074 [qtp336949043-34] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@2acb7559{null} -13:18:17.074 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@5efcef8c{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:17.074 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:17.075 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/1 selected -13:18:17.075 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 0 updates -13:18:17.075 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:17.075 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:17.075 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 1 keys -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@6b739cb7 startThread=0 -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2120} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@352e1262{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@352e1262{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2120} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@51091110) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@352e1262{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@352e1262{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@352e1262{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2120} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@352e1262{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,0 of -1} -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:17.075 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.076 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=9/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@403e0ca5[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:17.077 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@bc4c04d in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:17.077 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@6b739cb7 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:17.078 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=11/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@403e0ca5[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.078 [qtp336949043-34] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@403e0ca5::NetworkTrafficSocketChannelEndPoint@5b6ed305{/127.0.0.1:64972<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=11/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@403e0ca5[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6de5195c{s=START}]=>HttpChannelOverHttp@3689021{s=HttpChannelState@352e1262{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.078 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@6b739cb7 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:17.428 [parallel-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [76659ac2] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:17.431 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x320d7f3f] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:17.432 [reactor-http-nio-4] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x320d7f3f] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:17.438 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@2686fbe4 on ManagedSelector@74341b2c{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:17.438 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@74341b2c{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:17.438 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:17.438 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:17.438 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:17.439 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:17.439 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken with none selected -13:18:17.439 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:17.439 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 0/0/0 selected -13:18:17.439 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 0 keys, 1 updates -13:18:17.439 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:17.439 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@2686fbe4 -13:18:17.439 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@2686fbe4 startThread=0 -13:18:17.439 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:17.439 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:17.439 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:17.440 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 1 keys -13:18:17.440 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:17.455 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@2686fbe4 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:17.455 [qtp336949043-34] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:17.455 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:17.455 [qtp336949043-34] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:17.456 [qtp336949043-34] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.456 [qtp336949043-34] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.456 [qtp336949043-34] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.456 [qtp336949043-34] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2b80b0b4{AC.ReadCB@17f6c9c7{HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:17.456 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.456 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@53d28f5f on ManagedSelector@74341b2c{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:17.456 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@74341b2c{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:17.459 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken with none selected -13:18:17.459 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 0/0/1 selected -13:18:17.459 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 0 keys, 1 updates -13:18:17.459 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:17.459 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@53d28f5f -13:18:17.459 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/1,kio=1,kro=0}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.459 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:17.459 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 1 keys -13:18:17.459 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/1,kio=1,kro=0}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.460 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@2686fbe4 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:17.460 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 1/1/1 selected -13:18:17.460 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 1 keys, 0 updates -13:18:17.460 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64973], selector=sun.nio.ch.WindowsSelectorImpl@69c35d72, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.460 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:17.460 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:17.460 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:17.461 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0} tryExecute EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:17.4618392+02:00 -13:18:17.461 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=0}@794bf028 offer EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:17.4618392+02:00 -13:18:17.461 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=1} startReservedThread p=1 -13:18:17.461 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@264c02c5{s=0/1,p=1}@5ce13b62 startThread=0 -13:18:17.462 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:17.462811+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:17.462 [qtp336949043-38] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@2b80b0b4{AC.ReadCB@17f6c9c7{HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:17.462 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:17.462 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:17.463 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,AVAILABLE} -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@66ecb4a4 in null -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:17.464 [qtp336949043-38] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:17.465 [qtp336949043-38] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:17.465 [qtp336949043-38] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:17.465 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:17.465 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parse HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@66125abe[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:17.466 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:17.492 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=1}@794bf028 task=EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:17.4928154+02:00 -13:18:17.492 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:17.4928154+02:00 tryProduce true -13:18:17.492 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:17.492 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:17.492 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=29/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=29} -13:18:17.492 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 1 keys -13:18:17.493 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@264c02c5{s=0/1,p=1}@5ce13b62 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}] -13:18:17.493 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=1}@5ce13b62 started -13:18:17.493 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0}@5ce13b62 waiting -13:18:19.441 [reactor-http-nio-4] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x320d7f3f, L:/127.0.0.1:64973 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:18:19.442 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [76659ac2] Cancel signal (to close connection) -13:18:19.443 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x320d7f3f, L:/127.0.0.1:64973 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:19.444 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x320d7f3f, L:/127.0.0.1:64973 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x320d7f3f, L:/127.0.0.1:64973 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:19.444 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x320d7f3f, L:/127.0.0.1:64973 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x320d7f3f, L:/127.0.0.1:64973 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:19.444 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x320d7f3f, L:/127.0.0.1:64973 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x320d7f3f, L:/127.0.0.1:64973 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:19.575 [qtp336949043-38] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@66ecb4a4 -13:18:19.575 [qtp336949043-38] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@2562d078 exclude no deflater -13:18:19.575 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@700dd59d{null} -13:18:19.575 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2112} -200 null HTTP/1.1 -Matched-Stub-Id: 2f9bf285-9512-41ed-90c0-5d064ab79188 -Vary: Accept-Encoding, User-Agent - - -13:18:19.575 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@734716ac[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7f465d0] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:19.575 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:19.575 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 2f9bf285-9512-41ed-90c0-5d064ab79188 -Vary: Accept-Encoding, User-Agent - - -13:18:19.575 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:19.576 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@734716ac[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7f465d0] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:19.576 [qtp336949043-38] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@34a68446{IDLE}->null [HeapByteBuffer@1de9b522[p=0,l=170,c=8192,r=170]={<<>>/4.5.12 (...\x00\x00\x00\x00\x00\x00\x00}] -13:18:19.576 [qtp336949043-38] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@34a68446{WRITING}->null:IDLE-->WRITING -13:18:19.576 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2113/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@29242e14{s=COMMITTED}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2113} -13:18:19.576 [qtp336949043-38] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@34a68446{WRITING}->null -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@34a68446{IDLE}->null:WRITING-->IDLE -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@734716ac[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7f465d0] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@700dd59d{null} -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@700dd59d{null} -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@734716ac[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2a991e72] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@734716ac[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2a991e72] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@734716ac[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2a991e72] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@34a68446{IDLE}->null [HeapByteBuffer@58fb379d[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:19.577 [qtp336949043-38] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@34a68446{WRITING}->null:IDLE-->WRITING -13:18:19.578 [qtp336949043-38] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 53 common frames omitted -13:18:19.579 [qtp336949043-38] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@34a68446{FAILED}->null:WRITING-->FAILED -13:18:19.580 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 53 common frames omitted -13:18:19.581 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@29242e14{s=COMPLETING}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2118} {} -13:18:19.581 [qtp336949043-38] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@29242e14{s=COMPLETING}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2118} -13:18:19.581 [qtp336949043-38] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@29242e14{s=COMPLETING}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2118} -13:18:19.581 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17f6c9c7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@29242e14{s=COMPLETING}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2118} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@2b80b0b4{null} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@74341b2c{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@61a08ffb startThread=0 -13:18:19.582 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken with none selected -13:18:19.582 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 0/0/0 selected -13:18:19.582 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 0 keys, 0 updates -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:19.582 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:19.582 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:19.582 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 0 keys -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2119} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@eeed89b{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@eeed89b{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2119} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@455ebcfa) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:19.582 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@61a08ffb in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@eeed89b{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@eeed89b{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@eeed89b{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2119} -13:18:19.582 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:19.583 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@eeed89b{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:19.583 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,0 of -1} -13:18:19.583 [qtp336949043-38] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:19.583 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:19.583 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=6/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@17f6c9c7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:19.583 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0}@2e0ebf19 size 1 > capacity -13:18:19.583 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@264c02c5{s=1/1,p=0}@2e0ebf19 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:19.584 [qtp336949043-34] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=6/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@17f6c9c7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@29242e14{s=COMPLETING}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=true/false,a=IDLE,uri=,age=2120} -13:18:19.584 [qtp336949043-34] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@17f6c9c7::NetworkTrafficSocketChannelEndPoint@37a139b4{/127.0.0.1:64973<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@17f6c9c7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@29242e14{s=START}]=>HttpChannelOverHttp@798f7539{s=HttpChannelState@eeed89b{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:19.584 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@61a08ffb in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:20.592 [parallel-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [76659ac2] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:20.594 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x3aac70a7] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:20.595 [reactor-http-nio-1] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x3aac70a7] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:20.596 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@2f6705a6 on ManagedSelector@5efcef8c{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:20.596 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:20.596 [qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5efcef8c{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:20.596 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:20.596 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:20.596 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:20.597 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:20.597 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:20.597 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/1 selected -13:18:20.597 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 1 updates -13:18:20.597 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:20.597 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@2f6705a6 -13:18:20.597 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:20.597 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@2f6705a6 startThread=0 -13:18:20.597 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:20.597 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 2 keys -13:18:20.597 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:20.597 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:20.599 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:20.599 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@2f6705a6 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:20.600 [qtp336949043-38] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:20.600 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:20.601 [qtp336949043-38] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}-> -13:18:20.601 [qtp336949043-38] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:20.601 [qtp336949043-38] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:20.601 [qtp336949043-38] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:20.602 [qtp336949043-38] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@572e95d7{AC.ReadCB@72613969{HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:20.602 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:20.602 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5266b6f4 on ManagedSelector@5efcef8c{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:20.602 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5efcef8c{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:20.602 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:20.602 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:20.602 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/2 selected -13:18:20.602 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 1 updates -13:18:20.602 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:20.602 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@2f6705a6 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:20.602 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5266b6f4 -13:18:20.602 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:20.602 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:20.602 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 2 keys -13:18:20.602 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 1/1/2 selected -13:18:20.603 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 1 keys, 0 updates -13:18:20.603 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64976], selector=sun.nio.ch.WindowsSelectorImpl@24f6d469, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:20.603 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:20.603 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:20.603 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0} tryExecute EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:20.6032159+02:00 -13:18:20.604 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=0}@5ce13b62 offer EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:20.6042148+02:00 -13:18:20.604 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=1} startReservedThread p=1 -13:18:20.604 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@264c02c5{s=0/1,p=1}@7cd0d0be startThread=0 -13:18:20.604 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:20.6042148+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:20.605 [qtp336949043-39] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@572e95d7{AC.ReadCB@72613969{HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:20.605 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:20.606 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} -13:18:20.606 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} -13:18:20.606 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=START,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@1de9b522[p=0,l=157,c=8192,r=157]={<<>>20200408)...\x00\x00\x00\x00\x00\x00\x00} -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:20.607 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@4268e4b2{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,AVAILABLE} -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@46a97290 in null -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@7b8a759f{/,null,AVAILABLE} -13:18:20.608 [qtp336949043-39] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:20.609 [qtp336949043-39] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:20.609 [qtp336949043-39] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:20.609 [qtp336949043-39] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:20.609 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:20.609 [qtp336949043-39] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} filled 0 HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:20.604 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=1}@5ce13b62 task=EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:20.6042148+02:00 -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@72613969[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parse HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@1de9b522[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@776f68f8[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:20.610 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=true/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:20.6102159+02:00 tryProduce true -13:18:20.610 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:20.610 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:20.610 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:20.610 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 2 keys -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:20.610 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:20.613 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@264c02c5{s=0/1,p=1}@7cd0d0be in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=0/1,p=1}] -13:18:20.614 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=1}@7cd0d0be started -13:18:20.614 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0}@7cd0d0be waiting -13:18:22.598 [reactor-http-nio-1] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x3aac70a7, L:/127.0.0.1:64976 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:18:22.598 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [76659ac2] Cancel signal (to close connection) -13:18:22.601 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x3aac70a7, L:/127.0.0.1:64976 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:22.601 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@37e679cd{STARTED}[9.4.28.v20200408] -13:18:22.601 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x3aac70a7, L:/127.0.0.1:64976 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x3aac70a7, L:/127.0.0.1:64976 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:22.601 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@37e679cd{STOPPING}[9.4.28.v20200408] -13:18:22.601 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x3aac70a7, L:/127.0.0.1:64976 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x3aac70a7, L:/127.0.0.1:64976 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:22.601 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.601 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x3aac70a7, L:/127.0.0.1:64976 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x3aac70a7, L:/127.0.0.1:64976 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:22.601 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.601 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@5efcef8c{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:22.602 [qtp336949043-36] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp336949043-36-acceptor-1@3bead706-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:22.602 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@76d9994b on ManagedSelector@5efcef8c{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:22.602 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5efcef8c{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:22.602 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:22.602 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/2 selected -13:18:22.602 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 1 updates -13:18:22.602 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:22.602 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@76d9994b -13:18:22.602 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@5efcef8c{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:22.602 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9975/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.602 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9975/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.602 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=9975/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.603 [qtp336949043-33] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@7de8fbe9{AC.ReadCB@5ca2382{HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=9976/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5ca2382[p=HttpParser{s=START,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:22.603 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:22.603 [qtp336949043-33] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:22.603 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9976/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5ca2382[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:22.603 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@5efcef8c{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:22.603 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@5f58bd07 startThread=0 -13:18:22.603 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1998/30000}{io=0/0,kio=0,kro=1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1996} -13:18:22.603 [qtp336949043-33] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1998/30000}{io=0/0,kio=0,kro=1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1996} -13:18:22.604 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1998/30000}{io=0/0,kio=0,kro=1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1997} -13:18:22.604 [qtp336949043-33] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@572e95d7{null} -13:18:22.604 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@5f58bd07 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:22.604 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@5efcef8c{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:22.604 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1ab26049 startThread=0 -13:18:22.604 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:22.604 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 waiting with 2 keys -13:18:22.604 [qtp336949043-38] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9977/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5ca2382[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.604 [qtp336949043-36] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1ab26049 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:22.604 [qtp336949043-38] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@5ca2382::NetworkTrafficSocketChannelEndPoint@4d8946ee{/127.0.0.1:64969<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9977/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5ca2382[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@33bb3ddd{s=START}]=>HttpChannelOverHttp@47712d9e{s=HttpChannelState@273bb14{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.604 [qtp336949043-36] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1999/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1997} -13:18:22.604 [qtp336949043-38] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@5f58bd07 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:22.604 [qtp336949043-36] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1999/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1997} -13:18:22.605 [qtp336949043-36] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1ab26049 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:22.605 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@3163c3ee on ManagedSelector@5efcef8c{STOPPING} id=1 keys=0 selected=0 updates=0 -13:18:22.605 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5efcef8c{STOPPING} id=1 keys=0 selected=0 updates=1 -13:18:22.605 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken with none selected -13:18:22.605 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 woken up from select, 0/0/0 selected -13:18:22.605 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@24f6d469 processing 0 keys, 1 updates -13:18:22.605 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:22.605 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@3163c3ee -13:18:22.605 [qtp336949043-33] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:22.605 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0}@5ce13b62 size 1 > capacity -13:18:22.605 [qtp336949043-33] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@264c02c5{s=1/1,p=0}@5ce13b62 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:22.606 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:22.6064749+02:00 -13:18:22.607 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@672f2e73/SelectorProducer@ba28fc3/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:22.6074743+02:00 -13:18:22.607 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@5efcef8c{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:22.607 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@74341b2c{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:22.607 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@5a21bff9 on ManagedSelector@74341b2c{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:22.607 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@74341b2c{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:22.607 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken with none selected -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 0/0/0 selected -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 0 keys, 1 updates -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@5a21bff9 -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 0 connections on ManagedSelector@74341b2c{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 waiting with 0 keys -13:18:22.608 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@5abdc0a5 on ManagedSelector@74341b2c{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:22.608 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@74341b2c{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken with none selected -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 woken up from select, 0/0/0 selected -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69c35d72 processing 0 keys, 1 updates -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:22.608 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@5abdc0a5 -13:18:22.609 [qtp336949043-40] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:22.609 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/PRODUCING/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:22.609473+02:00 -13:18:22.609 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=1/1,p=0}@794bf028 size 1 > capacity -13:18:22.609 [qtp336949043-40] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@264c02c5{s=1/1,p=0}@794bf028 in QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:22.609 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@64411409/SelectorProducer@3a1df2c1/IDLE/p=false/QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:22.609473+02:00 -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@74341b2c{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@55738316[HTTP/1.1] -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@55738316[HTTP/1.1] -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@289ae342{STARTED} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@289ae342{STOPPED} -13:18:22.610 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@37e679cd{STOPPING}[9.4.28.v20200408] -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@57e7119f{STARTED} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@57e7119f{STOPPING} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@57e7119f{STOPPED} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@5e85fbf5{STARTED} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@5e85fbf5{STOPPING} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@74c28093{STARTED,min=32,inflate=-1} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@74c28093{STOPPING,min=32,inflate=-1} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@7b8a759f{/,null,SHUTDOWN} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@7b8a759f{/,null,UNAVAILABLE} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@14277aa2{STARTED} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@14277aa2{STOPPING} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@14277aa2{STOPPED} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@588c1a7f{STARTED} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@588c1a7f{STOPPING} -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-71d86d06@71d86d06==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:22.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-db380ab@db380ab==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-db380ab@db380ab==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-2cc0d5bb@2cc0d5bb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-2cc0d5bb@2cc0d5bb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3bc8fbe0@fc9d58f9==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-13c6528a@18b448fa==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-13c6528a@18b448fa==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@588c1a7f{STOPPED} -13:18:22.611 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@7b8a759f{/,null,UNAVAILABLE} -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@7b8a759f{/,null,UNAVAILABLE} -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@74c28093{STOPPED,min=32,inflate=-1} -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,SHUTDOWN} -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,UNAVAILABLE} -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@3d7a1559{STARTED} -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@3d7a1559{STOPPING} -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-48906236@48906236==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-48906236@48906236==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07@4730b6c6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-25ad7b07@4730b6c6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-4c343c97@e97dee1d==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-4c343c97@e97dee1d==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-1995578c@e601db0==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-1995578c@e601db0==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@3d7a1559{STOPPED} -13:18:22.611 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,UNAVAILABLE} -13:18:22.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@58d1a4a5{/__admin,null,UNAVAILABLE} -13:18:22.612 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@5e85fbf5{STOPPED} -13:18:22.612 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp336949043]@14156f33{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:22.612 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp336949043]@14156f33{STOPPING,8<=8<=14,i=4,r=-1,q=0}[ReservedThreadExecutor@264c02c5{s=1/1,p=0}] -13:18:22.612 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@264c02c5{s=1/1,p=0} -13:18:22.612 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=0/1,p=0}@7cd0d0be offer STOP! -13:18:22.612 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@264c02c5{s=-1/1,p=0} -13:18:22.612 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:22.612 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@37e679cd{STOPPED}[9.4.28.v20200408] -13:18:22.615 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=-1/1,p=0}@7cd0d0be task=STOP! -13:18:22.615 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=-1/1,p=0}@7cd0d0be Exited -13:18:22.615 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@264c02c5{s=-1/1,p=0}@7cd0d0be in QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:22.615 [qtp336949043-34] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp336949043-34,5,main] exited for QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:22.621 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@554348da{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:22.621 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@c35c8ed[HTTP/1.1] added {HttpConfiguration@4360b2cf{32768/8192,8192/8192,https://:0,[]},POJO} -13:18:22.621 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{null, ()}{0.0.0.0:0} added {Server@554348da{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:18:22.622 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:22.622 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@36792006{STOPPED},AUTO} -13:18:22.622 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@1429e484,POJO} -13:18:22.622 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@c35c8ed[HTTP/1.1],AUTO} -13:18:22.622 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@c35c8ed[HTTP/1.1] -13:18:22.622 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:18:22.622 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@554348da{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:18:22.623 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@554348da{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,UNAVAILABLE},MANAGED} -13:18:22.623 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@365d5297 -13:18:22.623 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,UNAVAILABLE} added {ServletHandler@495b3d4a{STOPPED},MANAGED} -13:18:22.624 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@554348da{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@3ff531df{/,null,UNAVAILABLE},MANAGED} -13:18:22.625 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@7305a603 -13:18:22.625 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@3ff531df{/,null,UNAVAILABLE} added {ServletHandler@4a80ba65{STOPPED},MANAGED} -13:18:22.625 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@3ff531df{/,null,UNAVAILABLE} added {NotFoundHandler@258f2e8d{STOPPED},MANAGED} -13:18:22.625 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@4d5fd7af{STOPPED} added {o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,UNAVAILABLE},AUTO} -13:18:22.626 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:18:22.627 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STOPPED,min=32,inflate=-1} mime types IncludeExclude@73553baa{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:18:22.627 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@3867a06c{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@3ff531df{/,null,UNAVAILABLE},MANAGED} -13:18:22.627 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@4d5fd7af{STOPPED} added {GzipHandler@3867a06c{STOPPED,min=32,inflate=-1},AUTO} -13:18:22.627 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@554348da{STOPPED}[9.4.28.v20200408] added {HandlerCollection@4d5fd7af{STOPPED},MANAGED} -13:18:22.627 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@554348da{STOPPED}[9.4.28.v20200408] -13:18:22.627 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@554348da{STARTING}[9.4.28.v20200408] added {ErrorHandler@21bd3fbb{STOPPED},AUTO} -13:18:22.627 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:18:22.627 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@554348da{STARTING}[9.4.28.v20200408] -13:18:22.627 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:18:22.628 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0} -13:18:22.628 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp426008992]@196461a0{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] added {ReservedThreadExecutor@126c668c{s=0/1,p=0},AUTO} -13:18:22.628 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@126c668c{s=0/1,p=0} -13:18:22.628 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54186ms ReservedThreadExecutor@126c668c{s=0/1,p=0} -13:18:22.628 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp426008992-45,5,main] -13:18:22.629 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp426008992-46,5,main] -13:18:22.630 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp426008992-47,5,main] -13:18:22.630 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp426008992-48,5,main] -13:18:22.631 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp426008992-49,5,main] -13:18:22.632 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp426008992-50,5,main] -13:18:22.632 [qtp336949043-35] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp336949043-35-acceptor-0@13095f3f-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:22.633 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp426008992-51,5,main] -13:18:22.633 [qtp336949043-35] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp336949043-35,5,main] exited for QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:22.633 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp426008992-52,5,main] -13:18:22.633 [qtp336949043-37] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp336949043-37-acceptor-2@1601be9e-NetworkTrafficServerConnector@2c36df18{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:22.633 [qtp336949043-37] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp336949043-37,5,main] exited for QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:22.634 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54191ms QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.634 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@4d5fd7af{STOPPED} -13:18:22.634 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@4d5fd7af{STARTING} -13:18:22.634 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,UNAVAILABLE} -13:18:22.634 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,STARTING} -13:18:22.634 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@495b3d4a{STOPPED} -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-e584c9e[EMBEDDED:null] -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-e584c9e@9f934d04==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-128dfd21[EMBEDDED:null] -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-128dfd21@9d0ce529==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28[EMBEDDED:null] -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-426ca846=org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-426ca846] -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-128dfd21=org.eclipse.jetty.servlet.DefaultServlet-128dfd21@9d0ce529==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-e584c9e=org.eclipse.jetty.servlet.DefaultServlet-e584c9e@9f934d04==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true} -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@495b3d4a{STARTING} -13:18:22.635 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54193ms ServletHandler@495b3d4a{STARTED} -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54193ms org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@408ecbd1 -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54194ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-128dfd21@9d0ce529==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54194ms org.eclipse.jetty.servlet.DefaultServlet-128dfd21@9d0ce529==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-e584c9e@9f934d04==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54194ms org.eclipse.jetty.servlet.DefaultServlet-e584c9e@9f934d04==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.636 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54194ms o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@3867a06c{STOPPED,min=32,inflate=-1} -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@3867a06c{STARTING,min=32,inflate=-1} -13:18:22.636 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@3ff531df{/,null,UNAVAILABLE} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@3ff531df{/,null,STARTING} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@4a80ba65{STOPPED} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-6d8915eb[EMBEDDED:null] -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-6d8915eb@f6f3a3cf==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c[EMBEDDED:null] -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6a13fbcb=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6a13fbcb@6a13fbcb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-4f909d2f=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-4f909d2f@4f909d2f==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-1178684b=org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6a13fbcb, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-4f909d2f, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-1178684b] -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-6d8915eb=org.eclipse.jetty.servlet.DefaultServlet-6d8915eb@f6f3a3cf==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@4a80ba65{STARTING} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54195ms ServletHandler@4a80ba65{STARTED} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@258f2e8d{STOPPED} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@258f2e8d{STARTING} -13:18:22.637 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54195ms NotFoundHandler@258f2e8d{STARTED} -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6a13fbcb@6a13fbcb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54195ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6a13fbcb@6a13fbcb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@3e3b4469 -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-4f909d2f@4f909d2f==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54195ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-4f909d2f@4f909d2f==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@622973ed -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54196ms org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@3f56e03c -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54196ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-6d8915eb@f6f3a3cf==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54196ms org.eclipse.jetty.servlet.DefaultServlet-6d8915eb@f6f3a3cf==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.638 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54196ms o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54196ms GzipHandler@3867a06c{STARTED,min=32,inflate=-1} -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54196ms HandlerCollection@4d5fd7af{STARTED} -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@21bd3fbb{STOPPED} -13:18:22.638 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@21bd3fbb{STARTING} -13:18:22.639 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54196ms ErrorHandler@21bd3fbb{STARTED} -13:18:22.639 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.640 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:22.640 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@36792006{STOPPED} -13:18:22.640 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54198ms ScheduledExecutorScheduler@36792006{STARTED} -13:18:22.640 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@c35c8ed[HTTP/1.1] -13:18:22.640 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54198ms HttpConnectionFactory@c35c8ed[HTTP/1.1] -13:18:22.640 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.641 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.6414716+02:00 added {SelectorProducer@6dcc6117,POJO} -13:18:22.686 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.6414716+02:00 added {QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}],UNMANAGED} -13:18:22.687 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.687463+02:00 created -13:18:22.687 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@4453c158{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.687463+02:00,MANAGED} -13:18:22.688 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@4453c158{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:22.689 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.6894627+02:00 added {SelectorProducer@4614c16f,POJO} -13:18:22.689 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.6894627+02:00 added {QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}],UNMANAGED} -13:18:22.690 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.6904616+02:00 created -13:18:22.691 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@48ded463{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.6914661+02:00,MANAGED} -13:18:22.691 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@48ded463{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:22.691 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@4453c158{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:22.692 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.6914661+02:00 -13:18:22.692 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54250ms EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.6924633+02:00 -13:18:22.696 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@125d8521 startThread=0 -13:18:22.696 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@3a8e026a on ManagedSelector@4453c158{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:22.712 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@74c28093{STOPPED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@46a97290 -13:18:22.712 [qtp336949043-39] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@388c7dec exclude no deflater -13:18:22.712 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@42231f63{null} -13:18:22.712 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2105} -200 null HTTP/1.1 -Matched-Stub-Id: 2f9bf285-9512-41ed-90c0-5d064ab79188 -Vary: Accept-Encoding, User-Agent - - -13:18:22.713 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.server.HttpConnection$SendCallback.reset(HttpConnection.java:728) - at org.eclipse.jetty.server.HttpConnection$SendCallback.access$300(HttpConnection.java:688) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:547) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:824) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.commit(GzipHttpOutputInterceptor.java:216) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:108) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:267) - at org.eclipse.jetty.server.HttpOutput.flush(HttpOutput.java:705) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:234) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:22.714 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2108/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2107} {} -13:18:22.714 [qtp336949043-39] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2109/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2107} -13:18:22.714 [qtp336949043-39] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2109/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2107} -13:18:22.714 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,org.eclipse.jetty.io.EofException) s=OPEN,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:22.714 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSED,api=BLOCKING,sc=false,e=null c=null b=null -13:18:22.716 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - /api/v0/components/provision-adapters/awx -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.server.HttpConnection$SendCallback.reset(HttpConnection.java:728) - at org.eclipse.jetty.server.HttpConnection$SendCallback.access$300(HttpConnection.java:688) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:547) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:824) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.commit(GzipHttpOutputInterceptor.java:216) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:108) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:267) - at org.eclipse.jetty.server.HttpOutput.flush(HttpOutput.java:705) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:234) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:22.716 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@4268e4b2{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:22.716 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@4268e4b2{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:22.716 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpChannel - !handle COMPLETE HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2109} -13:18:22.716 [qtp336949043-39] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@72613969::NetworkTrafficSocketChannelEndPoint@45da84a3{/127.0.0.1:64976<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2111/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@72613969[p=HttpParser{s=END,0 of -1},g=HttpGenerator@630f441a{s=START}]=>HttpChannelOverHttp@27d268e4{s=HttpChannelState@4268e4b2{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2109} onFillable exit HttpChannelState@4268e4b2{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} null -13:18:22.716 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@264c02c5{s=-1/1,p=0}@633b3602 Exited -13:18:22.716 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@264c02c5{s=-1/1,p=0}@633b3602 in QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:22.717 [qtp336949043-39] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp336949043-39,5,main] exited for QueuedThreadPool[qtp336949043]@14156f33{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:22.750 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.751 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@125d8521 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.752 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.7524543+02:00 tryProduce false -13:18:22.752 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:22.753 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@3a8e026a -13:18:22.754 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54311ms ManagedSelector@4453c158{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:22.754 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:22.754 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 0 keys -13:18:22.754 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@48ded463{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:22.754 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.7544569+02:00 -13:18:22.754 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54312ms EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.7544569+02:00 -13:18:22.756 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@5a71a3ed startThread=0 -13:18:22.756 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@64b2090c on ManagedSelector@48ded463{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:22.762 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.762 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@5a71a3ed in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.762 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.7624519+02:00 tryProduce false -13:18:22.762 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:22.762 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@64b2090c -13:18:22.762 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:22.762 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 0 keys -13:18:22.762 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54320ms ManagedSelector@48ded463{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:22.763 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54320ms SelectorManager@NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.763 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@1ab8fc36,POJO} -13:18:22.763 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@1ab8fc36 startThread=0 -13:18:22.763 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@506f3059,POJO} -13:18:22.763 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@506f3059 startThread=0 -13:18:22.763 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@7569f72,POJO} -13:18:22.763 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@7569f72 startThread=0 -13:18:22.763 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.763 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54321ms NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:22.763 [Test worker] INFO org.eclipse.jetty.server.Server - Started @54321ms -13:18:22.763 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @54321ms Server@554348da{STARTED}[9.4.28.v20200408] -13:18:22.770 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:22.770 [Test worker] DEBUG org.apache.http.wire - http-outgoing-0 << "end of stream" -13:18:22.770 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: Close connection -13:18:22.770 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 1][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:22.771 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:22.771 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:22.771 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:64981<->127.0.0.1:8080 -13:18:22.772 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:22.772 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:22.772 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:22.772 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> POST /__admin/mappings HTTP/1.1 -13:18:22.772 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Content-Length: 328 -13:18:22.772 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Content-Type: text/plain; charset=UTF-8 -13:18:22.772 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Host: localhost:8080 -13:18:22.772 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Connection: Keep-Alive -13:18:22.772 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Content-Length: 328[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Host: localhost:8080[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Connection: Keep-Alive[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "{[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "id" : "9f3b9445-bf21-4453-a6e8-79ba3d4d83b2",[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "request" : {[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "method" : "GET"[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " },[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "response" : {[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "status" : 401[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " },[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "uuid" : "9f3b9445-bf21-4453-a6e8-79ba3d4d83b2",[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:22.772 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "}" -13:18:22.814 [qtp426008992-47] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.814 [qtp426008992-47] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@1ab8fc36 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.835 [qtp426008992-48] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.835 [qtp426008992-48] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@506f3059 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.836 [qtp426008992-48-acceptor-1@506f3059-NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@37246f34 on ManagedSelector@48ded463{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:22.836 [qtp426008992-48-acceptor-1@506f3059-NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@48ded463{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:22.836 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken with none selected -13:18:22.836 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 0/0/0 selected -13:18:22.836 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 0 keys, 1 updates -13:18:22.836 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:22.836 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@37246f34 -13:18:22.837 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@37246f34 startThread=0 -13:18:22.837 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:22.837 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 1 keys -13:18:22.867 [qtp426008992-49] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.868 [qtp426008992-49] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@7569f72 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.869 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.869 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@37246f34 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.869 [qtp426008992-50] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:22.870 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:22.870 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:22.870 [qtp426008992-50] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.871 [qtp426008992-50] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.871 [qtp426008992-50] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.871 [qtp426008992-50] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@726e0c64{AC.ReadCB@aea33ab{HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:22.871 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.871 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@441da1a8 on ManagedSelector@48ded463{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:22.871 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@48ded463{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:22.871 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.871 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken with none selected -13:18:22.871 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@37246f34 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}] -13:18:22.871 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 0/0/1 selected -13:18:22.871 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 0 keys, 1 updates -13:18:22.871 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:22.871 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@441da1a8 -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 1 keys -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 1/1/1 selected -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 1 keys, 0 updates -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64981], selector=sun.nio.ch.WindowsSelectorImpl@25487540, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0} tryExecute EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.8724378+02:00 -13:18:22.872 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1} startReservedThread p=1 -13:18:22.873 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@126c668c{s=0/1,p=1}@2fb01e30 startThread=0 -13:18:22.873 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:22.8734395+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:22.873 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:22.873 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:22.873 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:22.874 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:22.874 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 1 keys -13:18:22.875 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@126c668c{s=0/1,p=1}@2fb01e30 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}] -13:18:22.875 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=1}@2fb01e30 started -13:18:22.875 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@2fb01e30 waiting -13:18:22.888 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:22.889 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=17/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:22.889 [qtp426008992-51] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@726e0c64{AC.ReadCB@aea33ab{HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=18/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:22.889 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=18/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:22.889 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 523 HeapByteBuffer@a250024[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:22.891 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 523 HeapByteBuffer@a250024[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:22.891 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:22.891 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:22.891 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:22.891 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 328 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:22.892 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 328} -13:18:22.893 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:18:22.893 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:22.893 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:22.893 [qtp426008992-51] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:22.893 [qtp426008992-51] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:22.893 [qtp426008992-51] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:22.893 [qtp426008992-51] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.893 [qtp426008992-51] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:22.893 [qtp426008992-51] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@4e2ff10 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28 -13:18:23.010 [qtp426008992-51] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:23.010 [qtp426008992-51] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:23.010 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:23.010 [qtp426008992-51] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.011 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=121/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=119} parse HeapByteBuffer@a250024[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "9f3b9445-bf2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.011 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@a250024[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "9f3b9445-bf2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=120} Content@dd6b54{HeapByteBufferR@45dff52b[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "9f3b9445-bf2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@67d9e994[c=0,q=0,[0]=null,s=STREAM] addContent Content@dd6b54{HeapByteBufferR@45dff52b[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "9f3b9445-bf2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=120} -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=120} -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@67d9e994[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=122/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,328 of 328},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=120} parsed false HttpParser{s=END,328 of 328} -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@67d9e994[c=328,q=1,[0]=EOF,s=STREAM] read 328 from Content@dd6b54{HeapByteBufferR@45dff52b[p=523,l=523,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=122/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,328 of 328},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=120} -13:18:23.012 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.061 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@74509000[p=0,l=328,c=8192,r=328]={<<<{\r\n "id" : "9f3b9445-bf2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:23.062 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@1fbcd215[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "9f3b9445-bf2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.063 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@1fbcd215[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "9f3b9445-bf2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@25f00a64{null} -13:18:23.063 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=171} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:23.064 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7d6d933e] (null,[p=0,l=328,c=32768,r=328],false)@START -13:18:23.066 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@1fbcd215[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "9f3b9445-bf2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.066 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:23.066 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:23.066 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7d6d933e] ([p=0,l=122,c=8192,r=122],[p=0,l=328,c=32768,r=328],false)@COMMITTED -13:18:23.066 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4b8dafc{IDLE}->null [HeapByteBuffer@a250024[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@1fbcd215[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "9f3b9445-bf2...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.067 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{WRITING}->null:IDLE-->WRITING -13:18:23.067 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "HTTP/1.1 201 Created[\r][\n]" -13:18:23.067 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "Content-Type: application/json[\r][\n]" -13:18:23.067 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]" -13:18:23.067 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:23.067 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]" -13:18:23.067 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "148[\r][\n]" -13:18:23.067 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << HTTP/1.1 201 Created -13:18:23.067 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << Content-Type: application/json -13:18:23.067 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << Transfer-Encoding: chunked -13:18:23.067 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << Server: Jetty(9.4.28.v20200408) -13:18:23.068 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:23.068 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=178/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,328 of 328},g=HttpGenerator@155c3f9e{s=COMMITTED}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=176} -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "{[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "id" : "9f3b9445-bf21-4453-a6e8-79ba3d4d83b2",[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "request" : {[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "method" : "GET"[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " },[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "response" : {[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "status" : 401[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " },[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "uuid" : "9f3b9445-bf21-4453-a6e8-79ba3d4d83b2",[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:23.069 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "}" -13:18:23.070 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 328 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,328 of 328},g=HttpGenerator@155c3f9e{s=COMMITTED}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=178} -13:18:23.070 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=450 remaining=0 WriteFlusher@4b8dafc{WRITING}->null -13:18:23.071 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{IDLE}->null:WRITING-->IDLE -13:18:23.071 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7d6d933e] ([p=122,l=122,c=8192,r=0],[p=328,l=328,c=32768,r=0],false)@COMMITTED -13:18:23.071 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.072 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@25f00a64{null} -13:18:23.072 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@25f00a64{null} -13:18:23.072 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@21be5325] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.072 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@21be5325] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.073 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@21be5325] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.073 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4b8dafc{IDLE}->null [HeapByteBuffer@420070ff[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.073 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{WRITING}->null:IDLE-->WRITING -13:18:23.074 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]" -13:18:23.074 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "0[\r][\n]" -13:18:23.075 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]" -13:18:23.075 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 1][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:23.075 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-1: set socket timeout to 0 -13:18:23.075 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 1][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:23.075 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,328 of 328},g=HttpGenerator@155c3f9e{s=COMPLETING}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=183} -13:18:23.076 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@4b8dafc{WRITING}->null -13:18:23.077 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{IDLE}->null:WRITING-->IDLE -13:18:23.078 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@21be5325] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:23.078 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.078 [qtp426008992-51] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@5365ffe2 in null -13:18:23.078 [qtp426008992-51] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:23.078 [qtp426008992-51] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=186} -13:18:23.078 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:23.079 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@24325ee7{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.079 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=187} -13:18:23.080 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:23.080 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 1][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:23.080 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-1: set socket timeout to 30000 -13:18:23.080 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:23.079 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@11c8a048) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:23.080 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@24325ee7{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.080 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@24325ee7{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.081 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@24325ee7{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[read] I/O error: Read timed out" -13:18:23.081 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:23.081 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:23.081 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:23.081 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> POST /__admin/mappings HTTP/1.1 -13:18:23.081 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Content-Length: 678 -13:18:23.081 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Content-Type: text/plain; charset=UTF-8 -13:18:23.081 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Host: localhost:8080 -13:18:23.081 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Connection: Keep-Alive -13:18:23.081 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Content-Length: 678[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Host: localhost:8080[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Connection: Keep-Alive[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "{[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "id" : "a6c70f28-7a2a-492a-8f13-402457cfa7e5",[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "request" : {[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "method" : "POST",[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "headers" : {[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "Content-Type" : {[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "equalTo" : "application/json"[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " }[\r][\n]" -13:18:23.081 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " },[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " } ][\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " },[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "response" : {[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "status" : 200,[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "headers" : {[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " }[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " },[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "uuid" : "a6c70f28-7a2a-492a-8f13-402457cfa7e5",[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "requiredScenarioState" : "Started",[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "newScenarioState" : "logged"[\r][\n]" -13:18:23.082 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "}" -13:18:23.082 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=189} -13:18:23.082 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=328 -13:18:23.082 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@24325ee7{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.082 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,328 of 328} -13:18:23.082 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:23.083 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.083 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 873 HeapByteBuffer@a250024[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.083 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 873 HeapByteBuffer@a250024[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.083 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.084 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.084 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:23.084 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:23.084 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:23.084 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:23.084 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:23.084 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:23.085 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:23.085 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:23.085 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:23.085 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:23.085 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:23.085 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:23.085 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:23.086 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:23.086 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:23.086 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:23.086 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:23.086 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 678 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:23.087 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} parsed true HttpParser{s=CONTENT,0 of 678} -13:18:23.087 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:18:23.087 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.087 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:23.088 [qtp426008992-51] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:23.088 [qtp426008992-51] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:23.088 [qtp426008992-51] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:23.088 [qtp426008992-51] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.089 [qtp426008992-51] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.089 [qtp426008992-51] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:23.089 [qtp426008992-51] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.091 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} parse HeapByteBuffer@a250024[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "a6c70f28-7a2...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.091 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@a250024[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "a6c70f28-7a2...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.091 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} Content@42bcee2f{HeapByteBufferR@3faf90f[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "a6c70f28-7a2...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.091 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@67d9e994[c=0,q=0,[0]=null,s=STREAM] addContent Content@42bcee2f{HeapByteBufferR@3faf90f[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "a6c70f28-7a2...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.091 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:23.091 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} -13:18:23.091 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:23.091 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} -13:18:23.092 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@67d9e994[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:23.092 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,678 of 678},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=6} parsed false HttpParser{s=END,678 of 678} -13:18:23.092 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@67d9e994[c=678,q=1,[0]=EOF,s=STREAM] read 678 from Content@42bcee2f{HeapByteBufferR@3faf90f[p=873,l=873,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.092 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,678 of 678},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=6} -13:18:23.092 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.100 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@5a0c45bc[p=0,l=678,c=8192,r=678]={<<<{\r\n "id" : "a6c70f28-7a2...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@1fbcd215[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "a6c70f28-7a2...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@1fbcd215[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "a6c70f28-7a2...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@25f00a64{null} -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=15} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@41e855e4] (null,[p=0,l=678,c=32768,r=678],false)@START -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@1fbcd215[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "a6c70f28-7a2...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@41e855e4] ([p=0,l=122,c=8192,r=122],[p=0,l=678,c=32768,r=678],false)@COMMITTED -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4b8dafc{IDLE}->null [HeapByteBuffer@a250024[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@1fbcd215[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "a6c70f28-7a2...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{WRITING}->null:IDLE-->WRITING -13:18:23.101 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "HTTP/1.1 201 Created[\r][\n]" -13:18:23.101 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "Content-Type: application/json[\r][\n]" -13:18:23.101 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]" -13:18:23.101 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:23.101 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]" -13:18:23.101 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "2A6[\r][\n]" -13:18:23.101 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=18/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,678 of 678},g=HttpGenerator@155c3f9e{s=COMMITTED}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=15} -13:18:23.102 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << HTTP/1.1 201 Created -13:18:23.102 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << Content-Type: application/json -13:18:23.102 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << Transfer-Encoding: chunked -13:18:23.102 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << Server: Jetty(9.4.28.v20200408) -13:18:23.102 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 678 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,678 of 678},g=HttpGenerator@155c3f9e{s=COMMITTED}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=16} -13:18:23.102 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=800 remaining=0 WriteFlusher@4b8dafc{WRITING}->null -13:18:23.102 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{IDLE}->null:WRITING-->IDLE -13:18:23.102 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:23.102 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@41e855e4] ([p=122,l=122,c=8192,r=0],[p=678,l=678,c=32768,r=0],false)@COMMITTED -13:18:23.102 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.102 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@25f00a64{null} -13:18:23.102 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@25f00a64{null} -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "{[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "id" : "a6c70f28-7a2a-492a-8f13-402457cfa7e5",[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "request" : {[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "url" : "/api/v0/components/login",[\r][\n]" -13:18:23.102 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7f1d1ff6] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "method" : "POST",[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "headers" : {[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "Content-Type" : {[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "equalTo" : "application/json"[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " }[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " },[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "bodyPatterns" : [ {[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " } ][\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " },[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "response" : {[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "status" : 200,[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "headers" : {[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "Content-Type" : "application/json"[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " }[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " },[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "uuid" : "a6c70f28-7a2a-492a-8f13-402457cfa7e5",[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "requiredScenarioState" : "Started",[\r][\n]" -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "newScenarioState" : "logged"[\r][\n]" -13:18:23.102 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7f1d1ff6] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.102 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "}" -13:18:23.103 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7f1d1ff6] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.103 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4b8dafc{IDLE}->null [HeapByteBuffer@420070ff[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.103 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{WRITING}->null:IDLE-->WRITING -13:18:23.103 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]" -13:18:23.103 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "0[\r][\n]" -13:18:23.103 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]" -13:18:23.103 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 1][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:23.103 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-1: set socket timeout to 0 -13:18:23.103 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 1][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,678 of 678},g=HttpGenerator@155c3f9e{s=COMPLETING}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=17} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@4b8dafc{WRITING}->null -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{IDLE}->null:WRITING-->IDLE -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7f1d1ff6] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@5365ffe2 in null -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=18} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@24325ee7{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=18} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@26115a65) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@24325ee7{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@24325ee7{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@24325ee7{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=18} -13:18:23.104 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=678 -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@24325ee7{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,678 of 678} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.105 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.106 [qtp426008992-51] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@726e0c64{AC.ReadCB@aea33ab{HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:23.106 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.106 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@441da1a8 on ManagedSelector@48ded463{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:23.106 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@48ded463{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:23.106 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken with none selected -13:18:23.106 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 0/0/1 selected -13:18:23.106 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 0 keys, 1 updates -13:18:23.106 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:23.106 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@441da1a8 -13:18:23.106 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.106 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.106 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 1 keys -13:18:23.108 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:23.108 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:23.117 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:23.117 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 1][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:23.117 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-1: set socket timeout to 30000 -13:18:23.117 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[read] I/O error: Read timed out" -13:18:23.118 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:23.118 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:23.118 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:23.118 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> POST /__admin/mappings HTTP/1.1 -13:18:23.118 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Content-Length: 430 -13:18:23.118 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Content-Type: text/plain; charset=UTF-8 -13:18:23.118 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Host: localhost:8080 -13:18:23.118 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> Connection: Keep-Alive -13:18:23.118 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Content-Length: 430[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Host: localhost:8080[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "Connection: Keep-Alive[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "{[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "id" : "80f785a6-cc11-4a27-a56f-35a2d569e527",[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "request" : {[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "method" : "GET",[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "headers" : {[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "Authorization" : {[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " }[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " }[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " },[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "response" : {[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "status" : 401[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " },[\r][\n]" -13:18:23.118 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "uuid" : "80f785a6-cc11-4a27-a56f-35a2d569e527",[\r][\n]" -13:18:23.119 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:23.119 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> " "requiredScenarioState" : "logged"[\r][\n]" -13:18:23.119 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 >> "}" -13:18:23.119 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 1/1/1 selected -13:18:23.119 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 1 keys, 0 updates -13:18:23.119 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64981], selector=sun.nio.ch.WindowsSelectorImpl@25487540, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/1,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.119 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.119 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:23.119 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0} tryExecute EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:23.1194036+02:00 -13:18:23.119 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0}@2fb01e30 offer EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:23.1194036+02:00 -13:18:23.120 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1} startReservedThread p=1 -13:18:23.120 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@126c668c{s=0/1,p=1}@6ab295a2 startThread=0 -13:18:23.120 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:23.1204102+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:23.120 [qtp426008992-46] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@726e0c64{AC.ReadCB@aea33ab{HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:23.120 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 625 HeapByteBuffer@a250024[p=0,l=625,c=8192,r=625]={<<>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 625 HeapByteBuffer@a250024[p=0,l=625,c=8192,r=625]={<<>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=625,c=8192,r=625]={<<>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=625,c=8192,r=625]={<<>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:23.121 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 430 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=CONTENT,0 of 430},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} parsed true HttpParser{s=CONTENT,0 of 430} -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:23.122 [qtp426008992-46] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.123 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=CONTENT,0 of 430},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} parse HeapByteBuffer@a250024[p=195,l=625,c=8192,r=430]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "80f785a6-cc1...rioState" : "logged"\r\n}>>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.123 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@a250024[p=195,l=625,c=8192,r=430]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "80f785a6-cc1...rioState" : "logged"\r\n}>>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} Content@cb60fc1{HeapByteBufferR@5b923a99[p=195,l=625,c=8192,r=430]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "80f785a6-cc1...rioState" : "logged"\r\n}>>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@67d9e994[c=0,q=0,[0]=null,s=STREAM] addContent Content@cb60fc1{HeapByteBufferR@5b923a99[p=195,l=625,c=8192,r=430]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "80f785a6-cc1...rioState" : "logged"\r\n}>>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@67d9e994[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,430 of 430},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} parsed false HttpParser{s=END,430 of 430} -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@67d9e994[c=430,q=1,[0]=EOF,s=STREAM] read 430 from Content@cb60fc1{HeapByteBufferR@5b923a99[p=625,l=625,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,430 of 430},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:23.124 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.159 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1}@2fb01e30 task=EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:23.1593952+02:00 -13:18:23.159 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:23.1593952+02:00 tryProduce true -13:18:23.159 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:23.159 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.161 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=38/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,430 of 430},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=38} -13:18:23.161 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 1 keys -13:18:23.166 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@126c668c{s=0/1,p=1}@6ab295a2 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}] -13:18:23.166 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=1}@6ab295a2 started -13:18:23.166 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@6ab295a2 waiting -13:18:23.173 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@643323ee[p=0,l=430,c=8192,r=430]={<<<{\r\n "id" : "80f785a6-cc1...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:23.173 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@1fbcd215[p=0,l=430,c=32768,r=430]={<<<{\r\n "id" : "80f785a6-cc1...rioState" : "logged"\r\n}>>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.173 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@1fbcd215[p=0,l=430,c=32768,r=430]={<<<{\r\n "id" : "80f785a6-cc1...rioState" : "logged"\r\n}>>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@25f00a64{null} -13:18:23.173 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=52} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:23.173 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@472994d5] (null,[p=0,l=430,c=32768,r=430],false)@START -13:18:23.174 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@1fbcd215[p=0,l=430,c=32768,r=430]={<<<{\r\n "id" : "80f785a6-cc1...rioState" : "logged"\r\n}>>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.175 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:23.175 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:23.175 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@472994d5] ([p=0,l=122,c=8192,r=122],[p=0,l=430,c=32768,r=430],false)@COMMITTED -13:18:23.175 [qtp426008992-46] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4b8dafc{IDLE}->null [HeapByteBuffer@a250024[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@1fbcd215[p=0,l=430,c=32768,r=430]={<<<{\r\n "id" : "80f785a6-cc1...rioState" : "logged"\r\n}>>>oken\\"}",...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.175 [qtp426008992-46] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{WRITING}->null:IDLE-->WRITING -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "HTTP/1.1 201 Created[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "Content-Type: application/json[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "1AE[\r][\n]" -13:18:23.176 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=55/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,430 of 430},g=HttpGenerator@155c3f9e{s=COMMITTED}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=55} -13:18:23.176 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << HTTP/1.1 201 Created -13:18:23.176 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << Content-Type: application/json -13:18:23.176 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << Transfer-Encoding: chunked -13:18:23.176 [Test worker] DEBUG org.apache.http.headers - http-outgoing-1 << Server: Jetty(9.4.28.v20200408) -13:18:23.176 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 430 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,430 of 430},g=HttpGenerator@155c3f9e{s=COMMITTED}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=55} -13:18:23.176 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "{[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "id" : "80f785a6-cc11-4a27-a56f-35a2d569e527",[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "request" : {[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "method" : "GET",[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "headers" : {[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "Authorization" : {[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " }[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " }[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " },[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "response" : {[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "status" : 401[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " },[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "uuid" : "80f785a6-cc11-4a27-a56f-35a2d569e527",[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << " "requiredScenarioState" : "logged"[\r][\n]" -13:18:23.176 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "}" -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=552 remaining=0 WriteFlusher@4b8dafc{WRITING}->null -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{IDLE}->null:WRITING-->IDLE -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@472994d5] ([p=122,l=122,c=8192,r=0],[p=430,l=430,c=32768,r=0],false)@COMMITTED -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@25f00a64{null} -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@25f00a64{null} -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d125a7e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d125a7e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d125a7e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4b8dafc{IDLE}->null [HeapByteBuffer@420070ff[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.177 [qtp426008992-46] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{WRITING}->null:IDLE-->WRITING -13:18:23.177 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]" -13:18:23.177 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "0[\r][\n]" -13:18:23.177 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]" -13:18:23.177 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 1][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:23.177 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-1: set socket timeout to 0 -13:18:23.178 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 1][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=END,430 of 430},g=HttpGenerator@155c3f9e{s=COMPLETING}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=57} -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@4b8dafc{WRITING}->null -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4b8dafc{IDLE}->null:WRITING-->IDLE -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d4dd207[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d125a7e] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@5365ffe2 in null -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=57} -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@24325ee7{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@24325ee7{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=57} -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@58ac1e7f) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@24325ee7{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@24325ee7{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@24325ee7{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.178 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=57} -13:18:23.179 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=430 -13:18:23.179 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@24325ee7{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.179 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,430 of 430} -13:18:23.179 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:23.179 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.179 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.179 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5776e38e] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:23.180 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.181 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.181 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:23.182 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.182 [reactor-http-nio-2] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xc0251bc0] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:23.182 [qtp426008992-46] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.183 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:23.184 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:23.184 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:23.184 [qtp426008992-48-acceptor-1@506f3059-NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@39e397a0 on ManagedSelector@4453c158{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:23.184 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:23.184 [qtp426008992-48-acceptor-1@506f3059-NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4453c158{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:23.184 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:23.184 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken with none selected -13:18:23.184 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 0/0/0 selected -13:18:23.184 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 0 keys, 1 updates -13:18:23.184 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:23.184 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@39e397a0 -13:18:23.184 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@39e397a0 startThread=0 -13:18:23.184 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:23.184 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.184 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 1 keys -13:18:23.184 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:23.185 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:23.185 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.185 [qtp426008992-46] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.185 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:23.186 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@39e397a0 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:23.186 [qtp426008992-51] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:23.186 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:23.186 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.186 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:23.187 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.187 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.187 [qtp426008992-46] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@726e0c64{AC.ReadCB@aea33ab{HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:23.187 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.187 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/1,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.187 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@441da1a8 on ManagedSelector@48ded463{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:23.187 [qtp426008992-51] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:23.187 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@48ded463{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:23.187 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken with none selected -13:18:23.187 [qtp426008992-46] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/1,kio=0,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:23.187 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.187 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 0/0/1 selected -13:18:23.187 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 0 keys, 1 updates -13:18:23.187 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@5a71a3ed in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:23.187 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:23.187 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@441da1a8 -13:18:23.187 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@43ed34f3 on ManagedSelector@4453c158{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:23.187 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4453c158{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:23.188 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.188 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.188 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 1 keys -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken with none selected -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 0/0/1 selected -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 0 keys, 1 updates -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@43ed34f3 -13:18:23.188 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.188 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@39e397a0 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 1 keys -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 1/1/1 selected -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 1 keys, 0 updates -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64982], selector=sun.nio.ch.WindowsSelectorImpl@16bcf70e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.188 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:23.189 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0} tryExecute EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:23.1883937+02:00 -13:18:23.189 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0}@6ab295a2 offer EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:23.1894051+02:00 -13:18:23.189 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1} startReservedThread p=1 -13:18:23.189 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@126c668c{s=0/1,p=1}@1c449c7e startThread=0 -13:18:23.189 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:23.1894051+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:23.189 [qtp426008992-45] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:23.189 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:23.190 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@a250024[p=0,l=157,c=8192,r=157]={<<>>he-HttpCl...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.190 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1}@6ab295a2 task=EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:23.1894051+02:00 -13:18:23.190 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@a250024[p=0,l=157,c=8192,r=157]={<<>>he-HttpCl...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.190 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=157,c=8192,r=157]={<<>>he-HttpCl...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.190 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=157,c=8192,r=157]={<<>>he-HttpCl...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.190 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:23.190 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:23.190 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:23.190 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:23.191 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:23.1904017+02:00 tryProduce true -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:23.191 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:23.191 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:23.191 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:23.191 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=HEADER,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.191 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 1 keys -13:18:23.192 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:23.192 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:23.192 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:23.192 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:23.192 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.193 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:23.193 [qtp426008992-45] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:23.193 [qtp426008992-45] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:23.193 [qtp426008992-45] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@59461192 in null -13:18:23.193 [qtp426008992-45] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:23.193 [qtp426008992-45] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:23.193 [qtp426008992-45] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:23.193 [qtp426008992-45] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:23.193 [qtp426008992-45] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@28339933 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c -13:18:23.193 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@126c668c{s=0/1,p=1}@1c449c7e in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}] -13:18:23.194 [qtp426008992-45] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:23.194 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=1}@1c449c7e started -13:18:23.194 [qtp426008992-45] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:23.194 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@1c449c7e waiting -13:18:23.194 [qtp426008992-45] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.194 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.194 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@685569cf[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} parsed false HttpParser{s=END,0 of -1} -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:23.195 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.200 [qtp426008992-45] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@50cabfd7 exclude by status 401 -13:18:23.200 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@3969eedd{null} -13:18:23.200 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=9} -401 null HTTP/1.1 -Matched-Stub-Id: 9f3b9445-bf21-4453-a6e8-79ba3d4d83b2 - - -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4e7f09b8] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 9f3b9445-bf21-4453-a6e8-79ba3d4d83b2 - - -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4e7f09b8] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4bce33a7{IDLE}->null [HeapByteBuffer@a250024[p=0,l=145,c=8192,r=145]={<<>> Bearer \r...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{WRITING}->null:IDLE-->WRITING -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=11/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=COMMITTED}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=10} -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@4bce33a7{WRITING}->null -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{IDLE}->null:WRITING-->IDLE -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4e7f09b8] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@3969eedd{null} -13:18:23.201 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@3969eedd{null} -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d273305] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d273305] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d273305] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4bce33a7{IDLE}->null [HeapByteBuffer@420070ff[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{WRITING}->null:IDLE-->WRITING -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=COMPLETING}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=11} -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@4bce33a7{WRITING}->null -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{IDLE}->null:WRITING-->IDLE -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d273305] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=11} -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=11} -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@8231771) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.202 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=12} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.203 [qtp426008992-45] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.204 [qtp426008992-45] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:23.204 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.204 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@43ed34f3 on ManagedSelector@4453c158{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:23.204 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4453c158{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:23.204 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:23.204 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken with none selected -13:18:23.204 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 0/0/1 selected -13:18:23.204 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 0 keys, 1 updates -13:18:23.204 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:23.204 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@43ed34f3 -13:18:23.204 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=9f3b9445-bf21-4453-a6e8-79ba3d4d83b2, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:23.204 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.204 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:23.204 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.204 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 1 keys -13:18:23.205 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5776e38e] Response 401 UNAUTHORIZED -13:18:23.205 [reactor-http-nio-2] DEBUG reactor.netty.channel.FluxReceive - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:23.206 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:23.206 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@125d8521 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:23.208 [reactor-http-nio-2] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:23.210 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [20834564] HTTP POST http://localhost:8080/api/v0/components/login -13:18:23.211 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038] Created a new pooled channel, now 2 active connections and 0 inactive connections -13:18:23.211 [reactor-http-nio-2] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x1fcc8038] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:23.211 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:23.211 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:23.211 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:23.211 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:23.211 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:23.212 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Channel cleaned, now 1 active connections and 1 inactive connections -13:18:23.213 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:23.213 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 1 inactive connections -13:18:23.213 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:23.213 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:23.213 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:23.213 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:23.213 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:23.213 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:23.214 [reactor-http-nio-2] DEBUG org.springframework.core.codec.CharSequenceEncoder - [20834564] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:23.215 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:23.217 [qtp426008992-48-acceptor-1@506f3059-NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@3ddc0444 on ManagedSelector@48ded463{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:23.217 [qtp426008992-48-acceptor-1@506f3059-NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@48ded463{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:23.217 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken with none selected -13:18:23.217 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 0/0/1 selected -13:18:23.217 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 0 keys, 1 updates -13:18:23.217 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:23.217 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@3ddc0444 -13:18:23.218 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@3ddc0444 startThread=0 -13:18:23.218 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.218 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 2 keys -13:18:23.218 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@3ddc0444 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:23.218 [qtp426008992-51] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:23.218 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.218 [qtp426008992-51] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:23.219 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.219 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.219 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.219 [qtp426008992-51] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@10e4720e{AC.ReadCB@45006067{HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:23.219 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.219 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@7bb175ed on ManagedSelector@48ded463{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:23.219 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@48ded463{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:23.219 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken with none selected -13:18:23.219 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.219 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 0/0/2 selected -13:18:23.219 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 0 keys, 1 updates -13:18:23.219 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:23.219 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@3ddc0444 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:23.219 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@7bb175ed -13:18:23.219 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.220 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.220 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 2 keys -13:18:23.220 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 1/1/2 selected -13:18:23.220 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 1 keys, 0 updates -13:18:23.220 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64983], selector=sun.nio.ch.WindowsSelectorImpl@25487540, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.220 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.220 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:23.220 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0} tryExecute EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:23.2203985+02:00 -13:18:23.220 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0}@1c449c7e offer EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:23.2203985+02:00 -13:18:23.221 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1} startReservedThread p=1 -13:18:23.221 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@126c668c{s=0/1,p=1}@6b65c94c startThread=0 -13:18:23.221 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@126c668c{s=0/1,p=1}@6b65c94c in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}] -13:18:23.221 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=1}@6b65c94c started -13:18:23.221 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@6b65c94c waiting -13:18:23.221 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:23.2213975+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:23.221 [qtp426008992-50] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@10e4720e{AC.ReadCB@45006067{HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:23.221 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:23.221 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.221 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:23.222 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@1c449c7e task=EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:23.2223889+02:00 -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:23.222 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@696ae568 in null -13:18:23.223 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:23.223 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:23.223 [qtp426008992-50] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.223 [qtp426008992-50] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.223 [qtp426008992-50] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:23.223 [qtp426008992-50] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} parse HeapByteBuffer@a250024[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@a250024[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} Content@4053190c{HeapByteBufferR@525f7210[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1735eebe[c=0,q=0,[0]=null,s=STREAM] addContent Content@4053190c{HeapByteBufferR@525f7210[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1735eebe[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=END,51 of 51},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parsed false HttpParser{s=END,51 of 51} -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1735eebe[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@4053190c{HeapByteBufferR@525f7210[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00}} -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=END,51 of 51},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:23.224 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@294a1895[p=0,l=21,c=8192,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@7109efc9[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/login)@696ae568 -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@58efdc0a exclude no deflater -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@7109efc9[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@609789b7{null} -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: a6c70f28-7a2a-492a-8f13-402457cfa7e5 -Vary: Accept-Encoding, User-Agent - - -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@27a978d2] (null,[p=0,l=21,c=32768,r=21],false)@START -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@7109efc9[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: a6c70f28-7a2a-492a-8f13-402457cfa7e5 -Vary: Accept-Encoding, User-Agent - - -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@27a978d2] ([p=0,l=206,c=8192,r=206],[p=0,l=21,c=32768,r=21],false)@COMMITTED -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@180efa1{IDLE}->null [HeapByteBuffer@a250024[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@7109efc9[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.230 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@180efa1{WRITING}->null:IDLE-->WRITING -13:18:23.231 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=9/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=END,51 of 51},g=HttpGenerator@29079eee{s=COMMITTED}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=9} -13:18:23.231 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 21 NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=END,51 of 51},g=HttpGenerator@29079eee{s=COMMITTED}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=9} -13:18:23.231 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=227 remaining=0 WriteFlusher@180efa1{WRITING}->null -13:18:23.231 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@180efa1{IDLE}->null:WRITING-->IDLE -13:18:23.231 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@27a978d2] ([p=206,l=206,c=8192,r=0],[p=21,l=21,c=32768,r=0],false)@COMMITTED -13:18:23.231 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.231 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@609789b7{null} -13:18:23.231 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@609789b7{null} -13:18:23.231 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5d861417] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5d861417] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5d861417] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@180efa1{IDLE}->null [HeapByteBuffer@420070ff[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@180efa1{WRITING}->null:IDLE-->WRITING -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=END,51 of 51},g=HttpGenerator@29079eee{s=COMPLETING}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@180efa1{WRITING}->null -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@180efa1{IDLE}->null:WRITING-->IDLE -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5d861417] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@6f608bd4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:23.232 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@4126989c) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@6f608bd4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@6f608bd4{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@6f608bd4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=11} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=21 -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@6f608bd4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,51 of 51} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.233 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:23.234 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:23.234 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:23.234 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.234 [qtp426008992-50] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.234 [qtp426008992-50] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@10e4720e{AC.ReadCB@45006067{HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:23.234 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.234 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:23.235 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=a6c70f28-7a2a-492a-8f13-402457cfa7e5, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:23.235 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:23.235 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [20834564] Response 200 OK -13:18:23.236 [reactor-http-nio-2] DEBUG reactor.netty.channel.FluxReceive - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:23.236 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:23.236 [reactor-http-nio-2] DEBUG org.springframework.core.codec.StringDecoder - [20834564] Decoded "{"token":"someToken"}" -13:18:23.237 [reactor-http-nio-2] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient logged successfully -13:18:23.237 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:23.237 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:23.238 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:23.238 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:23.238 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:23.238 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:23.238 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:23.238 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:23.2343962+02:00 tryProduce true -13:18:23.238 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:23.238 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@1c449c7e size 1 > capacity -13:18:23.238 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@126c668c{s=1/1,p=0}@1c449c7e in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:23.238 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=1/1,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:23.238 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 2 keys -13:18:24.144 [parallel-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5776e38e] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:24.149 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 1 inactive connections -13:18:24.149 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:24.150 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:24.150 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:24.150 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:24.152 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:24.152 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 1/1/1 selected -13:18:24.153 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 1 keys, 0 updates -13:18:24.153 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64982], selector=sun.nio.ch.WindowsSelectorImpl@16bcf70e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=949/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.153 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=949/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.154 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=949/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:24.154 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0} tryExecute EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:24.1542597+02:00 -13:18:24.154 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0}@6b65c94c offer EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:24.1542597+02:00 -13:18:24.154 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1} startReservedThread p=1 -13:18:24.154 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@126c668c{s=0/1,p=1}@3ba7947e startThread=0 -13:18:24.155 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:24.1542597+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=951/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:24.155 [qtp426008992-52] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=951/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:24.155 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=951/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 166 HeapByteBuffer@a250024[p=0,l=166,c=8192,r=166]={<<>>\nServer: ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 166 HeapByteBuffer@a250024[p=0,l=166,c=8192,r=166]={<<>>\nServer: ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=166,c=8192,r=166]={<<>>\nServer: ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=166,c=8192,r=166]={<<>>\nServer: ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:24.156 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer someToken - - -13:18:24.157 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:24.157 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:24.157 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:24.157 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:24.157 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:24.157 [qtp426008992-52] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:24.158 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:24.159 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@59461192 in null -13:18:24.159 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:24.159 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:24.161 [qtp426008992-52] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:24.161 [qtp426008992-52] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:24.161 [qtp426008992-52] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:24.161 [qtp426008992-52] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:24.162 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.163 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=8} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=8} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=8} -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=8} -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@685569cf[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=8} parsed false HttpParser{s=END,0 of -1} -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=8} -13:18:24.164 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:24.171 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@35606d7a exclude by status 401 -13:18:24.171 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@3969eedd{null} -13:18:24.172 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=16} -401 null HTTP/1.1 -Matched-Stub-Id: 80f785a6-cc11-4a27-a56f-35a2d569e527 - - -13:18:24.175 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@315fff0e] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:24.176 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:24.176 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 80f785a6-cc11-4a27-a56f-35a2d569e527 - - -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@315fff0e] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4bce33a7{IDLE}->null [HeapByteBuffer@a250024[p=0,l=145,c=8192,r=145]={<<>> Bearer s...\x00\x00\x00\x00\x00\x00\x00}] -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{WRITING}->null:IDLE-->WRITING -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=21/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=COMMITTED}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=21} -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@4bce33a7{WRITING}->null -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{IDLE}->null:WRITING-->IDLE -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@315fff0e] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@3969eedd{null} -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@3969eedd{null} -13:18:24.177 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@745d6741] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:24.178 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@745d6741] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:24.178 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@745d6741] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:24.178 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4bce33a7{IDLE}->null [HeapByteBuffer@420070ff[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:24.178 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{WRITING}->null:IDLE-->WRITING -13:18:24.178 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=COMPLETING}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=22} -13:18:24.178 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@4bce33a7{WRITING}->null -13:18:24.178 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{IDLE}->null:WRITING-->IDLE -13:18:24.178 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@745d6741] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=23} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=23} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@735e19d0) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=23} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.179 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:24.180 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:24.181 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.181 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 1 keys -13:18:24.181 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=80f785a6-cc11-4a27-a56f-35a2d569e527, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:24.182 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:24.182 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5776e38e] Response 401 UNAUTHORIZED -13:18:24.183 [reactor-http-nio-2] DEBUG reactor.netty.channel.FluxReceive - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:24.183 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:24.185 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:24.185 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:24.185 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:24.185 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:24.185 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:24.186 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:24.246 [parallel-1] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:24.252 [parallel-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [78ed6210] HTTP POST http://localhost:8080/api/v0/components/login -13:18:24.253 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 1 inactive connections -13:18:24.253 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@126c668c{s=0/1,p=1}@3ba7947e in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}] -13:18:24.253 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:24.253 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:24.254 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:24.254 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=1}@3ba7947e started -13:18:24.254 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@3ba7947e waiting -13:18:24.254 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:24.254 [reactor-http-nio-2] DEBUG org.springframework.core.codec.CharSequenceEncoder - [78ed6210] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:24.256 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:24.256 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 1/1/2 selected -13:18:24.256 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 1 keys, 0 updates -13:18:24.256 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64983], selector=sun.nio.ch.WindowsSelectorImpl@25487540, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1022/30000}{io=1/1,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.256 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1022/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.257 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1022/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:24.257 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0} tryExecute EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/REPRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:24.2572519+02:00 -13:18:24.257 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0}@3ba7947e offer EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/REPRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:24.2572519+02:00 -13:18:24.257 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1} startReservedThread p=1 -13:18:24.257 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@126c668c{s=0/1,p=1}@2da50782 startThread=0 -13:18:24.257 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:24.2572519+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1023/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:24.257 [qtp426008992-50] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@10e4720e{AC.ReadCB@45006067{HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1023/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:24.258 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1023/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:24.259 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.259 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.260 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:24.260 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.260 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:24.260 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:24.260 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:24.260 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:24.260 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:24.261 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:24.262 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:24.262 [qtp426008992-50] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:24.262 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:24.262 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@696ae568 in null -13:18:24.262 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:24.262 [qtp426008992-50] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:24.262 [qtp426008992-50] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:24.263 [qtp426008992-50] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:24.263 [qtp426008992-50] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:24.263 [qtp426008992-50] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=3} parse HeapByteBuffer@a250024[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@a250024[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=3} Content@2bde1870{HeapByteBufferR@469587b0[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00}} -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1735eebe[c=0,q=0,[0]=null,s=STREAM] addContent Content@2bde1870{HeapByteBufferR@469587b0[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00}} -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=3} -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=3} -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1735eebe[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:24.264 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=END,51 of 51},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=3} parsed false HttpParser{s=END,51 of 51} -13:18:24.265 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1735eebe[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@2bde1870{HeapByteBufferR@469587b0[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00}} -13:18:24.265 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@45006067[p=HttpParser{s=END,51 of 51},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=4} -13:18:24.265 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:24.266 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1}@3ba7947e task=EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:24.2632407+02:00 -13:18:24.268 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:24.268421+02:00 tryProduce true -13:18:24.268 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:24.268 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:24.268 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@45006067[p=HttpParser{s=END,51 of 51},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=7} -13:18:24.268 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 2 keys -13:18:24.269 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1}@6b65c94c task=EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:24.2692409+02:00 -13:18:24.316 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:24.3162346+02:00 tryProduce true -13:18:24.316 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=1}@6b65c94c waiting -13:18:24.372 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@126c668c{s=1/1,p=1}@2da50782 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=1}] -13:18:24.372 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=1}@2da50782 size 1 > capacity -13:18:24.372 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@126c668c{s=1/1,p=0}@2da50782 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:24.397 [qtp426008992-50] ERROR WireMock - - Request was not matched - ======================= - ------------------------------------------------------------------------------------------------------------------------ -| Closest stub | Request | ------------------------------------------------------------------------------------------------------------------------ - | -POST | POST -/api/v0/components/login | /api/v0/components/login - | -Content-Type: application/json | Content-Type: application/json - | - | ------------------------------------------------------------------------------------------------------------------------ - -13:18:24.400 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - sendError HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0} -13:18:24.402 [qtp426008992-50] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=true i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=141} -13:18:24.402 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=true i=true al=0} -13:18:24.402 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) SEND_ERROR HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=false al=0} -13:18:24.403 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - action SEND_ERROR HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=false al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=142} -13:18:24.405 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - Could not perform ERROR dispatch, aborting -java.lang.NullPointerException: null - at com.github.tomakehurst.wiremock.jetty9.NotFoundHandler.handle(NotFoundHandler.java:37) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$3(HttpChannel.java:423) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:421) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:24.406 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - completing HttpChannelState@6f608bd4{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=false al=0} -13:18:24.406 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=null complete=true committing=true callback=org.eclipse.jetty.util.Callback$4@6b325ec5 -13:18:24.407 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=COMPLETING os=COMMITTED is=READY awp=false se=false i=false al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=145} -404 null HTTP/1.1 - - -13:18:24.407 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=HTTP/1.1{s=404,h=0,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@29fee33c] (null,null,true)@START -13:18:24.407 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=404,h=0,cl=-1} last=true content=null -13:18:24.409 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpGenerator - - -13:18:24.411 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpGenerator - CONTENT_LENGTH -13:18:24.411 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=HTTP/1.1{s=404,h=0,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@29fee33c] ([p=0,l=78,c=8192,r=78],null,true)@COMPLETING -13:18:24.411 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@180efa1{IDLE}->null [HeapByteBuffer@a250024[p=0,l=78,c=8192,r=78]={<<>>\r\nhost: l...\x00\x00\x00\x00\x00\x00\x00}] -13:18:24.412 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@180efa1{WRITING}->null:IDLE-->WRITING -13:18:24.413 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Length=0, Server=Jetty(9.4.28.v20200408)] -13:18:24.413 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:24.413 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [78ed6210] Response 404 NOT_FOUND -13:18:24.414 [reactor-http-nio-2] DEBUG reactor.netty.channel.FluxReceive - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:24.414 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:24.416 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [78ed6210] Cancel signal (to close connection) -13:18:24.417 [reactor-http-nio-2] ERROR reactor.netty.channel.ChannelOperationsHandler - [id: 0x1fcc8038, L:/127.0.0.1:64983 - R:localhost/127.0.0.1:8080] Error was received while reading the incoming data. The connection will be closed. -reactor.core.Exceptions$ErrorCallbackNotImplemented: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login -Caused by: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - |_ checkpoint ? 404 from POST http://localhost:8080/api/v0/components/login [DefaultWebClient] -Stack trace: - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - at org.springframework.web.reactive.function.client.DefaultClientResponse.lambda$createException$1(DefaultClientResponse.java:206) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:100) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.FluxDefaultIfEmpty$DefaultIfEmptySubscriber.onComplete(FluxDefaultIfEmpty.java:100) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onComplete(FluxMapFuseable.java:144) - at reactor.core.publisher.FluxContextStart$ContextStartSubscriber.onComplete(FluxContextStart.java:115) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onComplete(FluxMapFuseable.java:336) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onComplete(FluxFilterFuseable.java:384) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1756) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:152) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:366) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:367) - at reactor.netty.channel.ChannelOperations.terminate(ChannelOperations.java:423) - at reactor.netty.http.client.HttpClientOperations.onInboundNext(HttpClientOperations.java:607) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:96) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:296) - at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:714) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:576) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:24.422 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 1 inactive connections -13:18:24.422 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1fcc8038, L:/127.0.0.1:64983 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x1fcc8038, L:/127.0.0.1:64983 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:24.422 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1fcc8038, L:/127.0.0.1:64983 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x1fcc8038, L:/127.0.0.1:64983 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:24.427 [reactor-http-nio-2] DEBUG io.netty.channel.AbstractChannelHandlerContext - An exception reactor.core.Exceptions$ErrorCallbackNotImplemented: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login -Caused by: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - |_ checkpoint ? 404 from POST http://localhost:8080/api/v0/components/login [DefaultWebClient] -Stack trace: - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - at org.springframework.web.reactive.function.client.DefaultClientResponse.lambda$createException$1(DefaultClientResponse.java:206) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:100) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.FluxDefaultIfEmpty$DefaultIfEmptySubscriber.onComplete(FluxDefaultIfEmpty.java:100) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onComplete(FluxMapFuseable.java:144) - at reactor.core.publisher.FluxContextStart$ContextStartSubscriber.onComplete(FluxContextStart.java:115) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onComplete(FluxMapFuseable.java:336) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onComplete(FluxFilterFuseable.java:384) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1756) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:152) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:366) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:367) - at reactor.netty.channel.ChannelOperations.terminate(ChannelOperations.java:423) - at reactor.netty.http.client.HttpClientOperations.onInboundNext(HttpClientOperations.java:607) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:96) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:296) - at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:714) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:576) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:834) -was thrown by a user handler's exceptionCaught() method while handling the following exception: -reactor.core.Exceptions$ErrorCallbackNotImplemented: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login -Caused by: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - |_ checkpoint ? 404 from POST http://localhost:8080/api/v0/components/login [DefaultWebClient] -Stack trace: - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - at org.springframework.web.reactive.function.client.DefaultClientResponse.lambda$createException$1(DefaultClientResponse.java:206) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:100) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.FluxDefaultIfEmpty$DefaultIfEmptySubscriber.onComplete(FluxDefaultIfEmpty.java:100) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onComplete(FluxMapFuseable.java:144) - at reactor.core.publisher.FluxContextStart$ContextStartSubscriber.onComplete(FluxContextStart.java:115) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onComplete(FluxMapFuseable.java:336) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onComplete(FluxFilterFuseable.java:384) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1756) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:152) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:366) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:367) - at reactor.netty.channel.ChannelOperations.terminate(ChannelOperations.java:423) - at reactor.netty.http.client.HttpClientOperations.onInboundNext(HttpClientOperations.java:607) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:96) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:296) - at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:714) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:576) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:24.432 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1fcc8038, L:/127.0.0.1:64983 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x1fcc8038, L:/127.0.0.1:64983 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:24.433 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 78 NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=153/30000}{io=0/0,kio=0,kro=1}->HttpConnection@45006067[p=HttpParser{s=END,51 of 51},g=HttpGenerator@29079eee{s=COMPLETING}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=HANDLING rs=COMPLETING os=COMMITTED is=READY awp=false se=false i=false al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=172} -13:18:24.433 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=78 remaining=0 WriteFlusher@180efa1{WRITING}->null -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@180efa1{IDLE}->null:WRITING-->IDLE -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@19e0bb80[PROCESSING][i=HTTP/1.1{s=404,h=0,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@29fee33c] ([p=78,l=78,c=8192,r=0],null,true)@END -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@6f608bd4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@6f608bd4{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@6f608bd4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=173} -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=0 -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@6f608bd4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,51 of 51} -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.434 [qtp426008992-50] DEBUG org.eclipse.jetty.io.AbstractEndPoint - shutdownInput NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.435 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled -1 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.435 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - atEOF HttpParser{s=START,0 of -1} -13:18:24.435 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,ISHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled -1 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.435 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,ISHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@45006067[p=HttpParser{s=START,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:24.435 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:24.435 [qtp426008992-50] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSED -13:18:24.435 [qtp426008992-50] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,ISHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@45006067[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.435 [qtp426008992-50] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,ISHUT,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@45006067[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.436 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@45006067[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.436 [qtp426008992-50] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@10e4720e{null} -13:18:24.436 [qtp426008992-50] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@48ded463{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:24.436 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken with none selected -13:18:24.436 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 0/0/1 selected -13:18:24.436 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 0 keys, 0 updates -13:18:24.436 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:24.437 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:24.437 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 1 keys -13:18:24.437 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@68d06b23 startThread=0 -13:18:24.438 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@45006067[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=CLOSED,0 of -1} -13:18:24.439 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=4/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@45006067[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.439 [qtp426008992-50] DEBUG org.eclipse.jetty.io.AbstractEndPoint - shutdownOutput NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=5/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@45006067[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.439 [qtp426008992-50] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=5/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@45006067[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:24.439 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@2fb01e30 size 1 > capacity -13:18:24.439 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@68d06b23 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:24.441 [qtp426008992-46] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@45006067[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.442 [qtp426008992-46] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@45006067::NetworkTrafficSocketChannelEndPoint@5d863db4{/127.0.0.1:64983<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@45006067[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@29079eee{s=START}]=>HttpChannelOverHttp@30012b73{s=HttpChannelState@6f608bd4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:24.442 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@68d06b23 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:24.442 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@126c668c{s=1/1,p=0}@2fb01e30 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.185 [parallel-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5776e38e] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:26.186 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 0 inactive connections -13:18:26.186 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:26.186 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:26.186 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:26.187 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:26.188 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:26.188 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 1/1/1 selected -13:18:26.188 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 1 keys, 0 updates -13:18:26.189 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64982], selector=sun.nio.ch.WindowsSelectorImpl@16bcf70e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2009/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.189 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2009/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.189 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2009/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:26.189 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0} tryExecute EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/REPRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:26.1899742+02:00 -13:18:26.189 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0}@6b65c94c offer EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/REPRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:26.1899742+02:00 -13:18:26.189 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1} startReservedThread p=1 -13:18:26.189 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@126c668c{s=0/1,p=1}@45e3b17c startThread=0 -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:26.1899742+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2010/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2010/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2010/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 166 HeapByteBuffer@a250024[p=0,l=166,c=8192,r=166]={<<>>\n\r\n{"pass...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 166 HeapByteBuffer@a250024[p=0,l=166,c=8192,r=166]={<<>>\n\r\n{"pass...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=166,c=8192,r=166]={<<>>\n\r\n{"pass...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=166,c=8192,r=166]={<<>>\n\r\n{"pass...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:26.190 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:26.191 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1}@6b65c94c task=EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:26.1909822+02:00 -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:26.191 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:26.1919843+02:00 tryProduce true -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:26.191 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:26.191 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization: Bearer someToken --> IN_VALUE -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization: Bearer someToken --> FIELD -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:26.191 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer someToken - - -13:18:26.191 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 1 keys -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:26.191 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@126c668c{s=0/1,p=1}@45e3b17c in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}] -13:18:26.191 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=1}@45e3b17c started -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:26.191 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@45e3b17c waiting -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@59461192 in null -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:26.191 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:26.192 [qtp426008992-52] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:26.192 [qtp426008992-52] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:26.192 [qtp426008992-52] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:26.192 [qtp426008992-52] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:26.193 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.193 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@685569cf[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:26.194 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@b0a9141 exclude by status 401 -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@3969eedd{null} -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=5} -401 null HTTP/1.1 -Matched-Stub-Id: 80f785a6-cc11-4a27-a56f-35a2d569e527 - - -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1472980e] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 80f785a6-cc11-4a27-a56f-35a2d569e527 - - -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1472980e] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4bce33a7{IDLE}->null [HeapByteBuffer@a250024[p=0,l=145,c=8192,r=145]={<<>> Bearer s...\x00\x00\x00\x00\x00\x00\x00}] -13:18:26.196 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{WRITING}->null:IDLE-->WRITING -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=COMMITTED}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=6} -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@4bce33a7{WRITING}->null -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{IDLE}->null:WRITING-->IDLE -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1472980e] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@3969eedd{null} -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@3969eedd{null} -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@17e193c9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@17e193c9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@17e193c9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4bce33a7{IDLE}->null [HeapByteBuffer@420070ff[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:26.197 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{WRITING}->null:IDLE-->WRITING -13:18:26.197 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=80f785a6-cc11-4a27-a56f-35a2d569e527, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:26.197 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ed27700{s=COMPLETING}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:26.198 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5776e38e] Response 401 UNAUTHORIZED -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@4bce33a7{WRITING}->null -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{IDLE}->null:WRITING-->IDLE -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@17e193c9] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@4fd1a818) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:26.198 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.198 [reactor-http-nio-2] DEBUG reactor.netty.channel.FluxReceive - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.199 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@43ed34f3 on ManagedSelector@4453c158{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:26.199 [qtp426008992-52] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4453c158{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:26.200 [qtp426008992-52] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:26.200 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken with none selected -13:18:26.200 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@6ab295a2 size 1 > capacity -13:18:26.200 [qtp426008992-52] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@126c668c{s=1/1,p=0}@6ab295a2 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.200 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 0/0/1 selected -13:18:26.200 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 0 keys, 1 updates -13:18:26.200 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:26.200 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@43ed34f3 -13:18:26.200 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.200 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.200 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 1 keys -13:18:26.201 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:26.201 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:26.201 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:26.201 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:26.201 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:26.201 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 1 inactive connections -13:18:26.206 [parallel-2] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:26.208 [parallel-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [1dc8dffa] HTTP POST http://localhost:8080/api/v0/components/login -13:18:26.211 [parallel-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5776e38e] Cancel signal (to close connection) -13:18:26.211 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 0 inactive connections -13:18:26.212 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:26.212 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:26.212 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:26.212 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:26.213 [reactor-http-nio-2] DEBUG org.springframework.core.codec.CharSequenceEncoder - [1dc8dffa] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:26.214 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 1/1/1 selected -13:18:26.214 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:26.214 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 1 keys, 0 updates -13:18:26.215 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64982], selector=sun.nio.ch.WindowsSelectorImpl@16bcf70e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=15/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.215 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=15/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.215 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=15/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:26.215 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0} tryExecute EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:26.2159843+02:00 -13:18:26.215 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0}@45e3b17c offer EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:26.2159843+02:00 -13:18:26.215 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=1} startReservedThread p=1 -13:18:26.215 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@126c668c{s=0/1,p=1}@3ea7ed04 startThread=0 -13:18:26.215 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:26.2159843+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=16/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=16/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=16/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@a250024[p=0,l=220,c=8192,r=220]={<<>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:26.216 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,AVAILABLE} -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3867a06c{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@59461192 in null -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@3ff531df{/,null,AVAILABLE} -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:26.217 [qtp426008992-45] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:26.218 [qtp426008992-45] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:26.218 [qtp426008992-45] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:26.218 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} parse HeapByteBuffer@a250024[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:26.218 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@a250024[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.218 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} Content@44ea27c{HeapByteBufferR@f506eb[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00}} -13:18:26.218 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@685569cf[c=0,q=0,[0]=null,s=STREAM] addContent Content@44ea27c{HeapByteBufferR@f506eb[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00}} -13:18:26.218 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:26.218 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:26.218 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:26.219 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:26.219 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@685569cf[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:26.219 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parsed false HttpParser{s=END,51 of 51} -13:18:26.219 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@685569cf[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@44ea27c{HeapByteBufferR@f506eb[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>1-4a27-a5...\x00\x00\x00\x00\x00\x00\x00}} -13:18:26.219 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:26.219 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:26.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@554348da{STARTED}[9.4.28.v20200408] -13:18:26.228 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@554348da{STOPPING}[9.4.28.v20200408] -13:18:26.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@48ded463{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:26.228 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@4440fdd7 on ManagedSelector@48ded463{STOPPING} id=1 keys=1 selected=0 updates=0 -13:18:26.228 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@48ded463{STOPPING} id=1 keys=1 selected=0 updates=1 -13:18:26.228 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken with none selected -13:18:26.228 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 0/0/1 selected -13:18:26.228 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 0 keys, 1 updates -13:18:26.228 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:26.229 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@4440fdd7 -13:18:26.229 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@48ded463{STOPPING} id=1 keys=1 selected=0 updates=0 -13:18:26.229 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3044/30000}{io=1/1,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.229 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3044/30000}{io=1/1,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.229 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=3044/30000}{io=1/1,kio=1,kro=1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.229 [qtp426008992-51] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@726e0c64{AC.ReadCB@aea33ab{HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=3044/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@aea33ab[p=HttpParser{s=START,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:26.229 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:26.229 [qtp426008992-51] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:26.230 [qtp426008992-51] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3045/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@aea33ab[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:26.230 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@48ded463{STOPPING} id=1 keys=1 selected=0 updates=0 -13:18:26.230 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@3df431a4 startThread=0 -13:18:26.230 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.230 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 waiting with 1 keys -13:18:26.230 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@126c668c{s=0/1,p=1}@3ea7ed04 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=0/1,p=1}] -13:18:26.230 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=1}@3ea7ed04 started -13:18:26.230 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@3ea7ed04 waiting -13:18:26.234 [qtp426008992-45] ERROR WireMock - - Request was not matched - ======================= - ------------------------------------------------------------------------------------------------------------------------ -| Closest stub | Request | ------------------------------------------------------------------------------------------------------------------------ - | -POST | POST -/api/v0/components/login | /api/v0/components/login - | -Content-Type: application/json | Content-Type: application/json - | - | ------------------------------------------------------------------------------------------------------------------------ - -13:18:26.237 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - sendError HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0} -13:18:26.237 [qtp426008992-45] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=true i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=20} -13:18:26.237 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=true i=true al=0} -13:18:26.237 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) SEND_ERROR HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=false al=0} -13:18:26.237 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - action SEND_ERROR HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=false al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=20} -13:18:26.237 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - Could not perform ERROR dispatch, aborting -java.lang.NullPointerException: null - at com.github.tomakehurst.wiremock.jetty9.NotFoundHandler.handle(NotFoundHandler.java:37) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$3(HttpChannel.java:423) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:421) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - completing HttpChannelState@ab9a50e{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=false al=0} -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=null complete=true committing=true callback=org.eclipse.jetty.util.Callback$4@107d011b -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMMITTED is=READY awp=false se=false i=false al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=21} -404 null HTTP/1.1 - - -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=404,h=0,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@113301dd] (null,null,true)@START -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=404,h=0,cl=-1} last=true content=null -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpGenerator - - -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpGenerator - EOF_CONTENT -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=404,h=0,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@113301dd] ([p=0,l=78,c=8192,r=78],null,true)@COMPLETING -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4bce33a7{IDLE}->null [HeapByteBuffer@a250024[p=0,l=78,c=8192,r=78]={<<>>\r\nhost: l...\x00\x00\x00\x00\x00\x00\x00}] -13:18:26.238 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{WRITING}->null:IDLE-->WRITING -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 78 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=22/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,51 of 51},g=HttpGenerator@7ed27700{s=COMPLETING}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMMITTED is=READY awp=false se=false i=false al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=22} -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=78 remaining=0 WriteFlusher@4bce33a7{WRITING}->null -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bce33a7{IDLE}->null:WRITING-->IDLE -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: SHUTDOWN_OUT for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=404,h=0,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@113301dd] ([p=78,l=78,c=8192,r=0],null,true)@END -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d2702c2[PROCESSING][i=HTTP/1.1{s=404,h=0,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@113301dd] ([p=78,l=78,c=8192,r=0],null,true)@END -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.io.AbstractEndPoint - shutdownOutput NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=END,51 of 51},g=HttpGenerator@7ed27700{s=END}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=true/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=22} -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@ab9a50e{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=22} -13:18:26.239 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=0 -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@ab9a50e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,51 of 51} -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CLOSE HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=CLOSE,51 of 51} -13:18:26.240 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.241 [qtp426008992-45] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.241 [qtp426008992-45] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:26.241 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.241 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:26.241 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:26.241 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.241 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.241 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Connection=close, Server=Jetty(9.4.28.v20200408)] -13:18:26.241 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 1 keys -13:18:26.241 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:26.241 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [1dc8dffa] Response 404 NOT_FOUND -13:18:26.243 [reactor-http-nio-2] DEBUG reactor.netty.channel.FluxReceive - [id: 0xc0251bc0, L:/127.0.0.1:64982 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:26.245 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 1/1/1 selected -13:18:26.245 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:26.245 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 1 keys, 0 updates -13:18:26.245 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0xc0251bc0, L:/127.0.0.1:64982 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:26.245 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/127.0.0.1:8080 remote=/127.0.0.1:64982], selector=sun.nio.ch.WindowsSelectorImpl@16bcf70e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=4/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.245 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xc0251bc0, L:/127.0.0.1:64982 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0xc0251bc0, L:/127.0.0.1:64982 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:26.245 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.245 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:26.245 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xc0251bc0, L:/127.0.0.1:64982 ! R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:26.246 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=4]@2020-09-25T13:18:26.2459659+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:26.246 [qtp426008992-45] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@43b70af{AC.ReadCB@2657044e{HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:26.246 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:26.246 [qtp426008992-45] DEBUG org.eclipse.jetty.io.AbstractEndPoint - shutdownInput NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.246 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.246 [qtp426008992-45] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@43b70af{null} -13:18:26.246 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@4453c158{STARTED} id=0 keys=1 selected=1 updates=0 -13:18:26.246 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@601f0cc5 startThread=1 -13:18:26.246 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp426008992-54,5,main] -13:18:26.247 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled -1 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.247 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - atEOF HttpParser{s=CLOSE,51 of 51} -13:18:26.247 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=6/30000}{io=1/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled -1 HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.247 [qtp426008992-45] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=6/30000}{io=1/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.247 [qtp426008992-45] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=6/30000}{io=1/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=6/30000}{io=1/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CLOSE HeapByteBuffer@a250024[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.http.HttpParser - CLOSE --> CLOSED -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=1/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSED,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=CLOSED,51 of 51} -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=1/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSED,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.io.AbstractEndPoint - shutdownOutput NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=1/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSED,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=1/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSED,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Ignoring key update for concurrently closed channel NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSED,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSED,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSED,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.248 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 1 keys -13:18:26.252 [qtp426008992-48] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp426008992-48-acceptor-1@506f3059-NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=0,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.252 [qtp426008992-48] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@3df431a4 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.252 [qtp426008992-48] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3067/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@aea33ab[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.252 [qtp426008992-48] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@aea33ab::NetworkTrafficSocketChannelEndPoint@6bc8b7d5{/127.0.0.1:64981<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3067/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@aea33ab[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@155c3f9e{s=START}]=>HttpChannelOverHttp@6130dca5{s=HttpChannelState@24325ee7{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.252 [qtp426008992-48] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@3df431a4 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.252 [qtp426008992-48] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@601f0cc5 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.253 [qtp426008992-48] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=11/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSED,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.253 [qtp426008992-48] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@2657044e::NetworkTrafficSocketChannelEndPoint@1e08cabe{/127.0.0.1:64982<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=12/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@2657044e[p=HttpParser{s=CLOSED,51 of 51},g=HttpGenerator@7ed27700{s=START}]=>HttpChannelOverHttp@1dccebee{s=HttpChannelState@ab9a50e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.253 [qtp426008992-48] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@601f0cc5 in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.296 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [1dc8dffa] Cancel signal (to close connection) -13:18:26.296 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@45e3b17c task=EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=3,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=5]@2020-09-25T13:18:26.2969587+02:00 -13:18:26.297 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/PRODUCING/p=true/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=3,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=5]@2020-09-25T13:18:26.2969587+02:00 tryProduce true -13:18:26.297 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@45e3b17c size 1 > capacity -13:18:26.297 [qtp426008992-46] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@126c668c{s=1/1,p=0}@45e3b17c in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=3,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.254 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@678217f5 on ManagedSelector@48ded463{STOPPING} id=1 keys=0 selected=0 updates=0 -13:18:26.297 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@48ded463{STOPPING} id=1 keys=0 selected=0 updates=1 -13:18:26.297 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken with none selected -13:18:26.297 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 woken up from select, 0/0/0 selected -13:18:26.297 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@25487540 processing 0 keys, 1 updates -13:18:26.297 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:26.297 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@678217f5 -13:18:26.296 [reactor-http-nio-2] ERROR reactor.netty.channel.ChannelOperationsHandler - [id: 0xc0251bc0, L:/127.0.0.1:64982 ! R:localhost/127.0.0.1:8080] Error was received while reading the incoming data. The connection will be closed. -reactor.core.Exceptions$ErrorCallbackNotImplemented: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login -Caused by: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - |_ checkpoint ? 404 from POST http://localhost:8080/api/v0/components/login [DefaultWebClient] -Stack trace: - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - at org.springframework.web.reactive.function.client.DefaultClientResponse.lambda$createException$1(DefaultClientResponse.java:206) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:100) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.FluxDefaultIfEmpty$DefaultIfEmptySubscriber.onComplete(FluxDefaultIfEmpty.java:100) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onComplete(FluxMapFuseable.java:144) - at reactor.core.publisher.FluxContextStart$ContextStartSubscriber.onComplete(FluxContextStart.java:115) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onComplete(FluxMapFuseable.java:336) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onComplete(FluxFilterFuseable.java:384) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1756) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:152) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:366) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:367) - at reactor.netty.channel.ChannelOperations.terminate(ChannelOperations.java:423) - at reactor.netty.http.client.HttpClientOperations.onInboundNext(HttpClientOperations.java:607) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:96) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) - at io.netty.handler.codec.ByteToMessageDecoder.channelInputClosed(ByteToMessageDecoder.java:383) - at io.netty.handler.codec.ByteToMessageDecoder.channelInactive(ByteToMessageDecoder.java:354) - at io.netty.handler.codec.http.HttpClientCodec$Decoder.channelInactive(HttpClientCodec.java:288) - at io.netty.channel.CombinedChannelDuplexHandler.channelInactive(CombinedChannelDuplexHandler.java:221) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:262) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:248) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:241) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelInactive(DefaultChannelPipeline.java:1405) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:262) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:248) - at io.netty.channel.DefaultChannelPipeline.fireChannelInactive(DefaultChannelPipeline.java:901) - at io.netty.channel.AbstractChannel$AbstractUnsafe$8.run(AbstractChannel.java:818) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:164) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:497) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:26.297 [qtp426008992-51] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.298 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@3ba7947e size 1 > capacity -13:18:26.298 [qtp426008992-51] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@126c668c{s=1/1,p=0}@3ba7947e in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=4,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.298 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/PRODUCING/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=4,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:26.2979565+02:00 -13:18:26.298 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@4c8c9eee/SelectorProducer@4614c16f/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=5,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:26.2989679+02:00 -13:18:26.298 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@48ded463{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:26.298 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@4453c158{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:26.298 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@76df132d on ManagedSelector@4453c158{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:26.298 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4453c158{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:26.298 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken with none selected -13:18:26.298 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 0/0/0 selected -13:18:26.298 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 0 keys, 1 updates -13:18:26.298 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:26.298 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@76df132d -13:18:26.298 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 0 connections on ManagedSelector@4453c158{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:26.298 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.298 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e waiting with 0 keys -13:18:26.298 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@1655e4eb on ManagedSelector@4453c158{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:26.298 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4453c158{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken with none selected -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e woken up from select, 0/0/0 selected -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@16bcf70e processing 0 keys, 1 updates -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@1655e4eb -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=1/1,p=0}@6b65c94c size 1 > capacity -13:18:26.299 [qtp426008992-45] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@126c668c{s=1/1,p=0}@6b65c94c in QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=5,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.299 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=6,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=5]@2020-09-25T13:18:26.2999653+02:00 -13:18:26.299 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@9b07444/SelectorProducer@6dcc6117/IDLE/p=false/QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=6,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=5]@2020-09-25T13:18:26.2999653+02:00 -13:18:26.299 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@4453c158{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@c35c8ed[HTTP/1.1] -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@c35c8ed[HTTP/1.1] -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@36792006{STARTED} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@36792006{STOPPED} -13:18:26.300 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@554348da{STOPPING}[9.4.28.v20200408] -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@21bd3fbb{STARTED} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@21bd3fbb{STOPPING} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@21bd3fbb{STOPPED} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@4d5fd7af{STARTED} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@4d5fd7af{STOPPING} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@3867a06c{STARTED,min=32,inflate=-1} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@3867a06c{STOPPING,min=32,inflate=-1} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@3ff531df{/,null,SHUTDOWN} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@3ff531df{/,null,UNAVAILABLE} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@258f2e8d{STARTED} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@258f2e8d{STOPPING} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@258f2e8d{STOPPED} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@4a80ba65{STARTED} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@4a80ba65{STOPPING} -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-1178684b@1178684b==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-4f909d2f@4f909d2f==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-4f909d2f@4f909d2f==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6a13fbcb@6a13fbcb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6a13fbcb@6a13fbcb==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7be4ba4c@9f5184b6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-6d8915eb@f6f3a3cf==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-6d8915eb@f6f3a3cf==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.300 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@4a80ba65{STOPPED} -13:18:26.301 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@3ff531df{/,null,UNAVAILABLE} -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@3ff531df{/,null,UNAVAILABLE} -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@3867a06c{STOPPED,min=32,inflate=-1} -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,SHUTDOWN} -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,UNAVAILABLE} -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@495b3d4a{STARTED} -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@495b3d4a{STOPPING} -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-426ca846@426ca846==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-524d6e28@93570ed0==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-e584c9e@9f934d04==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-e584c9e@9f934d04==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-128dfd21@9d0ce529==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-128dfd21@9d0ce529==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.299 [reactor-http-nio-2] DEBUG io.netty.channel.AbstractChannelHandlerContext - An exception reactor.core.Exceptions$ErrorCallbackNotImplemented: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login -Caused by: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - |_ checkpoint ? 404 from POST http://localhost:8080/api/v0/components/login [DefaultWebClient] -Stack trace: - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - at org.springframework.web.reactive.function.client.DefaultClientResponse.lambda$createException$1(DefaultClientResponse.java:206) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:100) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.FluxDefaultIfEmpty$DefaultIfEmptySubscriber.onComplete(FluxDefaultIfEmpty.java:100) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onComplete(FluxMapFuseable.java:144) - at reactor.core.publisher.FluxContextStart$ContextStartSubscriber.onComplete(FluxContextStart.java:115) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onComplete(FluxMapFuseable.java:336) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onComplete(FluxFilterFuseable.java:384) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1756) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:152) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:366) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:367) - at reactor.netty.channel.ChannelOperations.terminate(ChannelOperations.java:423) - at reactor.netty.http.client.HttpClientOperations.onInboundNext(HttpClientOperations.java:607) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:96) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) - at io.netty.handler.codec.ByteToMessageDecoder.channelInputClosed(ByteToMessageDecoder.java:383) - at io.netty.handler.codec.ByteToMessageDecoder.channelInactive(ByteToMessageDecoder.java:354) - at io.netty.handler.codec.http.HttpClientCodec$Decoder.channelInactive(HttpClientCodec.java:288) - at io.netty.channel.CombinedChannelDuplexHandler.channelInactive(CombinedChannelDuplexHandler.java:221) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:262) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:248) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:241) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelInactive(DefaultChannelPipeline.java:1405) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:262) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:248) - at io.netty.channel.DefaultChannelPipeline.fireChannelInactive(DefaultChannelPipeline.java:901) - at io.netty.channel.AbstractChannel$AbstractUnsafe$8.run(AbstractChannel.java:818) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:164) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:497) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:834) -was thrown by a user handler's exceptionCaught() method while handling the following exception: -reactor.core.Exceptions$ErrorCallbackNotImplemented: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login -Caused by: org.springframework.web.reactive.function.client.WebClientResponseException$NotFound: 404 Not Found from POST http://localhost:8080/api/v0/components/login - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - |_ checkpoint ? 404 from POST http://localhost:8080/api/v0/components/login [DefaultWebClient] -Stack trace: - at org.springframework.web.reactive.function.client.WebClientResponseException.create(WebClientResponseException.java:185) - at org.springframework.web.reactive.function.client.DefaultClientResponse.lambda$createException$1(DefaultClientResponse.java:206) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:100) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.FluxDefaultIfEmpty$DefaultIfEmptySubscriber.onComplete(FluxDefaultIfEmpty.java:100) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onComplete(FluxMapFuseable.java:144) - at reactor.core.publisher.FluxContextStart$ContextStartSubscriber.onComplete(FluxContextStart.java:115) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onComplete(FluxMapFuseable.java:336) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onComplete(FluxFilterFuseable.java:384) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1756) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:152) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:366) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:367) - at reactor.netty.channel.ChannelOperations.terminate(ChannelOperations.java:423) - at reactor.netty.http.client.HttpClientOperations.onInboundNext(HttpClientOperations.java:607) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:96) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) - at io.netty.handler.codec.ByteToMessageDecoder.channelInputClosed(ByteToMessageDecoder.java:383) - at io.netty.handler.codec.ByteToMessageDecoder.channelInactive(ByteToMessageDecoder.java:354) - at io.netty.handler.codec.http.HttpClientCodec$Decoder.channelInactive(HttpClientCodec.java:288) - at io.netty.channel.CombinedChannelDuplexHandler.channelInactive(CombinedChannelDuplexHandler.java:221) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:262) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:248) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:241) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelInactive(DefaultChannelPipeline.java:1405) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:262) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:248) - at io.netty.channel.DefaultChannelPipeline.fireChannelInactive(DefaultChannelPipeline.java:901) - at io.netty.channel.AbstractChannel$AbstractUnsafe$8.run(AbstractChannel.java:818) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:164) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:497) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:26.386 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xc0251bc0, L:/127.0.0.1:64982 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xc0251bc0, L:/127.0.0.1:64982 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:26.301 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@495b3d4a{STOPPED} -13:18:26.394 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,UNAVAILABLE} -13:18:26.394 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@5219ca04{/__admin,null,UNAVAILABLE} -13:18:26.394 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@4d5fd7af{STOPPED} -13:18:26.394 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=6,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.394 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp426008992]@196461a0{STOPPING,8<=9<=14,i=6,r=-1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.394 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@126c668c{s=1/1,p=0} -13:18:26.395 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=0/1,p=0}@3ea7ed04 offer STOP! -13:18:26.395 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@126c668c{s=-1/1,p=0} -13:18:26.395 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=6,r=-1,q=0}[NO_TRY] -13:18:26.395 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@554348da{STOPPED}[9.4.28.v20200408] -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1551d457{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@69b18ba6[HTTP/1.1] added {HttpConfiguration@1b556f2d{32768/8192,8192/8192,https://:0,[]},POJO} -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{null, ()}{0.0.0.0:0} added {Server@1551d457{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@461b4b25{STOPPED},AUTO} -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@231214fb,POJO} -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@69b18ba6[HTTP/1.1],AUTO} -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@69b18ba6[HTTP/1.1] -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:18:26.401 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1551d457{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:18:26.402 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1551d457{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,UNAVAILABLE},MANAGED} -13:18:26.402 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@50c3e8ad -13:18:26.402 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,UNAVAILABLE} added {ServletHandler@4c1dc3f3{STOPPED},MANAGED} -13:18:26.403 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1551d457{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@52601e0c{/,null,UNAVAILABLE},MANAGED} -13:18:26.403 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@1de02708 -13:18:26.403 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@52601e0c{/,null,UNAVAILABLE} added {ServletHandler@5582b731{STOPPED},MANAGED} -13:18:26.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@52601e0c{/,null,UNAVAILABLE} added {NotFoundHandler@73793946{STOPPED},MANAGED} -13:18:26.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@4cc212b8{STOPPED} added {o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,UNAVAILABLE},AUTO} -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@69acd89a{STOPPED,min=32,inflate=-1} mime types IncludeExclude@352750c5{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@69acd89a{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@52601e0c{/,null,UNAVAILABLE},MANAGED} -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@4cc212b8{STOPPED} added {GzipHandler@69acd89a{STOPPED,min=32,inflate=-1},AUTO} -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1551d457{STOPPED}[9.4.28.v20200408] added {HandlerCollection@4cc212b8{STOPPED},MANAGED} -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@1551d457{STOPPED}[9.4.28.v20200408] -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1551d457{STARTING}[9.4.28.v20200408] added {ErrorHandler@7b61e96{STOPPED},AUTO} -13:18:26.411 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@1551d457{STARTING}[9.4.28.v20200408] -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=0} -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp158982948]@979e324{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] added {ReservedThreadExecutor@2a8706d9{s=0/1,p=0},AUTO} -13:18:26.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@2a8706d9{s=0/1,p=0} -13:18:26.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57970ms ReservedThreadExecutor@2a8706d9{s=0/1,p=0} -13:18:26.412 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp158982948-55,5,main] -13:18:26.413 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp158982948-56,5,main] -13:18:26.413 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp158982948-57,5,main] -13:18:26.414 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp158982948-58,5,main] -13:18:26.415 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp158982948-59,5,main] -13:18:26.415 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp158982948-60,5,main] -13:18:26.416 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp158982948-61,5,main] -13:18:26.416 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp158982948-62,5,main] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57975ms QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@4cc212b8{STOPPED} -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@4cc212b8{STARTING} -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,UNAVAILABLE} -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,STARTING} -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@4c1dc3f3{STOPPED} -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-1d2a5cb4[EMBEDDED:null] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-1d2a5cb4@e786d981==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-7f9ba347[EMBEDDED:null] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-7f9ba347@ccada7ac==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c[EMBEDDED:null] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8=org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-7f9ba347=org.eclipse.jetty.servlet.DefaultServlet-7f9ba347@ccada7ac==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-1d2a5cb4=org.eclipse.jetty.servlet.DefaultServlet-1d2a5cb4@e786d981==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true} -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@4c1dc3f3{STARTING} -13:18:26.417 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57976ms ServletHandler@4c1dc3f3{STARTED} -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57976ms org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@6578223c -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57977ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-1d2a5cb4@e786d981==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57977ms org.eclipse.jetty.servlet.DefaultServlet-1d2a5cb4@e786d981==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-7f9ba347@ccada7ac==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57977ms org.eclipse.jetty.servlet.DefaultServlet-7f9ba347@ccada7ac==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.418 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57977ms o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@69acd89a{STOPPED,min=32,inflate=-1} -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@69acd89a{STARTING,min=32,inflate=-1} -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@52601e0c{/,null,UNAVAILABLE} -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@52601e0c{/,null,STARTING} -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@5582b731{STOPPED} -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-3d7f6203[EMBEDDED:null] -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-3d7f6203@c0179a3e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde[EMBEDDED:null] -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:26.418 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e=org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-33023327=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-33023327@33023327==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-75ab203e=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-75ab203e@75ab203e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-33023327, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-75ab203e, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e] -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-3d7f6203=org.eclipse.jetty.servlet.DefaultServlet-3d7f6203@c0179a3e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@5582b731{STARTING} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57977ms ServletHandler@5582b731{STARTED} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@73793946{STOPPED} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@73793946{STARTING} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms NotFoundHandler@73793946{STARTED} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-33023327@33023327==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-33023327@33023327==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@2af663db -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-75ab203e@75ab203e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-75ab203e@75ab203e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@1a4974fc -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@216de6cb -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-3d7f6203@c0179a3e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms org.eclipse.jetty.servlet.DefaultServlet-3d7f6203@c0179a3e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.419 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms GzipHandler@69acd89a{STARTED,min=32,inflate=-1} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms HandlerCollection@4cc212b8{STARTED} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@7b61e96{STOPPED} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@7b61e96{STARTING} -13:18:26.419 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57978ms ErrorHandler@7b61e96{STARTED} -13:18:26.420 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.420 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:26.420 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@461b4b25{STOPPED} -13:18:26.420 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57979ms ScheduledExecutorScheduler@461b4b25{STARTED} -13:18:26.420 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@69b18ba6[HTTP/1.1] -13:18:26.420 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57979ms HttpConnectionFactory@69b18ba6[HTTP/1.1] -13:18:26.420 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.421 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4219468+02:00 added {SelectorProducer@1cd11adc,POJO} -13:18:26.421 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4219468+02:00 added {QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}],UNMANAGED} -13:18:26.421 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4219468+02:00 created -13:18:26.421 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@4dee732e{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4219468+02:00,MANAGED} -13:18:26.422 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@4dee732e{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:26.422 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4229432+02:00 added {SelectorProducer@414fe08,POJO} -13:18:26.422 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4229432+02:00 added {QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}],UNMANAGED} -13:18:26.422 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4229432+02:00 created -13:18:26.422 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@100703ac{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4229432+02:00,MANAGED} -13:18:26.423 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@100703ac{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:26.423 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@4dee732e{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:26.423 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4239422+02:00 -13:18:26.423 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @57981ms EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.4239422+02:00 -13:18:26.424 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@2e4e7581 startThread=0 -13:18:26.424 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@71955b01 on ManagedSelector@4dee732e{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:26.301 [qtp426008992-54] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp426008992]@196461a0{STARTED,8<=9<=14,i=6,r=1,q=0}[ReservedThreadExecutor@126c668c{s=1/1,p=0}] -13:18:26.431 [qtp426008992-54] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp426008992-54,5,main] exited for QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=6,r=-1,q=0}[NO_TRY] -13:18:26.431 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=-1/1,p=0}@3ea7ed04 task=STOP! -13:18:26.431 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@126c668c{s=-1/1,p=0}@3ea7ed04 Exited -13:18:26.431 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@126c668c{s=-1/1,p=0}@3ea7ed04 in QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=6,r=-1,q=0}[NO_TRY] -13:18:26.431 [qtp426008992-50] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp426008992-50,5,main] exited for QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=6,r=-1,q=0}[NO_TRY] -13:18:26.494 [qtp426008992-47] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp426008992-47-acceptor-0@1ab8fc36-NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=6,r=-1,q=0}[NO_TRY] -13:18:26.494 [qtp426008992-47] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp426008992-47,5,main] exited for QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=6,r=-1,q=0}[NO_TRY] -13:18:26.544 [qtp426008992-49] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp426008992-49-acceptor-2@7569f72-NetworkTrafficServerConnector@7933a262{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=6,r=-1,q=0}[NO_TRY] -13:18:26.544 [qtp426008992-49] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp426008992-49,5,main] exited for QueuedThreadPool[qtp426008992]@196461a0{STOPPED,8<=0<=14,i=6,r=-1,q=0}[NO_TRY] -13:18:26.681 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.681 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@2e4e7581 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.681 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.6814555+02:00 tryProduce false -13:18:26.682 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:26.682 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@71955b01 -13:18:26.682 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @58240ms ManagedSelector@4dee732e{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:26.682 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@100703ac{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:26.682 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.6824393+02:00 -13:18:26.682 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @58241ms EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.6824393+02:00 -13:18:26.684 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@52d20f85 startThread=0 -13:18:26.684 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@7ae06c10 on ManagedSelector@100703ac{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:26.684 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.684 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 0 keys -13:18:26.719 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.720 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@52d20f85 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.720 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.720431+02:00 tryProduce false -13:18:26.720 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:26.721 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@7ae06c10 -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @58279ms ManagedSelector@100703ac{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @58279ms SelectorManager@NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@275fecb0,POJO} -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@275fecb0 startThread=0 -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@7cc9e609,POJO} -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@7cc9e609 startThread=0 -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@3e256032,POJO} -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@3e256032 startThread=0 -13:18:26.721 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @58279ms NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:26.721 [Test worker] INFO org.eclipse.jetty.server.Server - Started @58279ms -13:18:26.721 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @58279ms Server@1551d457{STARTED}[9.4.28.v20200408] -13:18:26.721 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.722 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff waiting with 0 keys -13:18:26.724 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:26.724 [Test worker] DEBUG org.apache.http.wire - http-outgoing-1 << "end of stream" -13:18:26.724 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-1: Close connection -13:18:26.724 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 2][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:26.724 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:26.725 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:26.725 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:64988<->127.0.0.1:8080 -13:18:26.725 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:26.725 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:26.726 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:26.728 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> POST /__admin/mappings HTTP/1.1 -13:18:26.728 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Content-Length: 328 -13:18:26.728 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Content-Type: text/plain; charset=UTF-8 -13:18:26.728 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Host: localhost:8080 -13:18:26.728 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Connection: Keep-Alive -13:18:26.728 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:26.728 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:26.728 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Content-Length: 328[\r][\n]" -13:18:26.728 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:26.728 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Host: localhost:8080[\r][\n]" -13:18:26.728 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Connection: Keep-Alive[\r][\n]" -13:18:26.728 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "{[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "id" : "0378ff59-a2ae-4df7-af72-fe9c5fe5c5de",[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "request" : {[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "method" : "GET"[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " },[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "response" : {[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "status" : 401[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " },[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "uuid" : "0378ff59-a2ae-4df7-af72-fe9c5fe5c5de",[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:26.729 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "}" -13:18:26.745 [qtp158982948-57] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.745 [qtp158982948-57] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@275fecb0 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.746 [qtp158982948-57-acceptor-0@275fecb0-NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@9d7bb6 on ManagedSelector@100703ac{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:26.746 [qtp158982948-57-acceptor-0@275fecb0-NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@100703ac{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:26.747 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken with none selected -13:18:26.747 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken up from select, 0/0/0 selected -13:18:26.747 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff processing 0 keys, 1 updates -13:18:26.747 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:26.747 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@9d7bb6 -13:18:26.747 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@9d7bb6 startThread=0 -13:18:26.747 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.747 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff waiting with 1 keys -13:18:26.748 [qtp158982948-58] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.748 [qtp158982948-58] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@7cc9e609 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.748 [qtp158982948-59] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.748 [qtp158982948-59] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@3e256032 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.785 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.785 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@9d7bb6 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.785 [qtp158982948-60] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:26.786 [qtp158982948-60] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:26.786 [qtp158982948-60] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:26.786 [qtp158982948-60] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.787 [qtp158982948-60] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.787 [qtp158982948-60] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.787 [qtp158982948-60] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@36d30d4c{AC.ReadCB@4e97f204{HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:26.787 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.788 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@415268f on ManagedSelector@100703ac{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:26.788 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@100703ac{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken with none selected -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken up from select, 0/0/1 selected -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff processing 0 keys, 1 updates -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@415268f -13:18:26.788 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff waiting with 1 keys -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken up from select, 1/1/1 selected -13:18:26.788 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@9d7bb6 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}] -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff processing 1 keys, 0 updates -13:18:26.788 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64988], selector=sun.nio.ch.WindowsSelectorImpl@758e16ff, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.789 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.789 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:26.789 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=0} tryExecute EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.7894291+02:00 -13:18:26.789 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=1} startReservedThread p=1 -13:18:26.789 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@7f767d8f startThread=0 -13:18:26.789 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@7f767d8f in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}] -13:18:26.789 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=1}@7f767d8f started -13:18:26.789 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@7f767d8f waiting -13:18:26.790 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:26.7894291+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:26.790 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:26.790 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:26.790 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:26.790 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:26.790 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff waiting with 1 keys -13:18:26.890 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:26.892 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=104/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:26.894 [qtp158982948-61] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@36d30d4c{AC.ReadCB@4e97f204{HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=107/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:26.895 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=108/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:26.897 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 523 HeapByteBuffer@10a2ecb7[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.898 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 523 HeapByteBuffer@10a2ecb7[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.899 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:26.899 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:26.899 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:26.899 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:26.900 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:26.900 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:26.900 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:26.900 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:26.901 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:26.901 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:26.901 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:26.901 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:26.902 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:26.903 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:26.904 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:26.905 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:26.912 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:26.913 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:26.914 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:26.916 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:26.917 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:26.918 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 328 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:26.922 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=25/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=4} parsed true HttpParser{s=CONTENT,0 of 328} -13:18:26.923 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=5} -13:18:26.923 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:26.923 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} -13:18:26.923 [qtp158982948-61] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} -13:18:26.923 [qtp158982948-61] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:26.924 [qtp158982948-61] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:26.924 [qtp158982948-61] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.924 [qtp158982948-61] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:26.926 [qtp158982948-61] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@1e6500d3 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c -13:18:27.033 [qtp158982948-61] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:27.033 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:27.033 [qtp158982948-61] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:27.033 [qtp158982948-61] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=137/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=116} parse HeapByteBuffer@10a2ecb7[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "0378ff59-a2a...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a2ecb7[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "0378ff59-a2a...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=116} Content@1a5a87c7{HeapByteBufferR@5f580ae8[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "0378ff59-a2a...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@581892e0[c=0,q=0,[0]=null,s=STREAM] addContent Content@1a5a87c7{HeapByteBufferR@5f580ae8[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "0378ff59-a2a...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=116} -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=116} -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@581892e0[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:27.034 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=137/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,328 of 328},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=116} parsed false HttpParser{s=END,328 of 328} -13:18:27.035 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@581892e0[c=328,q=1,[0]=EOF,s=STREAM] read 328 from Content@1a5a87c7{HeapByteBufferR@5f580ae8[p=523,l=523,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:27.035 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=138/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,328 of 328},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=117} -13:18:27.035 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:27.118 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@eea94a1[p=0,l=328,c=8192,r=328]={<<<{\r\n "id" : "0378ff59-a2a...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:27.118 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@43c2fbae[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "0378ff59-a2a...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.119 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@43c2fbae[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "0378ff59-a2a...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@7fc12534{null} -13:18:27.119 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=201} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:27.120 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@10961231] (null,[p=0,l=328,c=32768,r=328],false)@START -13:18:27.121 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@43c2fbae[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "0378ff59-a2a...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.121 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:27.122 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:27.122 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@10961231] ([p=0,l=122,c=8192,r=122],[p=0,l=328,c=32768,r=328],false)@COMMITTED -13:18:27.124 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@445d9406{IDLE}->null [HeapByteBuffer@10a2ecb7[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@43c2fbae[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "0378ff59-a2a...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:27.125 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{WRITING}->null:IDLE-->WRITING -13:18:27.126 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "HTTP/1.1 201 Created[\r][\n]" -13:18:27.126 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "Content-Type: application/json[\r][\n]" -13:18:27.126 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "Transfer-Encoding: chunked[\r][\n]" -13:18:27.126 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:27.126 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]" -13:18:27.126 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "148[\r][\n]" -13:18:27.126 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << HTTP/1.1 201 Created -13:18:27.126 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << Content-Type: application/json -13:18:27.126 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << Transfer-Encoding: chunked -13:18:27.126 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << Server: Jetty(9.4.28.v20200408) -13:18:27.127 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:27.129 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=232/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,328 of 328},g=HttpGenerator@55947826{s=COMMITTED}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=211} -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "{[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "id" : "0378ff59-a2ae-4df7-af72-fe9c5fe5c5de",[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "request" : {[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "method" : "GET"[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " },[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "response" : {[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "status" : 401[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " },[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "uuid" : "0378ff59-a2ae-4df7-af72-fe9c5fe5c5de",[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:27.130 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "}" -13:18:27.130 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 328 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,328 of 328},g=HttpGenerator@55947826{s=COMMITTED}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=212} -13:18:27.131 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=450 remaining=0 WriteFlusher@445d9406{WRITING}->null -13:18:27.131 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{IDLE}->null:WRITING-->IDLE -13:18:27.131 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@10961231] ([p=122,l=122,c=8192,r=0],[p=328,l=328,c=32768,r=0],false)@COMMITTED -13:18:27.132 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:27.132 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@7fc12534{null} -13:18:27.132 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7fc12534{null} -13:18:27.133 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3243f13c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:27.133 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3243f13c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:27.133 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3243f13c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:27.134 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@445d9406{IDLE}->null [HeapByteBuffer@66560e90[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:27.134 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{WRITING}->null:IDLE-->WRITING -13:18:27.134 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]" -13:18:27.134 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "0[\r][\n]" -13:18:27.134 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]" -13:18:27.134 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 2][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:27.134 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: set socket timeout to 0 -13:18:27.135 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 2][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:27.138 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:27.138 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 2][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:27.138 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: set socket timeout to 30000 -13:18:27.138 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:27.140 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[read] I/O error: Read timed out" -13:18:27.140 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:27.140 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:27.140 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:27.140 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> POST /__admin/mappings HTTP/1.1 -13:18:27.140 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Content-Length: 644 -13:18:27.140 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Content-Type: text/plain; charset=UTF-8 -13:18:27.140 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Host: localhost:8080 -13:18:27.141 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Connection: Keep-Alive -13:18:27.141 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Content-Length: 644[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Host: localhost:8080[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Connection: Keep-Alive[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "{[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "id" : "1616bc93-a4e5-405f-96b2-09234de8ef49",[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "request" : {[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "method" : "POST",[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "headers" : {[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "Content-Type" : {[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "equalTo" : "application/json"[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " }[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " },[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " } ][\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " },[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "response" : {[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "status" : 200,[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "headers" : {[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " }[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " },[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "uuid" : "1616bc93-a4e5-405f-96b2-09234de8ef49",[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:27.141 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "}" -13:18:27.146 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,328 of 328},g=HttpGenerator@55947826{s=COMPLETING}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=228} -13:18:27.147 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@445d9406{WRITING}->null -13:18:27.147 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{IDLE}->null:WRITING-->IDLE -13:18:27.147 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3243f13c] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:27.148 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:27.148 [qtp158982948-61] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@69acd89a{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@46718ff1 in null -13:18:27.148 [qtp158982948-61] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:27.149 [qtp158982948-61] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=231} -13:18:27.149 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:27.149 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.149 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=231} -13:18:27.150 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@6e24ce9d) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:27.150 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.150 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.150 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@643ad9c0{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.151 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=232} -13:18:27.151 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=328 -13:18:27.151 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@643ad9c0{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.152 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,328 of 328} -13:18:27.152 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:27.152 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.152 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 839 HeapByteBuffer@10a2ecb7[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.153 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 839 HeapByteBuffer@10a2ecb7[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.153 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:27.154 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.154 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:27.159 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:27.159 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:27.160 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:27.161 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:27.161 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:27.162 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:27.162 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:27.162 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:27.163 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:27.163 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:27.163 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:27.163 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:27.164 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:27.164 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:27.164 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:27.165 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:27.165 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 644 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:27.165 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=CONTENT,0 of 644},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 644} -13:18:27.165 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:27.166 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:27.166 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:27.166 [qtp158982948-61] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:27.166 [qtp158982948-61] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:27.166 [qtp158982948-61] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:27.167 [qtp158982948-61] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:27.167 [qtp158982948-61] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:27.167 [qtp158982948-61] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:27.167 [qtp158982948-61] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:27.168 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=CONTENT,0 of 644},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} parse HeapByteBuffer@10a2ecb7[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "1616bc93-a4e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:27.169 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a2ecb7[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "1616bc93-a4e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.169 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} Content@43431874{HeapByteBufferR@1537ac02[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "1616bc93-a4e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:27.169 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@581892e0[c=0,q=0,[0]=null,s=STREAM] addContent Content@43431874{HeapByteBufferR@1537ac02[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "1616bc93-a4e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:27.169 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:27.169 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:27.169 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:27.169 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:27.169 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@581892e0[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:27.170 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=17/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,644 of 644},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} parsed false HttpParser{s=END,644 of 644} -13:18:27.171 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@581892e0[c=644,q=1,[0]=EOF,s=STREAM] read 644 from Content@43431874{HeapByteBufferR@1537ac02[p=839,l=839,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:27.171 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=18/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,644 of 644},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=6} -13:18:27.171 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:27.182 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@63cfd60a[p=0,l=644,c=8192,r=644]={<<<{\r\n "id" : "1616bc93-a4e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:27.182 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@43c2fbae[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "1616bc93-a4e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.182 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@43c2fbae[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "1616bc93-a4e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@7fc12534{null} -13:18:27.182 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=17} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:27.183 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@214fa105] (null,[p=0,l=644,c=32768,r=644],false)@START -13:18:27.183 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@43c2fbae[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "1616bc93-a4e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.183 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:27.183 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:27.183 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@214fa105] ([p=0,l=122,c=8192,r=122],[p=0,l=644,c=32768,r=644],false)@COMMITTED -13:18:27.183 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@445d9406{IDLE}->null [HeapByteBuffer@10a2ecb7[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@43c2fbae[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "1616bc93-a4e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:27.183 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{WRITING}->null:IDLE-->WRITING -13:18:27.183 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "HTTP/1.1 201 Created[\r][\n]" -13:18:27.183 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "Content-Type: application/json[\r][\n]" -13:18:27.183 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "Transfer-Encoding: chunked[\r][\n]" -13:18:27.183 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:27.183 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]" -13:18:27.183 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "284[\r][\n]" -13:18:27.183 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << HTTP/1.1 201 Created -13:18:27.183 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << Content-Type: application/json -13:18:27.183 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << Transfer-Encoding: chunked -13:18:27.183 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << Server: Jetty(9.4.28.v20200408) -13:18:27.184 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:27.184 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=31/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,644 of 644},g=HttpGenerator@55947826{s=COMMITTED}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=19} -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "{[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "id" : "1616bc93-a4e5-405f-96b2-09234de8ef49",[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "request" : {[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "url" : "/api/v0/components/login",[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "method" : "POST",[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "headers" : {[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "Content-Type" : {[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "equalTo" : "application/json"[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " }[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " },[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "bodyPatterns" : [ {[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " } ][\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " },[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "response" : {[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "status" : 200,[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "headers" : {[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "Content-Type" : "application/json"[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " }[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " },[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "uuid" : "1616bc93-a4e5-405f-96b2-09234de8ef49",[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:27.185 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "}" -13:18:27.185 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 644 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,644 of 644},g=HttpGenerator@55947826{s=COMMITTED}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=20} -13:18:27.186 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=766 remaining=0 WriteFlusher@445d9406{WRITING}->null -13:18:27.186 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{IDLE}->null:WRITING-->IDLE -13:18:27.186 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@214fa105] ([p=122,l=122,c=8192,r=0],[p=644,l=644,c=32768,r=0],false)@COMMITTED -13:18:27.186 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:27.186 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@7fc12534{null} -13:18:27.186 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7fc12534{null} -13:18:27.186 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@66c2c72e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:27.186 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@66c2c72e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:27.186 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@66c2c72e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:27.187 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@445d9406{IDLE}->null [HeapByteBuffer@66560e90[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:27.188 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{WRITING}->null:IDLE-->WRITING -13:18:27.188 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]" -13:18:27.188 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "0[\r][\n]" -13:18:27.188 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]" -13:18:27.188 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,644 of 644},g=HttpGenerator@55947826{s=COMPLETING}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=23} -13:18:27.188 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 2][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:27.188 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: set socket timeout to 0 -13:18:27.188 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@445d9406{WRITING}->null -13:18:27.188 [qtp158982948-61] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{IDLE}->null:WRITING-->IDLE -13:18:27.188 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 2][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:27.188 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@66c2c72e] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:27.189 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@69acd89a{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@46718ff1 in null -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=25} -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=25} -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@3539774b) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@643ad9c0{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.190 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=25} -13:18:27.192 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=644 -13:18:27.195 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@643ad9c0{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.195 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,644 of 644} -13:18:27.195 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:27.195 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.195 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.196 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.196 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.200 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:27.200 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 2][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:27.200 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: set socket timeout to 30000 -13:18:27.200 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[read] I/O error: Read timed out" -13:18:27.202 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:27.202 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:27.202 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:27.202 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> POST /__admin/mappings HTTP/1.1 -13:18:27.202 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Content-Length: 2378 -13:18:27.202 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Content-Type: text/plain; charset=UTF-8 -13:18:27.202 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Host: localhost:8080 -13:18:27.202 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> Connection: Keep-Alive -13:18:27.202 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Content-Length: 2378[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Host: localhost:8080[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "Connection: Keep-Alive[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "{[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "id" : "72db110a-406a-49eb-a38c-dc8d4d502062",[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "request" : {[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "method" : "GET",[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "headers" : {[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "Authorization" : {[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " }[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " }[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " },[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "response" : {[\r][\n]" -13:18:27.202 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "status" : 200,[\r][\n]" -13:18:27.203 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "body" : "{\"id\":\"awx\",\"name\":\"AWX\",\"deleted\":false,\"type\":\"REST\",\"parameters\":{\"provisionAdapterUrl\":\"/provision-adapters/awx/jobs\"},\"questions\":[{\"type\":\"survey.question.FreeInput\",\"prompt\":\"AWX instance URL:\",\"description\":\"This is the URL of the AWX installation.\",\"variableName\":\"provisioningBaseUrl\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"https://inhas66974\",\"answerBaseType\":\"STRING\",\"restrictions\":null},{\"type\":\"survey.question.SelectOption\",\"prompt\":\"Select AWX template type\",\"description\":\"Actually only workflow job templates are supported.\",\"variableName\":\"awxTemplateType\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"minimumNumberSelections\":1,\"maximumNumberSelections\":1,\"options\":[\"workflow\"],\"defaultAnswer\":[\"workflow\"]},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Specify provisioning job identifier\",\"description\":\"You can find this identifier in AWX.\",\"variableName\":\"awxTemplateId\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":null,\"answerBaseType\":\"INTEGER\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning username:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningUsername\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.username\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning password:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningPassword\",\"mandatory\":true,\"masked\":true,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.password\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null}]}",[\r][\n]" -13:18:27.203 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "headers" : {[\r][\n]" -13:18:27.203 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:27.203 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " }[\r][\n]" -13:18:27.203 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " },[\r][\n]" -13:18:27.203 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "uuid" : "72db110a-406a-49eb-a38c-dc8d4d502062",[\r][\n]" -13:18:27.203 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:27.203 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:27.203 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 >> "}" -13:18:27.201 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:27.203 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.204 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:27.204 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.204 [qtp158982948-61] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.204 [qtp158982948-61] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@36d30d4c{AC.ReadCB@4e97f204{HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:27.204 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.204 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@415268f on ManagedSelector@100703ac{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:27.204 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@100703ac{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:27.204 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken with none selected -13:18:27.204 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken up from select, 0/0/1 selected -13:18:27.204 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff processing 0 keys, 1 updates -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@415268f -13:18:27.205 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff waiting with 1 keys -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken up from select, 1/1/1 selected -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff processing 1 keys, 0 updates -13:18:27.205 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64988], selector=sun.nio.ch.WindowsSelectorImpl@758e16ff, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0} tryExecute EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:27.2053662+02:00 -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=0}@7f767d8f offer EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:27.2053662+02:00 -13:18:27.205 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=1} startReservedThread p=1 -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@3a74ec05 startThread=0 -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:27.2063782+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@36d30d4c{AC.ReadCB@4e97f204{HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 2574 HeapByteBuffer@10a2ecb7[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 2574 HeapByteBuffer@10a2ecb7[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:27.206 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 2378 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=CONTENT,0 of 2378},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 2378} -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:27.207 [qtp158982948-56] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=CONTENT,0 of 2378},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parse HeapByteBuffer@10a2ecb7[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "72db110a-406...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a2ecb7[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "72db110a-406...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} Content@3f482c5a{HeapByteBufferR@b84559b[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "72db110a-406...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@581892e0[c=0,q=0,[0]=null,s=STREAM] addContent Content@3f482c5a{HeapByteBufferR@b84559b[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "72db110a-406...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@581892e0[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:27.208 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parsed false HttpParser{s=END,2378 of 2378} -13:18:27.209 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@581892e0[c=2378,q=1,[0]=EOF,s=STREAM] read 2378 from Content@3f482c5a{HeapByteBufferR@b84559b[p=2574,l=2574,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:27.209 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:27.209 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:27.244 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@7f767d8f task=EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:27.2433725+02:00 -13:18:27.244 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@3a74ec05 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}] -13:18:27.244 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=1}@3a74ec05 started -13:18:27.244 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@3a74ec05 waiting -13:18:27.244 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:27.2443582+02:00 tryProduce true -13:18:27.244 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:27.244 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:27.245 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=38/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=37} -13:18:27.245 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff waiting with 1 keys -13:18:27.248 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@5c56a433[p=0,l=2378,c=8192,r=2378]={<<<{\r\n "id" : "72db110a-406...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:27.248 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@43c2fbae[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "72db110a-406...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.248 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@43c2fbae[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "72db110a-406...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@7fc12534{null} -13:18:27.249 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=41} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:27.249 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5e152db0] (null,[p=0,l=2378,c=32768,r=2378],false)@START -13:18:27.249 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@43c2fbae[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "72db110a-406...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.249 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:27.249 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:27.249 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5e152db0] ([p=0,l=122,c=8192,r=122],[p=0,l=2378,c=32768,r=2378],false)@COMMITTED -13:18:27.249 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@445d9406{IDLE}->null [HeapByteBuffer@10a2ecb7[p=0,l=122,c=8192,r=122]={<<>>ection: K...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@43c2fbae[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "72db110a-406...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:27.249 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{WRITING}->null:IDLE-->WRITING -13:18:27.249 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "HTTP/1.1 201 Created[\r][\n]" -13:18:27.249 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "Content-Type: application/json[\r][\n]" -13:18:27.249 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "Transfer-Encoding: chunked[\r][\n]" -13:18:27.249 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:27.249 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]" -13:18:27.249 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "94A[\r][\n]" -13:18:27.249 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << HTTP/1.1 201 Created -13:18:27.249 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << Content-Type: application/json -13:18:27.249 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << Transfer-Encoding: chunked -13:18:27.249 [Test worker] DEBUG org.apache.http.headers - http-outgoing-2 << Server: Jetty(9.4.28.v20200408) -13:18:27.250 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:27.251 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=43/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@55947826{s=COMMITTED}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=44} -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "{[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "id" : "72db110a-406a-49eb-a38c-dc8d4d502062",[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "request" : {[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "method" : "GET",[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "headers" : {[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "Authorization" : {[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " }[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " }[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " },[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "response" : {[\r][\n]" -13:18:27.251 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "status" : 200,[\r][\n]" -13:18:27.252 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "body" : "{\"id\":\"awx\",\"name\":\"AWX\",\"deleted\":false,\"type\":\"REST\",\"parameters\":{\"provisionAdapterUrl\":\"/provision-adapters/awx/jobs\"},\"questions\":[{\"type\":\"survey.question.FreeInput\",\"prompt\":\"AWX instance URL:\",\"description\":\"This is the URL of the AWX installation.\",\"variableName\":\"provisioningBaseUrl\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"https://inhas66974\",\"answerBaseType\":\"STRING\",\"restrictions\":null},{\"type\":\"survey.question.SelectOption\",\"prompt\":\"Select AWX template type\",\"description\":\"Actually only workflow job templates are supported.\",\"variableName\":\"awxTemplateType\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"minimumNumberSelections\":1,\"maximumNumberSelections\":1,\"options\":[\"workflow\"],\"defaultAnswer\":[\"workflow\"]},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Specify provisioning job identifier\",\"description\":\"You can find this identifier in AWX.\",\"variableName\":\"awxTemplateId\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":null,\"answerBaseType\":\"INTEGER\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning username:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningUsername\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.username\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning password:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningPassword\",\"mandatory\":true,\"masked\":true,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.password\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null}]}",[\r][\n]" -13:18:27.252 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "headers" : {[\r][\n]" -13:18:27.252 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "Content-Type" : "application/json"[\r][\n]" -13:18:27.252 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " }[\r][\n]" -13:18:27.252 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " },[\r][\n]" -13:18:27.252 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "uuid" : "72db110a-406a-49eb-a38c-dc8d4d502062",[\r][\n]" -13:18:27.252 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:27.252 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:27.252 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "}" -13:18:27.252 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 2378 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@55947826{s=COMMITTED}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=45} -13:18:27.252 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=2500 remaining=0 WriteFlusher@445d9406{WRITING}->null -13:18:27.252 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{IDLE}->null:WRITING-->IDLE -13:18:27.252 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5e152db0] ([p=122,l=122,c=8192,r=0],[p=2378,l=2378,c=32768,r=0],false)@COMMITTED -13:18:27.253 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:27.253 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@7fc12534{null} -13:18:27.253 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7fc12534{null} -13:18:27.253 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4353a23] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:27.253 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4353a23] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:27.253 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4353a23] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:27.253 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@445d9406{IDLE}->null [HeapByteBuffer@66560e90[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:27.253 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{WRITING}->null:IDLE-->WRITING -13:18:27.253 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]" -13:18:27.253 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "0[\r][\n]" -13:18:27.253 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]" -13:18:27.253 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 2][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:27.253 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: set socket timeout to 0 -13:18:27.253 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 2][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:27.287 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@55947826{s=COMPLETING}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=80} -13:18:27.287 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@445d9406{WRITING}->null -13:18:27.287 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@445d9406{IDLE}->null:WRITING-->IDLE -13:18:27.287 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a03c84c[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4353a23] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:27.287 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:27.287 [qtp158982948-56] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@69acd89a{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@46718ff1 in null -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@643ad9c0{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@7abc32fa) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@643ad9c0{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@643ad9c0{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=81} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=2378 -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@643ad9c0{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,2378 of 2378} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.288 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@36d30d4c{AC.ReadCB@4e97f204{HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@415268f on ManagedSelector@100703ac{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:27.289 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@100703ac{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:27.289 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken with none selected -13:18:27.289 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken up from select, 0/0/1 selected -13:18:27.289 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff processing 0 keys, 1 updates -13:18:27.289 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:27.289 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@415268f -13:18:27.290 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:27.290 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:27.290 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff waiting with 1 keys -13:18:27.290 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:27.291 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@52d20f85 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:27.558 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager is shutting down -13:18:27.560 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager shut down -13:18:27.560 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager is shutting down -13:18:27.560 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager shut down -13:18:28.855 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [16315861] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:28.857 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:28.858 [reactor-http-nio-3] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x287ea5f0] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:28.860 [qtp158982948-57-acceptor-0@275fecb0-NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@e5a95d5 on ManagedSelector@4dee732e{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:28.860 [qtp158982948-57-acceptor-0@275fecb0-NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4dee732e{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:28.860 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:28.860 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:28.860 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken with none selected -13:18:28.860 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 0/0/0 selected -13:18:28.860 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:28.860 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 0 keys, 1 updates -13:18:28.860 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:28.860 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@e5a95d5 -13:18:28.860 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@e5a95d5 startThread=0 -13:18:28.860 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:28.860 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:28.860 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 1 keys -13:18:28.860 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@e5a95d5 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:28.860 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:28.860 [qtp158982948-61] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:28.860 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:28.861 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:28.861 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:28.861 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:28.863 [qtp158982948-61] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}-> -13:18:28.863 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:28.863 [qtp158982948-61] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.863 [qtp158982948-61] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.863 [qtp158982948-61] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.863 [qtp158982948-61] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@787307e2{AC.ReadCB@7ab6ad0b{HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:28.864 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.864 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@24eb7dab on ManagedSelector@4dee732e{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:28.864 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4dee732e{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken with none selected -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 0/0/1 selected -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 0 keys, 1 updates -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@24eb7dab -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 1 keys -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 1/1/1 selected -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 1 keys, 0 updates -13:18:28.864 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64989], selector=sun.nio.ch.WindowsSelectorImpl@5c864108, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.865 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.865 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:28.865 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.865 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@e5a95d5 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:28.865 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0} tryExecute EatWhatYouKill@5205918/SelectorProducer@1cd11adc/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:28.8650556+02:00 -13:18:28.865 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=0}@3a74ec05 offer EatWhatYouKill@5205918/SelectorProducer@1cd11adc/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:28.8650556+02:00 -13:18:28.865 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=1} startReservedThread p=1 -13:18:28.865 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@567e2a78 startThread=0 -13:18:28.865 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:28.8650556+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:28.866 [qtp158982948-55] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@787307e2{AC.ReadCB@7ab6ad0b{HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:28.866 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@3a74ec05 task=EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:28.8660499+02:00 -13:18:28.866 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:28.866 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:28.8660499+02:00 tryProduce true -13:18:28.866 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:28.866 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:28.866 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.866 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.866 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 1 keys -13:18:28.866 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.867 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@567e2a78 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}] -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:28.867 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=1}@567e2a78 started -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.867 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@567e2a78 waiting -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:28.867 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@69acd89a{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@137caed3 in null -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:28.868 [qtp158982948-55] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:28.869 [qtp158982948-55] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@7d1c23b5 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde -13:18:28.869 [qtp158982948-55] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:28.869 [qtp158982948-55] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:28.869 [qtp158982948-55] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parse HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2225be1a[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:28.870 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:28.871 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:28.871 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:28.878 [qtp158982948-55] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@5af6dcc exclude by status 401 -13:18:28.878 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@7353519c{null} -13:18:28.878 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=11} -401 null HTTP/1.1 -Matched-Stub-Id: 0378ff59-a2ae-4df7-af72-fe9c5fe5c5de - - -13:18:28.878 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@60146355] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:28.878 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:28.879 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 0378ff59-a2ae-4df7-af72-fe9c5fe5c5de - - -13:18:28.879 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:28.879 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@60146355] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:28.879 [qtp158982948-55] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@1eaba396{IDLE}->null [HeapByteBuffer@10a2ecb7[p=0,l=145,c=8192,r=145]={<<>> Bearer \r...\x00\x00\x00\x00\x00\x00\x00}] -13:18:28.879 [qtp158982948-55] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{WRITING}->null:IDLE-->WRITING -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=COMMITTED}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=12} -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@1eaba396{WRITING}->null -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{IDLE}->null:WRITING-->IDLE -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@60146355] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@7353519c{null} -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7353519c{null} -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@771dce6e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@771dce6e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@771dce6e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@1eaba396{IDLE}->null [HeapByteBuffer@66560e90[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{WRITING}->null:IDLE-->WRITING -13:18:28.880 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=COMPLETING}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=13} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@1eaba396{WRITING}->null -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{IDLE}->null:WRITING-->IDLE -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@771dce6e] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=14} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=14} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@6ee425c0) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@4cb01f6{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=14} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@4cb01f6{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.881 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@787307e2{AC.ReadCB@7ab6ad0b{HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@24eb7dab on ManagedSelector@4dee732e{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4dee732e{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:28.882 [qtp158982948-55] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:28.883 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@2e4e7581 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:28.883 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken with none selected -13:18:28.883 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 0/0/1 selected -13:18:28.883 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 0 keys, 1 updates -13:18:28.883 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:28.883 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@24eb7dab -13:18:28.883 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=0378ff59-a2ae-4df7-af72-fe9c5fe5c5de, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:28.883 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:28.883 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:28.883 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:28.883 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 1 keys -13:18:28.883 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [16315861] Response 401 UNAUTHORIZED -13:18:28.885 [reactor-http-nio-3] DEBUG reactor.netty.channel.FluxReceive - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:28.887 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:28.889 [reactor-http-nio-3] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:28.910 [reactor-http-nio-3] ERROR com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - Json Processing Exception -com.fasterxml.jackson.databind.JsonMappingException: Test exception. - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) - at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:80) - at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrapNoCoerce.callConstructor(ConstructorSite.java:105) - at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallConstructor(CallSiteArray.java:59) - at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:237) - at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:249) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest$__spock_feature_0_3_closure1$_closure3.doCall(ProvisionAdaptersClientTest.groovy:212) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:101) - at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) - at org.codehaus.groovy.runtime.metaclass.ClosureMetaClass.invokeMethod(ClosureMetaClass.java:263) - at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1041) - at groovy.lang.Closure.call(Closure.java:405) - at org.spockframework.runtime.GroovyRuntimeUtil.invokeClosure(GroovyRuntimeUtil.java:202) - at org.spockframework.mock.response.CodeResponseGenerator.invokeClosure(CodeResponseGenerator.java:54) - at org.spockframework.mock.response.CodeResponseGenerator.doRespond(CodeResponseGenerator.java:37) - at org.spockframework.mock.response.SingleResponseGenerator.respond(SingleResponseGenerator.java:32) - at org.spockframework.mock.response.ResponseGeneratorChain.respond(ResponseGeneratorChain.java:44) - at org.spockframework.mock.runtime.MockInteraction.accept(MockInteraction.java:73) - at org.spockframework.mock.runtime.MockInteractionDecorator.accept(MockInteractionDecorator.java:50) - at org.spockframework.mock.runtime.InteractionScope$1.accept(InteractionScope.java:51) - at org.spockframework.mock.runtime.MockController.handle(MockController.java:40) - at org.spockframework.mock.runtime.JavaMockInterceptor.intercept(JavaMockInterceptor.java:87) - at org.spockframework.mock.runtime.ByteBuddyInterceptorAdapter.interceptNonAbstract(ByteBuddyInterceptorAdapter.java:35) - at com.fasterxml.jackson.databind.ObjectMapper$SpockMock$456001620.writeValueAsString(Unknown Source) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.getTokenFromApi(ProvisionAdaptersClient.java:169) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.lambda$getUnauthorizedBackoffStrategy$4(ProvisionAdaptersClient.java:133) - at reactor.util.retry.RetryBackoffSpec.lambda$generateCompanion$4(RetryBackoffSpec.java:509) - at reactor.core.publisher.FluxConcatMap$ConcatMapImmediate.drain(FluxConcatMap.java:367) - at reactor.core.publisher.FluxConcatMap$ConcatMapImmediate.onNext(FluxConcatMap.java:243) - at reactor.core.publisher.DirectProcessor$DirectInner.onNext(DirectProcessor.java:333) - at reactor.core.publisher.DirectProcessor.onNext(DirectProcessor.java:142) - at reactor.core.publisher.SerializedSubscriber.onNext(SerializedSubscriber.java:99) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:180) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:185) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:251) - at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.onError(Operators.java:1994) - at reactor.core.publisher.FluxOnAssembly$OnAssemblySubscriber.onError(FluxOnAssembly.java:390) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:135) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext(FluxOnErrorResume.java:73) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onNext(MonoFlatMap.java:241) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.drain(MonoIgnoreThen.java:147) - at reactor.core.publisher.MonoIgnoreThen.subscribe(MonoIgnoreThen.java:56) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:150) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:114) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.FluxDefaultIfEmpty$DefaultIfEmptySubscriber.onComplete(FluxDefaultIfEmpty.java:100) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onComplete(FluxMapFuseable.java:144) - at reactor.core.publisher.FluxContextStart$ContextStartSubscriber.onComplete(FluxContextStart.java:115) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onComplete(FluxMapFuseable.java:336) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onComplete(FluxFilterFuseable.java:384) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1756) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:152) - at reactor.core.publisher.FluxOnAssembly$OnAssemblySubscriber.onComplete(FluxOnAssembly.java:395) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:366) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:367) - at reactor.netty.channel.ChannelOperations.terminate(ChannelOperations.java:423) - at reactor.netty.http.client.HttpClientOperations.onInboundNext(HttpClientOperations.java:607) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:96) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:296) - at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:714) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:576) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:28.911 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:28.911 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:28.911 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:28.911 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:28.912 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:28.912 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 1 inactive connections -13:18:30.027 [parallel-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [16315861] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:30.028 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 0 inactive connections -13:18:30.028 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:30.029 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:30.029 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:30.030 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:30.031 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 1/1/1 selected -13:18:30.031 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 1 keys, 0 updates -13:18:30.031 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64989], selector=sun.nio.ch.WindowsSelectorImpl@5c864108, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1150/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:30.031 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:30.031 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1150/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:30.032 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1150/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:30.032 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0} tryExecute EatWhatYouKill@5205918/SelectorProducer@1cd11adc/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:30.0329053+02:00 -13:18:30.032 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=0}@567e2a78 offer EatWhatYouKill@5205918/SelectorProducer@1cd11adc/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:30.0329053+02:00 -13:18:30.032 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=1} startReservedThread p=1 -13:18:30.032 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@3787cc1c startThread=0 -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:30.0329053+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1151/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@787307e2{AC.ReadCB@7ab6ad0b{HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1151/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1151/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:30.033 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:30.034 [qtp158982948-62] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@69acd89a{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@137caed3 in null -13:18:30.035 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@567e2a78 task=EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:30.0348968+02:00 -13:18:30.035 [qtp158982948-62] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:30.035 [qtp158982948-62] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:30.035 [qtp158982948-62] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:30.035 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:30.0358957+02:00 tryProduce true -13:18:30.035 [qtp158982948-62] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:30.035 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:30.035 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:30.035 [qtp158982948-62] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:30.035 [qtp158982948-62] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:30.035 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:30.035 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 1 keys -13:18:30.035 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.035 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.036 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@3787cc1c in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}] -13:18:30.036 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=1}@3787cc1c started -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.036 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@3787cc1c waiting -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} parse HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2225be1a[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} parsed false HttpParser{s=END,0 of -1} -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:30.036 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:30.042 [qtp158982948-62] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@3940349c exclude by status 401 -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@7353519c{null} -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=9} -401 null HTTP/1.1 -Matched-Stub-Id: 0378ff59-a2ae-4df7-af72-fe9c5fe5c5de - - -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d7fa76c] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 0378ff59-a2ae-4df7-af72-fe9c5fe5c5de - - -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d7fa76c] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@1eaba396{IDLE}->null [HeapByteBuffer@10a2ecb7[p=0,l=145,c=8192,r=145]={<<>> Bearer \r...\x00\x00\x00\x00\x00\x00\x00}] -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{WRITING}->null:IDLE-->WRITING -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=10/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=COMMITTED}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=9} -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@1eaba396{WRITING}->null -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{IDLE}->null:WRITING-->IDLE -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d7fa76c] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:30.043 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@7353519c{null} -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7353519c{null} -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@787d3ea7] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@787d3ea7] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@787d3ea7] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@1eaba396{IDLE}->null [HeapByteBuffer@66560e90[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{WRITING}->null:IDLE-->WRITING -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=COMPLETING}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=10} -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@1eaba396{WRITING}->null -13:18:30.044 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=0378ff59-a2ae-4df7-af72-fe9c5fe5c5de, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{IDLE}->null:WRITING-->IDLE -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@787d3ea7] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:30.044 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:30.044 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [16315861] Response 401 UNAUTHORIZED -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=10} -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=10} -13:18:30.044 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@7193ea98) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@4cb01f6{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=11} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@4cb01f6{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:30.045 [qtp158982948-62] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:30.046 [reactor-http-nio-3] DEBUG reactor.netty.channel.FluxReceive - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@787307e2{AC.ReadCB@7ab6ad0b{HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@24eb7dab on ManagedSelector@4dee732e{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4dee732e{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:30.046 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@3a74ec05 size 1 > capacity -13:18:30.046 [qtp158982948-62] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@3a74ec05 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:30.047 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken with none selected -13:18:30.047 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 0/0/1 selected -13:18:30.047 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 0 keys, 1 updates -13:18:30.047 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:30.047 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@24eb7dab -13:18:30.047 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:30.047 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:30.047 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 1 keys -13:18:30.048 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:30.048 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:30.048 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:30.048 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:30.048 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:30.048 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 1 inactive connections -13:18:30.052 [parallel-3] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:30.053 [parallel-3] ERROR com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - Json Processing Exception -com.fasterxml.jackson.databind.JsonMappingException: Test exception. - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) - at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:80) - at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrapNoCoerce.callConstructor(ConstructorSite.java:105) - at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:249) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest$__spock_feature_0_3_closure1$_closure3.doCall(ProvisionAdaptersClientTest.groovy:212) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:101) - at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) - at org.codehaus.groovy.runtime.metaclass.ClosureMetaClass.invokeMethod(ClosureMetaClass.java:263) - at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1041) - at groovy.lang.Closure.call(Closure.java:405) - at org.spockframework.runtime.GroovyRuntimeUtil.invokeClosure(GroovyRuntimeUtil.java:202) - at org.spockframework.mock.response.CodeResponseGenerator.invokeClosure(CodeResponseGenerator.java:54) - at org.spockframework.mock.response.CodeResponseGenerator.doRespond(CodeResponseGenerator.java:37) - at org.spockframework.mock.response.SingleResponseGenerator.respond(SingleResponseGenerator.java:32) - at org.spockframework.mock.response.ResponseGeneratorChain.respond(ResponseGeneratorChain.java:44) - at org.spockframework.mock.runtime.MockInteraction.accept(MockInteraction.java:73) - at org.spockframework.mock.runtime.MockInteractionDecorator.accept(MockInteractionDecorator.java:50) - at org.spockframework.mock.runtime.InteractionScope$1.accept(InteractionScope.java:51) - at org.spockframework.mock.runtime.MockController.handle(MockController.java:40) - at org.spockframework.mock.runtime.JavaMockInterceptor.intercept(JavaMockInterceptor.java:87) - at org.spockframework.mock.runtime.ByteBuddyInterceptorAdapter.interceptNonAbstract(ByteBuddyInterceptorAdapter.java:35) - at com.fasterxml.jackson.databind.ObjectMapper$SpockMock$456001620.writeValueAsString(Unknown Source) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.getTokenFromApi(ProvisionAdaptersClient.java:169) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.lambda$getUnauthorizedBackoffStrategy$4(ProvisionAdaptersClient.java:133) - at reactor.util.retry.RetryBackoffSpec.lambda$generateCompanion$4(RetryBackoffSpec.java:509) - at reactor.core.publisher.FluxConcatMap$ConcatMapImmediate.drain(FluxConcatMap.java:367) - at reactor.core.publisher.FluxConcatMap$ConcatMapImmediate.innerComplete(FluxConcatMap.java:288) - at reactor.core.publisher.FluxConcatMap$ConcatMapInner.onComplete(FluxConcatMap.java:875) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1756) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onNext(MonoFlatMap.java:241) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.drain(MonoIgnoreThen.java:147) - at reactor.core.publisher.MonoIgnoreThen.subscribe(MonoIgnoreThen.java:56) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:150) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoIgnoreThen$ThenAcceptInner.onNext(MonoIgnoreThen.java:296) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:117) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:31.183 [parallel-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [16315861] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:31.184 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 0 inactive connections -13:18:31.184 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:31.184 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:31.184 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:31.185 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:31.186 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 1/1/1 selected -13:18:31.186 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 1 keys, 0 updates -13:18:31.186 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64989], selector=sun.nio.ch.WindowsSelectorImpl@5c864108, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1140/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.186 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:31.186 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1140/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.186 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1140/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:31.186 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0} tryExecute EatWhatYouKill@5205918/SelectorProducer@1cd11adc/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:31.1868938+02:00 -13:18:31.187 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=0}@3787cc1c offer EatWhatYouKill@5205918/SelectorProducer@1cd11adc/PRODUCING/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:31.1878917+02:00 -13:18:31.187 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=1} startReservedThread p=1 -13:18:31.187 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@132266a2 startThread=0 -13:18:31.187 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:31.1878917+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1141/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:31.187 [qtp158982948-56] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@787307e2{AC.ReadCB@7ab6ad0b{HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1141/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.187 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1141/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.187 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:31.188 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@3787cc1c task=EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:31.1888958+02:00 -13:18:31.188 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@2a8706d9{s=0/1,p=1}@132266a2 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=0/1,p=1}] -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:31.188 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=1}@132266a2 started -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:31.188 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@132266a2 waiting -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:31.188 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=true/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=1}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:31.1888958+02:00 tryProduce true -13:18:31.188 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:31.188 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:31.188 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:31.188 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 1 keys -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:31.188 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,AVAILABLE} -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@69acd89a{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@137caed3 in null -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@52601e0c{/,null,AVAILABLE} -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:31.189 [qtp158982948-56] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} parse HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:31.190 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2225be1a[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:31.191 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:31.191 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:31.191 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@642db1db exclude by status 401 -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@7353519c{null} -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=5} -401 null HTTP/1.1 -Matched-Stub-Id: 0378ff59-a2ae-4df7-af72-fe9c5fe5c5de - - -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@49647b5f] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 0378ff59-a2ae-4df7-af72-fe9c5fe5c5de - - -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@49647b5f] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@1eaba396{IDLE}->null [HeapByteBuffer@10a2ecb7[p=0,l=145,c=8192,r=145]={<<>> Bearer \r...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.193 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{WRITING}->null:IDLE-->WRITING -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=COMMITTED}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=5} -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@1eaba396{WRITING}->null -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{IDLE}->null:WRITING-->IDLE -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@49647b5f] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@7353519c{null} -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7353519c{null} -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5254ab6b] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5254ab6b] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5254ab6b] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@1eaba396{IDLE}->null [HeapByteBuffer@66560e90[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{WRITING}->null:IDLE-->WRITING -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=END,0 of -1},g=HttpGenerator@e5a22b5{s=COMPLETING}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=6} -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@1eaba396{WRITING}->null -13:18:31.194 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=0378ff59-a2ae-4df7-af72-fe9c5fe5c5de, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1eaba396{IDLE}->null:WRITING-->IDLE -13:18:31.194 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@6f4ec5c8[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5254ab6b] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:31.194 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.195 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [16315861] Response 401 UNAUTHORIZED -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@4cb01f6{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@5243d0f5) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@4cb01f6{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@4cb01f6{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@4cb01f6{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.195 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.195 [reactor-http-nio-3] DEBUG reactor.netty.channel.FluxReceive - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:31.208 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.209 [qtp158982948-56] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a2ecb7[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.209 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=14/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:31.209 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=14/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.209 [qtp158982948-56] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=14/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.209 [qtp158982948-56] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@787307e2{AC.ReadCB@7ab6ad0b{HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.209 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.209 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:31.209 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@24eb7dab on ManagedSelector@4dee732e{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:31.209 [qtp158982948-56] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4dee732e{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:31.210 [qtp158982948-56] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.210 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@567e2a78 size 1 > capacity -13:18:31.210 [qtp158982948-56] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@567e2a78 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.210 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken with none selected -13:18:31.210 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 0/0/1 selected -13:18:31.210 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 0 keys, 1 updates -13:18:31.210 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.210 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@24eb7dab -13:18:31.210 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.210 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.210 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 1 keys -13:18:31.210 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:31.211 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:31.211 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:31.211 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:31.211 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:31.211 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 1 inactive connections -13:18:31.213 [parallel-4] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:31.215 [parallel-4] ERROR com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - Json Processing Exception -com.fasterxml.jackson.databind.JsonMappingException: Test exception. - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) - at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:80) - at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrapNoCoerce.callConstructor(ConstructorSite.java:105) - at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:249) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest$__spock_feature_0_3_closure1$_closure3.doCall(ProvisionAdaptersClientTest.groovy:212) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:101) - at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) - at org.codehaus.groovy.runtime.metaclass.ClosureMetaClass.invokeMethod(ClosureMetaClass.java:263) - at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1041) - at groovy.lang.Closure.call(Closure.java:405) - at org.spockframework.runtime.GroovyRuntimeUtil.invokeClosure(GroovyRuntimeUtil.java:202) - at org.spockframework.mock.response.CodeResponseGenerator.invokeClosure(CodeResponseGenerator.java:54) - at org.spockframework.mock.response.CodeResponseGenerator.doRespond(CodeResponseGenerator.java:37) - at org.spockframework.mock.response.SingleResponseGenerator.respond(SingleResponseGenerator.java:32) - at org.spockframework.mock.response.ResponseGeneratorChain.respond(ResponseGeneratorChain.java:44) - at org.spockframework.mock.runtime.MockInteraction.accept(MockInteraction.java:73) - at org.spockframework.mock.runtime.MockInteractionDecorator.accept(MockInteractionDecorator.java:50) - at org.spockframework.mock.runtime.InteractionScope$1.accept(InteractionScope.java:51) - at org.spockframework.mock.runtime.MockController.handle(MockController.java:40) - at org.spockframework.mock.runtime.JavaMockInterceptor.intercept(JavaMockInterceptor.java:87) - at org.spockframework.mock.runtime.ByteBuddyInterceptorAdapter.interceptNonAbstract(ByteBuddyInterceptorAdapter.java:35) - at com.fasterxml.jackson.databind.ObjectMapper$SpockMock$456001620.writeValueAsString(Unknown Source) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.getTokenFromApi(ProvisionAdaptersClient.java:169) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.lambda$getUnauthorizedBackoffStrategy$4(ProvisionAdaptersClient.java:133) - at reactor.util.retry.RetryBackoffSpec.lambda$generateCompanion$4(RetryBackoffSpec.java:509) - at reactor.core.publisher.FluxConcatMap$ConcatMapImmediate.drain(FluxConcatMap.java:367) - at reactor.core.publisher.FluxConcatMap$ConcatMapImmediate.innerComplete(FluxConcatMap.java:288) - at reactor.core.publisher.FluxConcatMap$ConcatMapInner.onComplete(FluxConcatMap.java:875) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1756) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onNext(MonoFlatMap.java:241) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.drain(MonoIgnoreThen.java:147) - at reactor.core.publisher.MonoIgnoreThen.subscribe(MonoIgnoreThen.java:56) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:150) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoIgnoreThen$ThenAcceptInner.onNext(MonoIgnoreThen.java:296) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:117) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:31.218 [parallel-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [16315861] Cancel signal (to close connection) -13:18:31.220 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@1551d457{STARTED}[9.4.28.v20200408] -13:18:31.220 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@1551d457{STOPPING}[9.4.28.v20200408] -13:18:31.221 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.221 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.221 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@100703ac{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:31.221 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@2bab9646 on ManagedSelector@100703ac{STOPPING} id=1 keys=1 selected=0 updates=0 -13:18:31.221 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@100703ac{STOPPING} id=1 keys=1 selected=0 updates=1 -13:18:31.221 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken with none selected -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken up from select, 0/0/1 selected -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff processing 0 keys, 1 updates -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@2bab9646 -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@100703ac{STOPPING} id=1 keys=1 selected=0 updates=0 -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3933/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3933/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=3933/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@36d30d4c{AC.ReadCB@4e97f204{HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=3934/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4e97f204[p=HttpParser{s=START,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:31.222 [qtp158982948-60] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3934/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4e97f204[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@100703ac{STOPPING} id=1 keys=1 selected=0 updates=0 -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7563f3db startThread=0 -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff waiting with 1 keys -13:18:31.223 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@51ecb86a on ManagedSelector@100703ac{STOPPING} id=1 keys=0 selected=0 updates=0 -13:18:31.223 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@100703ac{STOPPING} id=1 keys=0 selected=0 updates=1 -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken with none selected -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff woken up from select, 0/0/0 selected -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@758e16ff processing 0 keys, 1 updates -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@51ecb86a -13:18:31.223 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.224 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@7f767d8f size 1 > capacity -13:18:31.224 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@7f767d8f in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.224 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7563f3db in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.224 [qtp158982948-60] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3935/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4e97f204[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.224 [qtp158982948-60] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@4e97f204::NetworkTrafficSocketChannelEndPoint@2bc028f3{/127.0.0.1:64988<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3935/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4e97f204[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@55947826{s=START}]=>HttpChannelOverHttp@21384383{s=HttpChannelState@643ad9c0{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.224 [qtp158982948-60] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7563f3db in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.224 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:31.2248811+02:00 -13:18:31.224 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@37b9fe6/SelectorProducer@414fe08/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:31.2248811+02:00 -13:18:31.224 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@100703ac{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:31.224 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@4dee732e{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:31.224 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@40be4230 on ManagedSelector@4dee732e{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:31.224 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4dee732e{STOPPING} id=0 keys=1 selected=0 updates=1 -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken with none selected -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 0/0/1 selected -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 0 keys, 1 updates -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@40be4230 -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@4dee732e{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=15/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=16/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=16/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.225 [qtp158982948-61] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@787307e2{AC.ReadCB@7ab6ad0b{HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=16/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7ab6ad0b[p=HttpParser{s=START,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.226 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:31.226 [qtp158982948-61] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:31.226 [qtp158982948-61] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=16/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:31.226 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@4dee732e{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:31.226 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@6b7a52c8 startThread=0 -13:18:31.226 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.226 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 waiting with 1 keys -13:18:31.226 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x287ea5f0, L:/127.0.0.1:64989 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x287ea5f0, L:/127.0.0.1:64989 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:31.226 [qtp158982948-57] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp158982948-57-acceptor-0@275fecb0-NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.226 [qtp158982948-57] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@6b7a52c8 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.226 [qtp158982948-57] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=17/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.226 [qtp158982948-57] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@7ab6ad0b::NetworkTrafficSocketChannelEndPoint@285b8860{/127.0.0.1:64989<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=17/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7ab6ad0b[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@e5a22b5{s=START}]=>HttpChannelOverHttp@744043e7{s=HttpChannelState@4cb01f6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.227 [qtp158982948-57] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@6b7a52c8 in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.227 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@5c50e816 on ManagedSelector@4dee732e{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:31.227 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4dee732e{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:31.227 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken with none selected -13:18:31.227 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 woken up from select, 0/0/0 selected -13:18:31.227 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@5c864108 processing 0 keys, 1 updates -13:18:31.227 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.227 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@5c50e816 -13:18:31.227 [qtp158982948-61] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.227 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@3787cc1c size 1 > capacity -13:18:31.227 [qtp158982948-61] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@2a8706d9{s=1/1,p=0}@3787cc1c in QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:31.2288831+02:00 -13:18:31.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@5205918/SelectorProducer@1cd11adc/IDLE/p=false/QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:31.2288831+02:00 -13:18:31.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@4dee732e{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:31.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@69b18ba6[HTTP/1.1] -13:18:31.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@69b18ba6[HTTP/1.1] -13:18:31.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@461b4b25{STARTED} -13:18:31.228 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@461b4b25{STOPPED} -13:18:31.229 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@1551d457{STOPPING}[9.4.28.v20200408] -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@7b61e96{STARTED} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@7b61e96{STOPPING} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@7b61e96{STOPPED} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@4cc212b8{STARTED} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@4cc212b8{STOPPING} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@69acd89a{STARTED,min=32,inflate=-1} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@69acd89a{STOPPING,min=32,inflate=-1} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@52601e0c{/,null,SHUTDOWN} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@52601e0c{/,null,UNAVAILABLE} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@73793946{STARTED} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@73793946{STOPPING} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@73793946{STOPPED} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@5582b731{STARTED} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@5582b731{STOPPING} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-76cba62e@76cba62e==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-75ab203e@75ab203e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-75ab203e@75ab203e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-33023327@33023327==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-33023327@33023327==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-6fbd8bde@87c152b==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-3d7f6203@c0179a3e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-3d7f6203@c0179a3e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@5582b731{STOPPED} -13:18:31.229 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@52601e0c{/,null,UNAVAILABLE} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@52601e0c{/,null,UNAVAILABLE} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@69acd89a{STOPPED,min=32,inflate=-1} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,SHUTDOWN} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,UNAVAILABLE} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@4c1dc3f3{STARTED} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@4c1dc3f3{STOPPING} -13:18:31.229 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:31.230 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-70c30ac8@70c30ac8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:31.230 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.230 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-52e3593c@e440ec4d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.230 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-1d2a5cb4@e786d981==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.230 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-1d2a5cb4@e786d981==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.230 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-7f9ba347@ccada7ac==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.230 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-7f9ba347@ccada7ac==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.230 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@4c1dc3f3{STOPPED} -13:18:31.231 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,UNAVAILABLE} -13:18:31.231 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@130e2bb3{/__admin,null,UNAVAILABLE} -13:18:31.231 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@4cc212b8{STOPPED} -13:18:31.231 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp158982948]@979e324{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.231 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp158982948]@979e324{STOPPING,8<=8<=14,i=5,r=-1,q=0}[ReservedThreadExecutor@2a8706d9{s=1/1,p=0}] -13:18:31.231 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@2a8706d9{s=1/1,p=0} -13:18:31.231 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=0/1,p=0}@132266a2 offer STOP! -13:18:31.231 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@2a8706d9{s=-1/1,p=0} -13:18:31.231 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:31.231 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@1551d457{STOPPED}[9.4.28.v20200408] -13:18:31.232 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=-1/1,p=0}@132266a2 task=STOP! -13:18:31.232 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@2a8706d9{s=-1/1,p=0}@132266a2 Exited -13:18:31.232 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@2a8706d9{s=-1/1,p=0}@132266a2 in QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:31.232 [qtp158982948-55] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp158982948-55,5,main] exited for QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:31.236 [qtp158982948-58] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp158982948-58-acceptor-1@7cc9e609-NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:31.237 [qtp158982948-58] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp158982948-58,5,main] exited for QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:31.237 [qtp158982948-59] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp158982948-59-acceptor-2@3e256032-NetworkTrafficServerConnector@5df3dfa0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:31.237 [qtp158982948-59] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp158982948-59,5,main] exited for QueuedThreadPool[qtp158982948]@979e324{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:31.238 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@39bec851{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp1108502178]@421266a2{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:31.238 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@1f528d4f[HTTP/1.1] added {HttpConfiguration@1d3759f4{32768/8192,8192/8192,https://:0,[]},POJO} -13:18:31.238 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{null, ()}{0.0.0.0:0} added {Server@39bec851{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:18:31.238 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp1108502178]@421266a2{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:31.238 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@372ae0f{STOPPED},AUTO} -13:18:31.238 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@84173db,POJO} -13:18:31.239 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@1f528d4f[HTTP/1.1],AUTO} -13:18:31.239 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@1f528d4f[HTTP/1.1] -13:18:31.239 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:18:31.239 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@39bec851{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:18:31.240 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@39bec851{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,UNAVAILABLE},MANAGED} -13:18:31.240 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@6b47c080 -13:18:31.240 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,UNAVAILABLE} added {ServletHandler@7d530931{STOPPED},MANAGED} -13:18:31.241 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@39bec851{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@1727dcb3{/,null,UNAVAILABLE},MANAGED} -13:18:31.241 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@2a3a38f6 -13:18:31.241 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@1727dcb3{/,null,UNAVAILABLE} added {ServletHandler@7668b24d{STOPPED},MANAGED} -13:18:31.242 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@1727dcb3{/,null,UNAVAILABLE} added {NotFoundHandler@619b45c5{STOPPED},MANAGED} -13:18:31.242 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@1c46823c{STOPPED} added {o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,UNAVAILABLE},AUTO} -13:18:31.244 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:18:31.244 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STOPPED,min=32,inflate=-1} mime types IncludeExclude@44154ddb{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@5d9ee9b4{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@1727dcb3{/,null,UNAVAILABLE},MANAGED} -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@1c46823c{STOPPED} added {GzipHandler@5d9ee9b4{STOPPED,min=32,inflate=-1},AUTO} -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@39bec851{STOPPED}[9.4.28.v20200408] added {HandlerCollection@1c46823c{STOPPED},MANAGED} -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@39bec851{STOPPED}[9.4.28.v20200408] -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@39bec851{STARTING}[9.4.28.v20200408] added {ErrorHandler@21cb5892{STOPPED},AUTO} -13:18:31.245 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@39bec851{STARTING}[9.4.28.v20200408] -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp1108502178]@421266a2{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0} -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp1108502178]@421266a2{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] added {ReservedThreadExecutor@93479f5{s=0/1,p=0},AUTO} -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@93479f5{s=0/1,p=0} -13:18:31.245 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62805ms ReservedThreadExecutor@93479f5{s=0/1,p=0} -13:18:31.246 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1108502178-64,5,main] -13:18:31.249 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1108502178-65,5,main] -13:18:31.249 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1108502178-66,5,main] -13:18:31.250 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1108502178-67,5,main] -13:18:31.250 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1108502178-68,5,main] -13:18:31.250 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1108502178-69,5,main] -13:18:31.250 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1108502178-70,5,main] -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1108502178-71,5,main] -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62810ms QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@1c46823c{STOPPED} -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@1c46823c{STARTING} -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,UNAVAILABLE} -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,STARTING} -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@7d530931{STOPPED} -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-22d3fe67[EMBEDDED:null] -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-22d3fe67@4d50d1ee==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-7e0f62eb[EMBEDDED:null] -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-7e0f62eb@8890a33c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:31.251 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d[EMBEDDED:null] -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-123afc25=org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-123afc25] -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-7e0f62eb=org.eclipse.jetty.servlet.DefaultServlet-7e0f62eb@8890a33c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-22d3fe67=org.eclipse.jetty.servlet.DefaultServlet-22d3fe67@4d50d1ee==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true} -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@7d530931{STARTING} -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62811ms ServletHandler@7d530931{STARTED} -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62811ms org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@4700d1a2 -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62812ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-22d3fe67@4d50d1ee==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62812ms org.eclipse.jetty.servlet.DefaultServlet-22d3fe67@4d50d1ee==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-7e0f62eb@8890a33c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.252 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62812ms org.eclipse.jetty.servlet.DefaultServlet-7e0f62eb@8890a33c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.253 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62812ms o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@5d9ee9b4{STOPPED,min=32,inflate=-1} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@5d9ee9b4{STARTING,min=32,inflate=-1} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@1727dcb3{/,null,UNAVAILABLE} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@1727dcb3{/,null,STARTING} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@7668b24d{STOPPED} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-3376b371[EMBEDDED:null] -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-3376b371@9d75df89==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8[EMBEDDED:null] -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52526961=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52526961@52526961==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-54b9b561=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-54b9b561@54b9b561==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d=org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52526961, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-54b9b561, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d] -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-3376b371=org.eclipse.jetty.servlet.DefaultServlet-3376b371@9d75df89==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:31.253 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@7668b24d{STARTING} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62813ms ServletHandler@7668b24d{STARTED} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@619b45c5{STOPPED} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@619b45c5{STARTING} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62813ms NotFoundHandler@619b45c5{STARTED} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52526961@52526961==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62813ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52526961@52526961==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@5dc98f39 -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-54b9b561@54b9b561==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62813ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-54b9b561@54b9b561==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@4b752524 -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62813ms org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@5ee45585 -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62814ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-3376b371@9d75df89==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62814ms org.eclipse.jetty.servlet.DefaultServlet-3376b371@9d75df89==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.254 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62814ms o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62814ms GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62814ms HandlerCollection@1c46823c{STARTED} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@21cb5892{STOPPED} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@21cb5892{STARTING} -13:18:31.254 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62814ms ErrorHandler@21cb5892{STARTED} -13:18:31.255 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.255 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:31.255 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@372ae0f{STOPPED} -13:18:31.255 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62815ms ScheduledExecutorScheduler@372ae0f{STARTED} -13:18:31.255 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@1f528d4f[HTTP/1.1] -13:18:31.255 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62815ms HttpConnectionFactory@1f528d4f[HTTP/1.1] -13:18:31.255 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.256 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2568794+02:00 added {SelectorProducer@e09e6a1,POJO} -13:18:31.256 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2568794+02:00 added {QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}],UNMANAGED} -13:18:31.257 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2578764+02:00 created -13:18:31.257 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@6cb7ae41{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2578764+02:00,MANAGED} -13:18:31.257 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@6cb7ae41{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:31.257 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2578764+02:00 added {SelectorProducer@4f65efc7,POJO} -13:18:31.258 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2578764+02:00 added {QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}],UNMANAGED} -13:18:31.258 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2588792+02:00 created -13:18:31.258 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@e983464{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2588792+02:00,MANAGED} -13:18:31.258 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@e983464{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:31.258 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@6cb7ae41{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:31.258 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2588792+02:00 -13:18:31.258 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62817ms EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.2588792+02:00 -13:18:31.260 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@5f8c4650 startThread=0 -13:18:31.260 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@53b29160 on ManagedSelector@6cb7ae41{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:31.308 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.308 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@5f8c4650 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.309 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.3098662+02:00 tryProduce false -13:18:31.309 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.309 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@53b29160 -13:18:31.310 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62869ms ManagedSelector@6cb7ae41{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:31.310 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@e983464{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:31.310 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.310869+02:00 -13:18:31.310 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62869ms EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.310869+02:00 -13:18:31.311 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@33c95706 startThread=0 -13:18:31.311 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@7cbd7e0f on ManagedSelector@e983464{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:31.312 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.312 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 0 keys -13:18:31.324 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.324 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@33c95706 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.324 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.3248798+02:00 tryProduce false -13:18:31.325 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.325 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@7cbd7e0f -13:18:31.325 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.325 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 0 keys -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62884ms ManagedSelector@e983464{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62884ms SelectorManager@NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@413e090e,POJO} -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@413e090e startThread=0 -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@6c0a9d8,POJO} -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@6c0a9d8 startThread=0 -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@7fc8af61,POJO} -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@7fc8af61 startThread=0 -13:18:31.325 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62885ms NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:31.325 [Test worker] INFO org.eclipse.jetty.server.Server - Started @62885ms -13:18:31.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @62885ms Server@39bec851{STARTED}[9.4.28.v20200408] -13:18:31.327 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:31.327 [Test worker] DEBUG org.apache.http.wire - http-outgoing-2 << "end of stream" -13:18:31.328 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: Close connection -13:18:31.328 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 3][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:31.328 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:31.328 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:31.329 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:64995<->127.0.0.1:8080 -13:18:31.329 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:31.329 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:31.329 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:31.329 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> POST /__admin/mappings HTTP/1.1 -13:18:31.329 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Content-Length: 328 -13:18:31.330 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Content-Type: text/plain; charset=UTF-8 -13:18:31.330 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Host: localhost:8080 -13:18:31.331 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Connection: Keep-Alive -13:18:31.331 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:31.331 [qtp1108502178-66] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Content-Length: 328[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Host: localhost:8080[\r][\n]" -13:18:31.331 [qtp1108502178-66] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@413e090e in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Connection: Keep-Alive[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "{[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "id" : "114ac421-5127-4729-9cbe-0d7159609aef",[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "request" : {[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "method" : "GET"[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " },[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "response" : {[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "status" : 401[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " },[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "uuid" : "114ac421-5127-4729-9cbe-0d7159609aef",[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:31.331 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "}" -13:18:31.358 [qtp1108502178-66-acceptor-0@413e090e-NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@2b2256f8 on ManagedSelector@e983464{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:31.359 [qtp1108502178-66-acceptor-0@413e090e-NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:31.359 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:31.359 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/0 selected -13:18:31.359 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:31.359 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.359 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@2b2256f8 -13:18:31.359 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@2b2256f8 startThread=0 -13:18:31.359 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.359 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 1 keys -13:18:31.359 [qtp1108502178-67] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.360 [qtp1108502178-67] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@6c0a9d8 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.371 [qtp1108502178-68] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.371 [qtp1108502178-68] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@7fc8af61 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.376 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.376 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@2b2256f8 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.376 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:31.377 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.377 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.377 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:31.377 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.377 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.377 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.378 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@1ce81196{AC.ReadCB@6451b636{HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.378 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.378 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@79a06b15 on ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:31.378 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:31.378 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:31.378 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@2b2256f8 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}] -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/1 selected -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@79a06b15 -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 1 keys -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 1/1/1 selected -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 1 keys, 0 updates -13:18:31.378 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64995], selector=sun.nio.ch.WindowsSelectorImpl@38ce0e5b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0} tryExecute EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.3798582+02:00 -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1} startReservedThread p=1 -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@93479f5{s=0/1,p=1}@3236652b startThread=0 -13:18:31.379 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@93479f5{s=0/1,p=1}@3236652b in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}] -13:18:31.379 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=1}@3236652b started -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.3798582+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:31.379 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@3236652b waiting -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.379 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.380 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 1 keys -13:18:31.381 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.381 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@1ce81196{AC.ReadCB@6451b636{HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.381 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 523 HeapByteBuffer@10a99211[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 523 HeapByteBuffer@10a99211[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:31.382 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 328 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} parsed true HttpParser{s=CONTENT,0 of 328} -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.383 [qtp1108502178-70] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.384 [qtp1108502178-70] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@5b54137a for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d -13:18:31.477 [qtp1108502178-70] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:31.477 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.477 [qtp1108502178-70] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:31.477 [qtp1108502178-70] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.478 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=96/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=96} parse HeapByteBuffer@10a99211[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "114ac421-512...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.478 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a99211[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "114ac421-512...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.478 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=96} Content@7ecdd27{HeapByteBufferR@7deef60c[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "114ac421-512...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.478 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@218bdaba[c=0,q=0,[0]=null,s=STREAM] addContent Content@7ecdd27{HeapByteBufferR@7deef60c[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "114ac421-512...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.478 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:31.478 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=96} -13:18:31.478 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:31.478 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=96} -13:18:31.478 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@218bdaba[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:31.479 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=96/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,328 of 328},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=96} parsed false HttpParser{s=END,328 of 328} -13:18:31.479 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@218bdaba[c=328,q=1,[0]=EOF,s=STREAM] read 328 from Content@7ecdd27{HeapByteBufferR@7deef60c[p=523,l=523,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.479 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=97/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,328 of 328},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=97} -13:18:31.479 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.507 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@5abfd232[p=0,l=328,c=8192,r=328]={<<<{\r\n "id" : "114ac421-512...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:31.507 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@3b5b29a7[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "114ac421-512...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.507 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@3b5b29a7[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "114ac421-512...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@310fe656{null} -13:18:31.507 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=125} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:31.507 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6a24d172] (null,[p=0,l=328,c=32768,r=328],false)@START -13:18:31.507 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@3b5b29a7[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "114ac421-512...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.507 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:31.507 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:31.508 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6a24d172] ([p=0,l=122,c=8192,r=122],[p=0,l=328,c=32768,r=328],false)@COMMITTED -13:18:31.508 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8d0db80{IDLE}->null [HeapByteBuffer@10a99211[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@3b5b29a7[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "114ac421-512...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.508 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{WRITING}->null:IDLE-->WRITING -13:18:31.508 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "HTTP/1.1 201 Created[\r][\n]" -13:18:31.508 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "Content-Type: application/json[\r][\n]" -13:18:31.508 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "Transfer-Encoding: chunked[\r][\n]" -13:18:31.508 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:31.508 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[\r][\n]" -13:18:31.508 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "148[\r][\n]" -13:18:31.508 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=126/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,328 of 328},g=HttpGenerator@28dc6d4b{s=COMMITTED}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=126} -13:18:31.508 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << HTTP/1.1 201 Created -13:18:31.508 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << Content-Type: application/json -13:18:31.508 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << Transfer-Encoding: chunked -13:18:31.508 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << Server: Jetty(9.4.28.v20200408) -13:18:31.508 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 328 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,328 of 328},g=HttpGenerator@28dc6d4b{s=COMMITTED}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=126} -13:18:31.508 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=450 remaining=0 WriteFlusher@8d0db80{WRITING}->null -13:18:31.508 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{IDLE}->null:WRITING-->IDLE -13:18:31.508 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:31.508 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6a24d172] ([p=122,l=122,c=8192,r=0],[p=328,l=328,c=32768,r=0],false)@COMMITTED -13:18:31.508 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@310fe656{null} -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@310fe656{null} -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "{[\r][\n]" -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46a3a19a] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "id" : "114ac421-5127-4729-9cbe-0d7159609aef",[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "request" : {[\r][\n]" -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46a3a19a] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "method" : "GET"[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " },[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "response" : {[\r][\n]" -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46a3a19a] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "status" : 401[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " },[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "uuid" : "114ac421-5127-4729-9cbe-0d7159609aef",[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8d0db80{IDLE}->null [HeapByteBuffer@7d10bd05[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "}" -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{WRITING}->null:IDLE-->WRITING -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "0[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[\r][\n]" -13:18:31.509 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 3][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:31.509 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-3: set socket timeout to 0 -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,328 of 328},g=HttpGenerator@28dc6d4b{s=COMPLETING}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=127} -13:18:31.509 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 3][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@8d0db80{WRITING}->null -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{IDLE}->null:WRITING-->IDLE -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46a3a19a] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.509 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@31f34c94 in null -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=128} -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@198f945a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=128} -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@3ff18df1) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@198f945a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@198f945a{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@198f945a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=128} -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=328 -13:18:31.510 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@198f945a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,328 of 328} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.511 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@1ce81196{AC.ReadCB@6451b636{HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.512 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.512 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@79a06b15 on ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:31.512 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:31.512 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:31.512 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/1 selected -13:18:31.512 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:31.512 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.512 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@79a06b15 -13:18:31.513 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:31.513 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.513 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.513 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 1 keys -13:18:31.513 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 3][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:31.513 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-3: set socket timeout to 30000 -13:18:31.513 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:31.513 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.513 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.514 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[read] I/O error: Read timed out" -13:18:31.514 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:31.514 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:31.514 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:31.514 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> POST /__admin/mappings HTTP/1.1 -13:18:31.514 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Content-Length: 644 -13:18:31.514 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Content-Type: text/plain; charset=UTF-8 -13:18:31.514 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Host: localhost:8080 -13:18:31.514 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Connection: Keep-Alive -13:18:31.514 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:31.514 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:31.514 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Content-Length: 644[\r][\n]" -13:18:31.514 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:31.514 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Host: localhost:8080[\r][\n]" -13:18:31.514 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Connection: Keep-Alive[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "{[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "id" : "f76ac9e4-347a-4b15-a03a-1dae063c4d35",[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "request" : {[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "method" : "POST",[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "headers" : {[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "Content-Type" : {[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "equalTo" : "application/json"[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " }[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " },[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " } ][\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " },[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "response" : {[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "status" : 200,[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "headers" : {[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " }[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " },[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "uuid" : "f76ac9e4-347a-4b15-a03a-1dae063c4d35",[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:31.515 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "}" -13:18:31.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 1/1/1 selected -13:18:31.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 1 keys, 0 updates -13:18:31.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64995], selector=sun.nio.ch.WindowsSelectorImpl@38ce0e5b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:31.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0} tryExecute EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:31.5168386+02:00 -13:18:31.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0}@3236652b offer EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:31.5168386+02:00 -13:18:31.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1} startReservedThread p=1 -13:18:31.540 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@93479f5{s=0/1,p=1}@7734fd09 startThread=0 -13:18:31.540 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@93479f5{s=0/1,p=1}@7734fd09 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}] -13:18:31.540 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:31.5408668+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=28/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:31.540 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@1ce81196{AC.ReadCB@6451b636{HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=28/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.540 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=1}@7734fd09 started -13:18:31.540 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=28/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.540 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 839 HeapByteBuffer@10a99211[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.541 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1}@3236652b task=EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:31.5408668+02:00 -13:18:31.541 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 839 HeapByteBuffer@10a99211[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.541 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:31.5418505+02:00 tryProduce true -13:18:31.541 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.541 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.541 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:31.541 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:31.541 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.541 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=SPACE1,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.541 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 1 keys -13:18:31.540 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@7734fd09 waiting -13:18:31.541 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:31.542 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 644 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=CONTENT,0 of 644},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 644} -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:31.543 [qtp1108502178-65] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=CONTENT,0 of 644},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parse HeapByteBuffer@10a99211[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "f76ac9e4-347...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a99211[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "f76ac9e4-347...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} Content@3fc08962{HeapByteBufferR@468949cf[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "f76ac9e4-347...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@218bdaba[c=0,q=0,[0]=null,s=STREAM] addContent Content@3fc08962{HeapByteBufferR@468949cf[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "f76ac9e4-347...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@218bdaba[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,644 of 644},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parsed false HttpParser{s=END,644 of 644} -13:18:31.544 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@218bdaba[c=644,q=1,[0]=EOF,s=STREAM] read 644 from Content@3fc08962{HeapByteBufferR@468949cf[p=839,l=839,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.545 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,644 of 644},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:31.545 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.577 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@20e0f125[p=0,l=644,c=8192,r=644]={<<<{\r\n "id" : "f76ac9e4-347...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:31.577 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@3b5b29a7[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "f76ac9e4-347...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.577 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@3b5b29a7[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "f76ac9e4-347...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@310fe656{null} -13:18:31.578 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=34} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:31.578 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c934912] (null,[p=0,l=644,c=32768,r=644],false)@START -13:18:31.578 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@3b5b29a7[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "f76ac9e4-347...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.578 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:31.578 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:31.578 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c934912] ([p=0,l=122,c=8192,r=122],[p=0,l=644,c=32768,r=644],false)@COMMITTED -13:18:31.578 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8d0db80{IDLE}->null [HeapByteBuffer@10a99211[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@3b5b29a7[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "f76ac9e4-347...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.578 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{WRITING}->null:IDLE-->WRITING -13:18:31.578 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "HTTP/1.1 201 Created[\r][\n]" -13:18:31.578 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "Content-Type: application/json[\r][\n]" -13:18:31.578 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "Transfer-Encoding: chunked[\r][\n]" -13:18:31.578 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:31.578 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[\r][\n]" -13:18:31.578 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "284[\r][\n]" -13:18:31.578 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << HTTP/1.1 201 Created -13:18:31.578 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=37/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,644 of 644},g=HttpGenerator@28dc6d4b{s=COMMITTED}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=35} -13:18:31.578 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << Content-Type: application/json -13:18:31.578 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << Transfer-Encoding: chunked -13:18:31.578 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << Server: Jetty(9.4.28.v20200408) -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 644 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,644 of 644},g=HttpGenerator@28dc6d4b{s=COMMITTED}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=36} -13:18:31.579 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=766 remaining=0 WriteFlusher@8d0db80{WRITING}->null -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{IDLE}->null:WRITING-->IDLE -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c934912] ([p=122,l=122,c=8192,r=0],[p=644,l=644,c=32768,r=0],false)@COMMITTED -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "{[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "id" : "f76ac9e4-347a-4b15-a03a-1dae063c4d35",[\r][\n]" -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@310fe656{null} -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "request" : {[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "url" : "/api/v0/components/login",[\r][\n]" -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@310fe656{null} -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "method" : "POST",[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "headers" : {[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "Content-Type" : {[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "equalTo" : "application/json"[\r][\n]" -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@135579f4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " }[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " },[\r][\n]" -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@135579f4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "bodyPatterns" : [ {[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " } ][\r][\n]" -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@135579f4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " },[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "response" : {[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "status" : 200,[\r][\n]" -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8d0db80{IDLE}->null [HeapByteBuffer@7d10bd05[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "headers" : {[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "Content-Type" : "application/json"[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " }[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " },[\r][\n]" -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{WRITING}->null:IDLE-->WRITING -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "uuid" : "f76ac9e4-347a-4b15-a03a-1dae063c4d35",[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "}" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "0[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[\r][\n]" -13:18:31.579 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 3][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:31.579 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-3: set socket timeout to 0 -13:18:31.579 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 3][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:31.579 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,644 of 644},g=HttpGenerator@28dc6d4b{s=COMPLETING}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=36} -13:18:31.580 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@8d0db80{WRITING}->null -13:18:31.580 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{IDLE}->null:WRITING-->IDLE -13:18:31.580 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@135579f4] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:31.580 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.582 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@31f34c94 in null -13:18:31.582 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:31.582 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=39} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@198f945a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=40} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@67183022) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@198f945a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@198f945a{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@198f945a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=40} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=644 -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@198f945a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,644 of 644} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:31.583 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.584 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.584 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@1ce81196{AC.ReadCB@6451b636{HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.584 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.584 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@79a06b15 on ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:31.584 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:31.584 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:31.584 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/1 selected -13:18:31.584 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:31.584 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.584 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@79a06b15 -13:18:31.584 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.584 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.584 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 1 keys -13:18:31.584 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.584 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@33c95706 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.592 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:31.593 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 3][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:31.593 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-3: set socket timeout to 30000 -13:18:31.593 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:31.595 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[read] I/O error: Read timed out" -13:18:31.595 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:31.595 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:31.595 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:31.595 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> POST /__admin/mappings HTTP/1.1 -13:18:31.595 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Content-Length: 2378 -13:18:31.595 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Content-Type: text/plain; charset=UTF-8 -13:18:31.595 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Host: localhost:8080 -13:18:31.595 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> Connection: Keep-Alive -13:18:31.595 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Content-Length: 2378[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Host: localhost:8080[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "Connection: Keep-Alive[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "{[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "id" : "e8284612-32ee-4706-9314-cecb77d63231",[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "request" : {[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "method" : "GET",[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "headers" : {[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "Authorization" : {[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " }[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " }[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " },[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "response" : {[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "status" : 200,[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "body" : "{\"id\":\"awx\",\"name\":\"AWX\",\"deleted\":false,\"type\":\"REST\",\"parameters\":{\"provisionAdapterUrl\":\"/provision-adapters/awx/jobs\"},\"questions\":[{\"type\":\"survey.question.FreeInput\",\"prompt\":\"AWX instance URL:\",\"description\":\"This is the URL of the AWX installation.\",\"variableName\":\"provisioningBaseUrl\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"https://inhas66974\",\"answerBaseType\":\"STRING\",\"restrictions\":null},{\"type\":\"survey.question.SelectOption\",\"prompt\":\"Select AWX template type\",\"description\":\"Actually only workflow job templates are supported.\",\"variableName\":\"awxTemplateType\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"minimumNumberSelections\":1,\"maximumNumberSelections\":1,\"options\":[\"workflow\"],\"defaultAnswer\":[\"workflow\"]},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Specify provisioning job identifier\",\"description\":\"You can find this identifier in AWX.\",\"variableName\":\"awxTemplateId\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":null,\"answerBaseType\":\"INTEGER\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning username:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningUsername\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.username\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning password:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningPassword\",\"mandatory\":true,\"masked\":true,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.password\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null}]}",[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "headers" : {[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " }[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " },[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "uuid" : "e8284612-32ee-4706-9314-cecb77d63231",[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:31.596 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 >> "}" -13:18:31.596 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 1/1/1 selected -13:18:31.596 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 1 keys, 0 updates -13:18:31.596 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64995], selector=sun.nio.ch.WindowsSelectorImpl@38ce0e5b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=12/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.597 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=12/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.597 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:31.597 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0} tryExecute EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:31.5978367+02:00 -13:18:31.597 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0}@7734fd09 offer EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:31.5978367+02:00 -13:18:31.598 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1} startReservedThread p=1 -13:18:31.598 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@93479f5{s=0/1,p=1}@6da6603 startThread=0 -13:18:31.598 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:31.59883+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:31.598 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@1ce81196{AC.ReadCB@6451b636{HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.599 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.599 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 2574 HeapByteBuffer@10a99211[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.599 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 2574 HeapByteBuffer@10a99211[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.599 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=2574,c=8192,r=2574]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 2378 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=CONTENT,0 of 2378},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 2378} -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.600 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:31.600 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1}@7734fd09 task=EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:31.6008306+02:00 -13:18:31.601 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:31.601 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:31.6018331+02:00 tryProduce true -13:18:31.601 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.601 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:31.601 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.601 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.601 [qtp1108502178-69] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.601 [qtp1108502178-69] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.601 [qtp1108502178-69] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:31.601 [qtp1108502178-69] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=CONTENT,0 of 2378},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} parse HeapByteBuffer@10a99211[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "e8284612-32e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a99211[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "e8284612-32e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} Content@81d88a8{HeapByteBufferR@c220d73[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "e8284612-32e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@218bdaba[c=0,q=0,[0]=null,s=STREAM] addContent Content@81d88a8{HeapByteBufferR@c220d73[p=196,l=2574,c=8192,r=2378]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "e8284612-32e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@218bdaba[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} parsed false HttpParser{s=END,2378 of 2378} -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@218bdaba[c=2378,q=1,[0]=EOF,s=STREAM] read 2378 from Content@81d88a8{HeapByteBufferR@c220d73[p=2574,l=2574,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.602 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=CONTENT,0 of 2378},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:31.602 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 1 keys -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:31.602 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.602 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@93479f5{s=0/1,p=1}@6da6603 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}] -13:18:31.602 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=1}@6da6603 started -13:18:31.602 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@6da6603 waiting -13:18:31.633 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@290f7ddc[p=0,l=2378,c=8192,r=2378]={<<<{\r\n "id" : "e8284612-32e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:31.634 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@3b5b29a7[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "e8284612-32e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.634 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@3b5b29a7[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "e8284612-32e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@310fe656{null} -13:18:31.634 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=34} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:31.634 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d8a4678] (null,[p=0,l=2378,c=32768,r=2378],false)@START -13:18:31.635 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@3b5b29a7[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "e8284612-32e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.635 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:31.635 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:31.635 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d8a4678] ([p=0,l=122,c=8192,r=122],[p=0,l=2378,c=32768,r=2378],false)@COMMITTED -13:18:31.635 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8d0db80{IDLE}->null [HeapByteBuffer@10a99211[p=0,l=122,c=8192,r=122]={<<>>ection: K...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@3b5b29a7[p=0,l=2378,c=32768,r=2378]={<<<{\r\n "id" : "e8284612-32e...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.635 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{WRITING}->null:IDLE-->WRITING -13:18:31.635 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "HTTP/1.1 201 Created[\r][\n]" -13:18:31.635 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "Content-Type: application/json[\r][\n]" -13:18:31.635 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "Transfer-Encoding: chunked[\r][\n]" -13:18:31.635 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:31.635 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[\r][\n]" -13:18:31.635 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "94A[\r][\n]" -13:18:31.635 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << HTTP/1.1 201 Created -13:18:31.635 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << Content-Type: application/json -13:18:31.635 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << Transfer-Encoding: chunked -13:18:31.635 [Test worker] DEBUG org.apache.http.headers - http-outgoing-3 << Server: Jetty(9.4.28.v20200408) -13:18:31.635 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=35/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@28dc6d4b{s=COMMITTED}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=35} -13:18:31.636 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 2378 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@28dc6d4b{s=COMMITTED}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=36} -13:18:31.636 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:31.636 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=2500 remaining=0 WriteFlusher@8d0db80{WRITING}->null -13:18:31.636 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{IDLE}->null:WRITING-->IDLE -13:18:31.636 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d8a4678] ([p=122,l=122,c=8192,r=0],[p=2378,l=2378,c=32768,r=0],false)@COMMITTED -13:18:31.636 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "{[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "id" : "e8284612-32ee-4706-9314-cecb77d63231",[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "request" : {[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "url" : "/api/v0/components/provision-adapters/awx",[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "method" : "GET",[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "headers" : {[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "Authorization" : {[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:31.636 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@310fe656{null} -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " }[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " }[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " },[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "response" : {[\r][\n]" -13:18:31.636 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "status" : 200,[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "body" : "{\"id\":\"awx\",\"name\":\"AWX\",\"deleted\":false,\"type\":\"REST\",\"parameters\":{\"provisionAdapterUrl\":\"/provision-adapters/awx/jobs\"},\"questions\":[{\"type\":\"survey.question.FreeInput\",\"prompt\":\"AWX instance URL:\",\"description\":\"This is the URL of the AWX installation.\",\"variableName\":\"provisioningBaseUrl\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"https://inhas66974\",\"answerBaseType\":\"STRING\",\"restrictions\":null},{\"type\":\"survey.question.SelectOption\",\"prompt\":\"Select AWX template type\",\"description\":\"Actually only workflow job templates are supported.\",\"variableName\":\"awxTemplateType\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"minimumNumberSelections\":1,\"maximumNumberSelections\":1,\"options\":[\"workflow\"],\"defaultAnswer\":[\"workflow\"]},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Specify provisioning job identifier\",\"description\":\"You can find this identifier in AWX.\",\"variableName\":\"awxTemplateId\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":null,\"answerBaseType\":\"INTEGER\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning username:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningUsername\",\"mandatory\":true,\"masked\":false,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.username\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null},{\"type\":\"survey.question.FreeInput\",\"prompt\":\"Provisioning password:\",\"description\":\"Please use environment variable identifier.\",\"variableName\":\"provisioningPassword\",\"mandatory\":true,\"masked\":true,\"hidden\":false,\"defaultAnswer\":\"provisioner.awx.datalabs.password\",\"answerBaseType\":\"CREDENTIAL\",\"restrictions\":null}]}",[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "headers" : {[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "Content-Type" : "application/json"[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " }[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " },[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "uuid" : "e8284612-32ee-4706-9314-cecb77d63231",[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "}" -13:18:31.636 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@310fe656{null} -13:18:31.637 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@292c49b4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.637 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@292c49b4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.637 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@292c49b4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.637 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8d0db80{IDLE}->null [HeapByteBuffer@7d10bd05[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.637 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{WRITING}->null:IDLE-->WRITING -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "0[\r][\n]" -13:18:31.637 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "[\r][\n]" -13:18:31.637 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=END,2378 of 2378},g=HttpGenerator@28dc6d4b{s=COMPLETING}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=37} -13:18:31.637 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 3][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:31.637 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-3: set socket timeout to 0 -13:18:31.637 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@8d0db80{WRITING}->null -13:18:31.637 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8d0db80{IDLE}->null:WRITING-->IDLE -13:18:31.638 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 3][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4e2eb4c7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@292c49b4] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@31f34c94 in null -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=38} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@198f945a{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@198f945a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=38} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@7f72c3dd) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@198f945a{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@198f945a{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@198f945a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=38} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=2378 -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@198f945a{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,2378 of 2378} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.638 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@1ce81196{AC.ReadCB@6451b636{HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@79a06b15 on ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:31.639 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:31.639 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/1 selected -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.639 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:31.639 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.639 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@79a06b15 -13:18:31.639 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@3236652b size 1 > capacity -13:18:31.640 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.640 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.640 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 1 keys -13:18:31.640 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@93479f5{s=1/1,p=0}@3236652b in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.644 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [59b194d9] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:31.645 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:31.646 [reactor-http-nio-4] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xcbaa31af] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:31.648 [qtp1108502178-66-acceptor-0@413e090e-NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@25e5adec on ManagedSelector@6cb7ae41{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:31.648 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:31.648 [qtp1108502178-66-acceptor-0@413e090e-NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6cb7ae41{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:31.648 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:31.649 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:31.649 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken with none selected -13:18:31.649 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 0/0/0 selected -13:18:31.649 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 0 keys, 1 updates -13:18:31.649 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.649 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@25e5adec -13:18:31.649 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:31.649 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@25e5adec startThread=0 -13:18:31.649 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.649 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 1 keys -13:18:31.649 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:31.649 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:31.649 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:31.649 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@25e5adec in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.649 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@36b33c0c{AC.ReadCB@18566bd7{HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@4602fed7 on ManagedSelector@6cb7ae41{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:31.650 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6cb7ae41{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken with none selected -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 0/0/1 selected -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 0 keys, 1 updates -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@4602fed7 -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.651 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 1 keys -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 1/1/1 selected -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 1 keys, 0 updates -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64996], selector=sun.nio.ch.WindowsSelectorImpl@7fe0685e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.651 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.651 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@25e5adec in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:31.651 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0} tryExecute EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.6518261+02:00 -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0}@6da6603 offer EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.6528231+02:00 -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1} startReservedThread p=1 -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@93479f5{s=0/1,p=1}@7518032e startThread=0 -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:31.6528231+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@36b33c0c{AC.ReadCB@18566bd7{HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.652 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>>che-HttpC...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:31.653 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@93479f5{s=0/1,p=1}@7518032e in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}] -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:31.653 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=1}@7518032e started -13:18:31.653 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@7518032e waiting -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:31.653 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1}@6da6603 task=EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:31.6528231+02:00 -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:31.653 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:31.6538249+02:00 tryProduce true -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:31.653 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:31.653 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:31.653 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=HEADER,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.653 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 1 keys -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:31.653 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@301a83e9 in null -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:31.654 [qtp1108502178-64] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@4c44bf2c for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8 -13:18:31.655 [qtp1108502178-64] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:31.655 [qtp1108502178-64] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:31.655 [qtp1108502178-64] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:31.656 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@160d66f[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:31.657 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} parsed false HttpParser{s=END,0 of -1} -13:18:31.657 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=4} -13:18:31.657 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@34d4b41e exclude by status 401 -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@50357ca6{null} -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=12} -401 null HTTP/1.1 -Matched-Stub-Id: 114ac421-5127-4729-9cbe-0d7159609aef - - -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3e357ebe] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 114ac421-5127-4729-9cbe-0d7159609aef - - -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3e357ebe] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2fd05922{IDLE}->null [HeapByteBuffer@10a99211[p=0,l=145,c=8192,r=145]={<<>> Bearer \r...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.665 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{WRITING}->null:IDLE-->WRITING -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=COMMITTED}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=12} -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@2fd05922{WRITING}->null -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{IDLE}->null:WRITING-->IDLE -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3e357ebe] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@50357ca6{null} -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@50357ca6{null} -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@547bc032] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@547bc032] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@547bc032] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2fd05922{IDLE}->null [HeapByteBuffer@7d10bd05[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{WRITING}->null:IDLE-->WRITING -13:18:31.666 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=114ac421-5127-4729-9cbe-0d7159609aef, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:31.666 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=COMPLETING}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=13} -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@2fd05922{WRITING}->null -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{IDLE}->null:WRITING-->IDLE -13:18:31.666 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [59b194d9] Response 401 UNAUTHORIZED -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@547bc032] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:31.666 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=14} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3e69d518{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=14} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@65091572) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3e69d518{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3e69d518{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3e69d518{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=14} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3e69d518{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.667 [reactor-http-nio-4] DEBUG reactor.netty.channel.FluxReceive - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.667 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.668 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@36b33c0c{AC.ReadCB@18566bd7{HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.668 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.668 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@4602fed7 on ManagedSelector@6cb7ae41{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:31.668 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:31.668 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6cb7ae41{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:31.668 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.668 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@5f8c4650 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.668 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken with none selected -13:18:31.668 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 0/0/1 selected -13:18:31.668 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 0 keys, 1 updates -13:18:31.668 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.668 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@4602fed7 -13:18:31.668 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.668 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.668 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 1 keys -13:18:31.669 [reactor-http-nio-4] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:31.672 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [38ee4a55] HTTP POST http://localhost:8080/api/v0/components/login -13:18:31.673 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b] Created a new pooled channel, now 2 active connections and 0 inactive connections -13:18:31.674 [reactor-http-nio-4] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xe6d25d0b] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:31.674 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:31.674 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:31.674 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:31.674 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:31.674 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:31.674 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Channel cleaned, now 1 active connections and 1 inactive connections -13:18:31.676 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:31.676 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 1 inactive connections -13:18:31.676 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:31.676 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:31.676 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:31.676 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:31.676 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:31.676 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:31.677 [qtp1108502178-66-acceptor-0@413e090e-NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@21da3d88 on ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:31.677 [reactor-http-nio-4] DEBUG org.springframework.core.codec.CharSequenceEncoder - [38ee4a55] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:31.677 [qtp1108502178-66-acceptor-0@413e090e-NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:31.677 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:31.677 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/1 selected -13:18:31.677 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:31.677 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.677 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@21da3d88 -13:18:31.677 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@21da3d88 startThread=0 -13:18:31.677 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.677 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 2 keys -13:18:31.678 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:31.679 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@21da3d88 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.679 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:31.679 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.679 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:31.679 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.680 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.680 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.680 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@5186b4bf{AC.ReadCB@52f0da96{HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.680 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.681 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@79b83862 on ManagedSelector@e983464{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:31.681 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/2 selected -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:31.681 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/1,kio=0,kro=0}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@79b83862 -13:18:31.681 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@21da3d88 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 2 keys -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 1/1/2 selected -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 1 keys, 0 updates -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64997], selector=sun.nio.ch.WindowsSelectorImpl@38ce0e5b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.681 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.682 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:31.682 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0} tryExecute EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:31.6828143+02:00 -13:18:31.682 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0}@7518032e offer EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:31.6828143+02:00 -13:18:31.682 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1} startReservedThread p=1 -13:18:31.682 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@93479f5{s=0/1,p=1}@5fb878ee startThread=0 -13:18:31.682 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@93479f5{s=0/1,p=1}@5fb878ee in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}] -13:18:31.682 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=1}@5fb878ee started -13:18:31.682 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@5fb878ee waiting -13:18:31.682 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:31.6828143+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:31.682 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@5186b4bf{AC.ReadCB@52f0da96{HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.683 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@7518032e task=EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:31.6828143+02:00 -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.683 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:31.6838206+02:00 tryProduce true -13:18:31.683 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:31.683 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.683 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.683 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 2 keys -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:31.683 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@5b87e7c1 in null -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:31.684 [qtp1108502178-71] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parse HeapByteBuffer@10a99211[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a99211[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} Content@1e8572d5{HeapByteBufferR@33327fb0[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2f510e30[c=0,q=0,[0]=null,s=STREAM] addContent Content@1e8572d5{HeapByteBufferR@33327fb0[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2f510e30[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parsed false HttpParser{s=END,51 of 51} -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2f510e30[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@1e8572d5{HeapByteBufferR@33327fb0[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:31.685 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:31.690 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@4b0c5df4[p=0,l=21,c=8192,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:31.690 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/login)@5b87e7c1 -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@5ec5b200 exclude no deflater -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@79420766{null} -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: f76ac9e4-347a-4b15-a03a-1dae063c4d35 -Vary: Accept-Encoding, User-Agent - - -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7ae49781] (null,[p=0,l=21,c=32768,r=21],false)@START -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: f76ac9e4-347a-4b15-a03a-1dae063c4d35 -Vary: Accept-Encoding, User-Agent - - -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7ae49781] ([p=0,l=206,c=8192,r=206],[p=0,l=21,c=32768,r=21],false)@COMMITTED -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@9426f6f{IDLE}->null [HeapByteBuffer@10a99211[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{WRITING}->null:IDLE-->WRITING -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=COMMITTED}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -13:18:31.691 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 21 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=COMMITTED}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=227 remaining=0 WriteFlusher@9426f6f{WRITING}->null -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{IDLE}->null:WRITING-->IDLE -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7ae49781] ([p=206,l=206,c=8192,r=0],[p=21,l=21,c=32768,r=0],false)@COMMITTED -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@79420766{null} -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@79420766{null} -13:18:31.692 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=f76ac9e4-347a-4b15-a03a-1dae063c4d35, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@60522016] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.692 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@60522016] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@60522016] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@9426f6f{IDLE}->null [HeapByteBuffer@7d10bd05[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:31.692 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [38ee4a55] Response 200 OK -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{WRITING}->null:IDLE-->WRITING -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=COMPLETING}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=9} -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@9426f6f{WRITING}->null -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{IDLE}->null:WRITING-->IDLE -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@60522016] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:31.692 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:31.692 [reactor-http-nio-4] DEBUG reactor.netty.channel.FluxReceive - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3d5787d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@7078b875) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3d5787d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d5787d{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3d5787d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=21 -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3d5787d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,51 of 51} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.693 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:31.693 [reactor-http-nio-4] DEBUG org.springframework.core.codec.StringDecoder - [38ee4a55] Decoded "{"token":"someToken"}" -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:31.693 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.694 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.694 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@5186b4bf{AC.ReadCB@52f0da96{HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:31.694 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.694 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@79b83862 on ManagedSelector@e983464{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:31.694 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:31.694 [qtp1108502178-71] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:31.694 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@7734fd09 size 1 > capacity -13:18:31.694 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@93479f5{s=1/1,p=0}@7734fd09 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:31.694 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:31.694 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/2 selected -13:18:31.694 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:31.694 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:31.694 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@79b83862 -13:18:31.695 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:31.695 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:31.695 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 2 keys -13:18:31.694 [reactor-http-nio-4] ERROR com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - Json Processing Exception -com.fasterxml.jackson.databind.JsonMappingException: Test exception. - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) - at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:80) - at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrapNoCoerce.callConstructor(ConstructorSite.java:105) - at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallConstructor(CallSiteArray.java:59) - at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:237) - at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:249) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest$__spock_feature_0_4_closure2$_closure4.doCall(ProvisionAdaptersClientTest.groovy:263) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:101) - at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) - at org.codehaus.groovy.runtime.metaclass.ClosureMetaClass.invokeMethod(ClosureMetaClass.java:263) - at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1041) - at groovy.lang.Closure.call(Closure.java:405) - at org.spockframework.runtime.GroovyRuntimeUtil.invokeClosure(GroovyRuntimeUtil.java:202) - at org.spockframework.mock.response.CodeResponseGenerator.invokeClosure(CodeResponseGenerator.java:54) - at org.spockframework.mock.response.CodeResponseGenerator.doRespond(CodeResponseGenerator.java:37) - at org.spockframework.mock.response.SingleResponseGenerator.respond(SingleResponseGenerator.java:32) - at org.spockframework.mock.response.ResponseGeneratorChain.respond(ResponseGeneratorChain.java:44) - at org.spockframework.mock.runtime.MockInteraction.accept(MockInteraction.java:73) - at org.spockframework.mock.runtime.MockInteractionDecorator.accept(MockInteractionDecorator.java:50) - at org.spockframework.mock.runtime.InteractionScope$1.accept(InteractionScope.java:51) - at org.spockframework.mock.runtime.MockController.handle(MockController.java:40) - at org.spockframework.mock.runtime.JavaMockInterceptor.intercept(JavaMockInterceptor.java:87) - at org.spockframework.mock.runtime.ByteBuddyInterceptorAdapter.interceptNonAbstract(ByteBuddyInterceptorAdapter.java:35) - at com.fasterxml.jackson.databind.ObjectMapper$SpockMock$456001620.readValue(Unknown Source) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.lambda$getTokenFromApi$8(ProvisionAdaptersClient.java:180) - at reactor.core.publisher.MonoPeekTerminal$MonoTerminalPeekSubscriber.onNext(MonoPeekTerminal.java:164) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onNext(MonoFlatMap.java:241) - at reactor.core.publisher.FluxOnAssembly$OnAssemblySubscriber.onNext(FluxOnAssembly.java:385) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext(FluxMapFuseable.java:121) - at reactor.core.publisher.FluxContextStart$ContextStartSubscriber.onNext(FluxContextStart.java:96) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onNext(FluxMapFuseable.java:287) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onNext(FluxFilterFuseable.java:330) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:152) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:366) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:367) - at reactor.netty.channel.ChannelOperations.terminate(ChannelOperations.java:423) - at reactor.netty.http.client.HttpClientOperations.onInboundNext(HttpClientOperations.java:607) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:96) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:296) - at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:714) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:576) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:31.695 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:31.695 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:31.695 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:31.695 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:31.695 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:31.695 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:32.809 [parallel-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [59b194d9] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:32.809 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 1 inactive connections -13:18:32.810 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:32.810 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:32.810 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:32.811 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:32.812 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 1/1/1 selected -13:18:32.812 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 1 keys, 0 updates -13:18:32.812 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64996], selector=sun.nio.ch.WindowsSelectorImpl@7fe0685e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1143/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.812 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1143/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.812 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:32.812 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1144/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:32.812 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0} tryExecute EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:32.8121959+02:00 -13:18:32.813 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0}@5fb878ee offer EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:32.8121959+02:00 -13:18:32.813 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1} startReservedThread p=1 -13:18:32.813 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@93479f5{s=0/1,p=1}@648544e4 startThread=0 -13:18:32.813 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:32.8131961+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1144/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:32.813 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@93479f5{s=0/1,p=1}@648544e4 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}] -13:18:32.813 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=1}@648544e4 started -13:18:32.813 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@36b33c0c{AC.ReadCB@18566bd7{HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1145/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:32.813 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1}@5fb878ee task=EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:32.8131961+02:00 -13:18:32.813 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1145/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:32.813 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>> chunked\r...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.813 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:32.8131961+02:00 tryProduce true -13:18:32.813 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:32.813 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:32.814 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.814 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 1 keys -13:18:32.813 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@648544e4 waiting -13:18:32.813 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>> chunked\r...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>> chunked\r...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>> chunked\r...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:32.814 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:32.815 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:32.815 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:32.815 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:32.815 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:32.815 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:32.815 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:32.815 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@301a83e9 in null -13:18:32.815 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:32.815 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:32.816 [qtp1108502178-70] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:32.816 [qtp1108502178-70] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:32.816 [qtp1108502178-70] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:32.816 [qtp1108502178-70] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:32.816 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.816 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.816 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.816 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:32.816 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.817 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:32.817 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:32.817 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:32.817 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:32.817 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@160d66f[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:32.817 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:32.817 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:32.817 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@1c0525e4 exclude by status 401 -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@50357ca6{null} -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=5} -401 null HTTP/1.1 -Matched-Stub-Id: 114ac421-5127-4729-9cbe-0d7159609aef - - -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@37b95d1c] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 114ac421-5127-4729-9cbe-0d7159609aef - - -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@37b95d1c] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2fd05922{IDLE}->null [HeapByteBuffer@10a99211[p=0,l=145,c=8192,r=145]={<<>> Bearer \r...\x00\x00\x00\x00\x00\x00\x00}] -13:18:32.819 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{WRITING}->null:IDLE-->WRITING -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=COMMITTED}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=6} -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@2fd05922{WRITING}->null -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{IDLE}->null:WRITING-->IDLE -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@37b95d1c] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@50357ca6{null} -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@50357ca6{null} -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@414c01f] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@414c01f] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@414c01f] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2fd05922{IDLE}->null [HeapByteBuffer@7d10bd05[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{WRITING}->null:IDLE-->WRITING -13:18:32.820 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=114ac421-5127-4729-9cbe-0d7159609aef, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:32.820 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=COMPLETING}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=6} -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@2fd05922{WRITING}->null -13:18:32.820 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [59b194d9] Response 401 UNAUTHORIZED -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{IDLE}->null:WRITING-->IDLE -13:18:32.820 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@414c01f] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3e69d518{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@4af8061d) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3e69d518{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3e69d518{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3e69d518{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3e69d518{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.821 [reactor-http-nio-4] DEBUG reactor.netty.channel.FluxReceive - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.821 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:32.822 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.822 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.822 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@36b33c0c{AC.ReadCB@18566bd7{HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:32.822 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:32.822 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.822 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@4602fed7 on ManagedSelector@6cb7ae41{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:32.822 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6cb7ae41{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:32.822 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken with none selected -13:18:32.822 [qtp1108502178-70] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:32.822 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 0/0/1 selected -13:18:32.822 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 0 keys, 1 updates -13:18:32.822 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@6da6603 size 1 > capacity -13:18:32.822 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:32.822 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@4602fed7 -13:18:32.822 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@93479f5{s=1/1,p=0}@6da6603 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:32.822 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.822 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:32.822 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 1 keys -13:18:32.823 [reactor-http-nio-4] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:32.825 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [744b3a9d] HTTP POST http://localhost:8080/api/v0/components/login -13:18:32.825 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Channel acquired, now 2 active connections and 0 inactive connections -13:18:32.825 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:32.825 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:32.826 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:32.826 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:32.826 [reactor-http-nio-4] DEBUG org.springframework.core.codec.CharSequenceEncoder - [744b3a9d] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:32.828 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 1/1/2 selected -13:18:32.828 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 1 keys, 0 updates -13:18:32.828 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:32.828 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64997], selector=sun.nio.ch.WindowsSelectorImpl@38ce0e5b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1133/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.828 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1133/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.828 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1133/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:32.828 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0} tryExecute EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:32.8282042+02:00 -13:18:32.828 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:32.828 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0}@648544e4 offer EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:32.8282042+02:00 -13:18:32.828 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:32.828 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1} startReservedThread p=1 -13:18:32.828 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:32.828 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@93479f5{s=0/1,p=1}@2d41a072 startThread=0 -13:18:32.828 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:32.829 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:32.829 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Channel cleaned, now 1 active connections and 1 inactive connections -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:32.8291971+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1134/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@5186b4bf{AC.ReadCB@52f0da96{HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1134/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1134/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:32.829 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@5b87e7c1 in null -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:32.830 [qtp1108502178-69] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:32.831 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@93479f5{s=0/1,p=1}@2d41a072 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}] -13:18:32.831 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=1}@2d41a072 started -13:18:32.831 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@2d41a072 waiting -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} parse HeapByteBuffer@10a99211[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a99211[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.830 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1}@648544e4 task=EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:32.8301962+02:00 -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} Content@32e79a24{HeapByteBufferR@794d1425[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2f510e30[c=0,q=0,[0]=null,s=STREAM] addContent Content@32e79a24{HeapByteBufferR@794d1425[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:32.831 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:32.8311965+02:00 tryProduce true -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2f510e30[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:32.831 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:32.831 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} parsed false HttpParser{s=END,51 of 51} -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2f510e30[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@32e79a24{HeapByteBufferR@794d1425[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:32.831 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:32.832 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:32.831 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:32.833 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 2 keys -13:18:32.834 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@10484cfa[p=0,l=21,c=8192,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:32.834 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.834 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/login)@5b87e7c1 -13:18:32.834 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@302a2cb1 exclude no deflater -13:18:32.834 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@79420766{null} -13:18:32.834 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=4} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: f76ac9e4-347a-4b15-a03a-1dae063c4d35 -Vary: Accept-Encoding, User-Agent - - -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3e12b62a] (null,[p=0,l=21,c=32768,r=21],false)@START -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: f76ac9e4-347a-4b15-a03a-1dae063c4d35 -Vary: Accept-Encoding, User-Agent - - -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3e12b62a] ([p=0,l=206,c=8192,r=206],[p=0,l=21,c=32768,r=21],false)@COMMITTED -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@9426f6f{IDLE}->null [HeapByteBuffer@10a99211[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{WRITING}->null:IDLE-->WRITING -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=COMMITTED}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=5} -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 21 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=COMMITTED}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=5} -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=227 remaining=0 WriteFlusher@9426f6f{WRITING}->null -13:18:32.835 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{IDLE}->null:WRITING-->IDLE -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3e12b62a] ([p=206,l=206,c=8192,r=0],[p=21,l=21,c=32768,r=0],false)@COMMITTED -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@79420766{null} -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@79420766{null} -13:18:32.836 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=f76ac9e4-347a-4b15-a03a-1dae063c4d35, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2f6f71f1] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2f6f71f1] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:32.836 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2f6f71f1] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@9426f6f{IDLE}->null [HeapByteBuffer@7d10bd05[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{WRITING}->null:IDLE-->WRITING -13:18:32.836 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [744b3a9d] Response 200 OK -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=COMPLETING}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@9426f6f{WRITING}->null -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{IDLE}->null:WRITING-->IDLE -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2f6f71f1] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -13:18:32.836 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3d5787d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=7} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@7d92c77a) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3d5787d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.837 [reactor-http-nio-4] DEBUG reactor.netty.channel.FluxReceive - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d5787d{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3d5787d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=7} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=21 -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3d5787d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,51 of 51} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.837 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.837 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:32.838 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@5186b4bf{AC.ReadCB@52f0da96{HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:32.838 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.838 [reactor-http-nio-4] DEBUG org.springframework.core.codec.StringDecoder - [744b3a9d] Decoded "{"token":"someToken"}" -13:18:32.838 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@79b83862 on ManagedSelector@e983464{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:32.838 [qtp1108502178-69] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:32.838 [qtp1108502178-69] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:32.838 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@7518032e size 1 > capacity -13:18:32.838 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@93479f5{s=1/1,p=0}@7518032e in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:32.838 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:32.838 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/2 selected -13:18:32.838 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:32.838 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:32.838 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@79b83862 -13:18:32.838 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:32.838 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:32.838 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 2 keys -13:18:32.838 [reactor-http-nio-4] ERROR com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - Json Processing Exception -com.fasterxml.jackson.databind.JsonMappingException: Test exception. - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) - at org.codehaus.groovy.reflection.CachedConstructor.invoke(CachedConstructor.java:80) - at org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrapNoCoerce.callConstructor(ConstructorSite.java:105) - at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callConstructor(AbstractCallSite.java:249) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClientTest$__spock_feature_0_4_closure2$_closure4.doCall(ProvisionAdaptersClientTest.groovy:263) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:566) - at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:101) - at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:323) - at org.codehaus.groovy.runtime.metaclass.ClosureMetaClass.invokeMethod(ClosureMetaClass.java:263) - at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1041) - at groovy.lang.Closure.call(Closure.java:405) - at org.spockframework.runtime.GroovyRuntimeUtil.invokeClosure(GroovyRuntimeUtil.java:202) - at org.spockframework.mock.response.CodeResponseGenerator.invokeClosure(CodeResponseGenerator.java:54) - at org.spockframework.mock.response.CodeResponseGenerator.doRespond(CodeResponseGenerator.java:37) - at org.spockframework.mock.response.SingleResponseGenerator.respond(SingleResponseGenerator.java:32) - at org.spockframework.mock.response.ResponseGeneratorChain.respond(ResponseGeneratorChain.java:44) - at org.spockframework.mock.runtime.MockInteraction.accept(MockInteraction.java:73) - at org.spockframework.mock.runtime.MockInteractionDecorator.accept(MockInteractionDecorator.java:50) - at org.spockframework.mock.runtime.InteractionScope$1.accept(InteractionScope.java:51) - at org.spockframework.mock.runtime.MockController.handle(MockController.java:40) - at org.spockframework.mock.runtime.JavaMockInterceptor.intercept(JavaMockInterceptor.java:87) - at org.spockframework.mock.runtime.ByteBuddyInterceptorAdapter.interceptNonAbstract(ByteBuddyInterceptorAdapter.java:35) - at com.fasterxml.jackson.databind.ObjectMapper$SpockMock$456001620.readValue(Unknown Source) - at com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient.lambda$getTokenFromApi$8(ProvisionAdaptersClient.java:180) - at reactor.core.publisher.MonoPeekTerminal$MonoTerminalPeekSubscriber.onNext(MonoPeekTerminal.java:164) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onNext(MonoFlatMap.java:241) - at reactor.core.publisher.FluxOnAssembly$OnAssemblySubscriber.onNext(FluxOnAssembly.java:385) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext(FluxMapFuseable.java:121) - at reactor.core.publisher.FluxContextStart$ContextStartSubscriber.onNext(FluxContextStart.java:96) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onNext(FluxMapFuseable.java:287) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onNext(FluxFilterFuseable.java:330) - at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1755) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:152) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:252) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:136) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:366) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:367) - at reactor.netty.channel.ChannelOperations.terminate(ChannelOperations.java:423) - at reactor.netty.http.client.HttpClientOperations.onInboundNext(HttpClientOperations.java:607) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:96) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:296) - at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:714) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:576) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:32.839 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:32.839 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:32.839 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:32.839 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:32.839 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:32.839 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:34.493 [parallel-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [59b194d9] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/awx -13:18:34.494 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 1 inactive connections -13:18:34.494 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:34.494 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:34.494 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/awx, method=GET} -13:18:34.495 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:34.496 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 1/1/1 selected -13:18:34.496 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 1 keys, 0 updates -13:18:34.496 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64996], selector=sun.nio.ch.WindowsSelectorImpl@7fe0685e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1675/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.496 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:34.496 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1675/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.496 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1675/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:34.497 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0} tryExecute EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:34.4969593+02:00 -13:18:34.497 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0}@2d41a072 offer EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:34.497971+02:00 -13:18:34.497 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1} startReservedThread p=1 -13:18:34.497 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@93479f5{s=0/1,p=1}@70dc57e3 startThread=0 -13:18:34.497 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:34.497971+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1676/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:34.497 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@36b33c0c{AC.ReadCB@18566bd7{HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1676/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:34.497 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1676/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:34.497 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 157 HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>> chunked\r...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 157 HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>> chunked\r...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>> chunked\r...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=157,c=8192,r=157]={<<>> chunked\r...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/awx on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/awx HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:34.498 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/awx HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=0} -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=1} -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/awx)@301a83e9 in null -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/awx @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/awx|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:34.499 [qtp1108502178-64] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:34.500 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1}@2d41a072 task=EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:34.4999583+02:00 -13:18:34.500 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.500 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.500 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.500 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:34.5009608+02:00 tryProduce true -13:18:34.500 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:34.500 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:34.500 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:34.500 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.500 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:34.500 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:34.500 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:34.500 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@93479f5{s=0/1,p=1}@70dc57e3 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}] -13:18:34.500 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=1}@70dc57e3 started -13:18:34.500 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:34.500 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@70dc57e3 waiting -13:18:34.501 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@160d66f[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:34.501 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=2} -13:18:34.501 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 1 keys -13:18:34.501 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:34.501 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=3} -13:18:34.501 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:34.503 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@5d680993 exclude by status 401 -13:18:34.503 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@50357ca6{null} -13:18:34.503 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/awx on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=5} -401 null HTTP/1.1 -Matched-Stub-Id: 114ac421-5127-4729-9cbe-0d7159609aef - - -13:18:34.503 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5798385c] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:34.503 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:34.503 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 114ac421-5127-4729-9cbe-0d7159609aef - - -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5798385c] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2fd05922{IDLE}->null [HeapByteBuffer@10a99211[p=0,l=145,c=8192,r=145]={<<>> Bearer \r...\x00\x00\x00\x00\x00\x00\x00}] -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{WRITING}->null:IDLE-->WRITING -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=COMMITTED}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=6} -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@2fd05922{WRITING}->null -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{IDLE}->null:WRITING-->IDLE -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5798385c] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:34.504 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@50357ca6{null} -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@50357ca6{null} -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7a171558] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7a171558] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7a171558] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2fd05922{IDLE}->null [HeapByteBuffer@7d10bd05[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:34.505 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=114ac421-5127-4729-9cbe-0d7159609aef, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{WRITING}->null:IDLE-->WRITING -13:18:34.505 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:34.505 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [59b194d9] Response 401 UNAUTHORIZED -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6c95ab84{s=COMPLETING}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@2fd05922{WRITING}->null -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2fd05922{IDLE}->null:WRITING-->IDLE -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@39610453[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7a171558] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3e69d518{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3e69d518{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=7} -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@68e636b6) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3e69d518{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3e69d518{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.505 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3e69d518{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/awx,age=8} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/awx written=0 -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3e69d518{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.506 [reactor-http-nio-4] DEBUG reactor.netty.channel.FluxReceive - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.506 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@36b33c0c{AC.ReadCB@18566bd7{HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:34.507 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.507 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@4602fed7 on ManagedSelector@6cb7ae41{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:34.507 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:34.507 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6cb7ae41{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:34.507 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken with none selected -13:18:34.507 [qtp1108502178-64] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:34.507 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 0/0/1 selected -13:18:34.507 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@5fb878ee size 1 > capacity -13:18:34.507 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 0 keys, 1 updates -13:18:34.507 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:34.507 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@93479f5{s=1/1,p=0}@5fb878ee in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.507 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@4602fed7 -13:18:34.507 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.507 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:34.507 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 1 keys -13:18:34.508 [reactor-http-nio-4] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient unauthorized, trying to log in -13:18:34.509 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [61a0bede] HTTP POST http://localhost:8080/api/v0/components/login -13:18:34.510 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Channel acquired, now 2 active connections and 0 inactive connections -13:18:34.510 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:34.510 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:34.510 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:34.510 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:34.511 [reactor-http-nio-4] DEBUG org.springframework.core.codec.CharSequenceEncoder - [61a0bede] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:34.512 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 1/1/2 selected -13:18:34.512 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 1 keys, 0 updates -13:18:34.512 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:34.512 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:64997], selector=sun.nio.ch.WindowsSelectorImpl@38ce0e5b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1675/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.513 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1675/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.513 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [59b194d9] Cancel signal (to close connection) -13:18:34.513 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1676/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:34.514 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:34.514 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0} tryExecute EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:34.51496+02:00 -13:18:34.514 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:34.514 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:34.514 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0}@70dc57e3 offer EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/PRODUCING/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:34.51496+02:00 -13:18:34.514 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/awx, connection=PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:34.514 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:34.514 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=1} startReservedThread p=1 -13:18:34.514 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@93479f5{s=0/1,p=1}@2d4879a9 startThread=0 -13:18:34.514 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 - R:localhost/127.0.0.1:8080] Channel cleaned, now 1 active connections and 1 inactive connections -13:18:34.514 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:34.51496+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1677/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:34.514 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@5186b4bf{AC.ReadCB@52f0da96{HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1677/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:34.514 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1677/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@10a99211[p=0,l=220,c=8192,r=220]={<<>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:34.515 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:34.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:34.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:34.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:34.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:34.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,AVAILABLE} -13:18:34.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@5b87e7c1 in null -13:18:34.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:34.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@1727dcb3{/,null,AVAILABLE} -13:18:34.516 [qtp1108502178-65] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:34.517 [qtp1108502178-65] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:34.517 [qtp1108502178-65] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:34.517 [qtp1108502178-65] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:34.518 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=3} parse HeapByteBuffer@10a99211[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:34.518 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@10a99211[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.518 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=3} Content@762d1e32{HeapByteBufferR@126a6f04[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:34.519 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@93479f5{s=0/1,p=1}@2d4879a9 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=0/1,p=1}] -13:18:34.519 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=1}@2d4879a9 started -13:18:34.519 [qtp1108502178-69] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@2d4879a9 waiting -13:18:34.519 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@39bec851{STARTED}[9.4.28.v20200408] -13:18:34.519 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@39bec851{STOPPING}[9.4.28.v20200408] -13:18:34.520 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:34.520 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:34.520 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@e983464{STARTED} id=1 keys=2 selected=1 updates=0 -13:18:34.520 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@4328461 on ManagedSelector@e983464{STOPPING} id=1 keys=2 selected=1 updates=0 -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2f510e30[c=0,q=0,[0]=null,s=STREAM] addContent Content@762d1e32{HeapByteBufferR@126a6f04[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2f510e30[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} parsed false HttpParser{s=END,51 of 51} -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2f510e30[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@762d1e32{HeapByteBufferR@126a6f04[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>ee-4706-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:34.521 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@70dc57e3 task=EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:34.5219575+02:00 -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -13:18:34.521 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=true/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:34.5219575+02:00 tryProduce true -13:18:34.521 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:34.521 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:34.521 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@4328461 -13:18:34.521 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@e983464{STOPPING} id=1 keys=2 selected=1 updates=0 -13:18:34.521 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2882/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.521 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2882/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.523 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@2aa92e03[p=0,l=21,c=8192,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:34.523 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.523 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/login)@5b87e7c1 -13:18:34.523 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@44c29fce exclude no deflater -13:18:34.523 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@79420766{null} -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=9} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: f76ac9e4-347a-4b15-a03a-1dae063c4d35 -Vary: Accept-Encoding, User-Agent - - -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5a80d5ea] (null,[p=0,l=21,c=32768,r=21],false)@START -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: f76ac9e4-347a-4b15-a03a-1dae063c4d35 -Vary: Accept-Encoding, User-Agent - - -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpGenerator - EOF_CONTENT -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5a80d5ea] ([p=0,l=193,c=8192,r=193],[p=0,l=21,c=32768,r=21],false)@COMMITTED -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@9426f6f{IDLE}->null [HeapByteBuffer@10a99211[p=0,l=193,c=8192,r=193]={<<>>ername":"...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@7eaa8d9a[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{WRITING}->null:IDLE-->WRITING -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 193 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=9/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=COMMITTED}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=9} -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 21 NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=COMMITTED}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=9} -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=214 remaining=0 WriteFlusher@9426f6f{WRITING}->null -13:18:34.524 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@9426f6f{IDLE}->null:WRITING-->IDLE -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5a80d5ea] ([p=193,l=193,c=8192,r=0],[p=21,l=21,c=32768,r=0],false)@COMMITTED -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@79420766{null} -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@79420766{null} -13:18:34.525 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=f76ac9e4-347a-4b15-a03a-1dae063c4d35, Vary=Accept-Encoding, User-Agent, Connection=close, Server=Jetty(9.4.28.v20200408)] -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1b5383f1] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: SHUTDOWN_OUT for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1b5383f1] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:34.525 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@50081647[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1b5383f1] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractEndPoint - shutdownOutput NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=END,51 of 51},g=HttpGenerator@36ddbc7e{s=END}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:34.525 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [61a0bede] Response 200 OK -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d5787d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3d5787d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@78e97fae) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:34.525 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3d5787d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d5787d{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3d5787d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.526 [reactor-http-nio-4] DEBUG reactor.netty.channel.FluxReceive - [id: 0xe6d25d0b, L:/127.0.0.1:64997 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=11} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=21 -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3d5787d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,51 of 51} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CLOSE HeapByteBuffer@10a99211[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=CLOSE,51 of 51} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.526 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.527 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@5186b4bf{AC.ReadCB@52f0da96{HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:34.527 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 1 inactive connections -13:18:34.527 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.527 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:34.527 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:34.527 [qtp1108502178-65] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:34.527 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@648544e4 size 1 > capacity -13:18:34.527 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@93479f5{s=1/1,p=0}@648544e4 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.527 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:34.527 [reactor-http-nio-4] DEBUG org.springframework.core.codec.StringDecoder - [61a0bede] Decoded "{"token":"someToken"}" -13:18:34.527 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=2882/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.528 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@1ce81196{AC.ReadCB@6451b636{HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=2889/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6451b636[p=HttpParser{s=START,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:34.528 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:34.528 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:34.528 [reactor-http-nio-4] INFO com.bi.edp.catalog.adapter.provision_adapters.ProvisionAdaptersClient - ProvisionAdaptersClient logged successfully -13:18:34.528 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2889/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6451b636[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:34.528 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@e983464{STOPPING} id=1 keys=2 selected=1 updates=0 -13:18:34.528 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:34.528 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:34.528 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@755f9ea8 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.528 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xe6d25d0b, L:/127.0.0.1:64997 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:34.528 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2889/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6451b636[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.528 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@6451b636::NetworkTrafficSocketChannelEndPoint@56757adf{/127.0.0.1:64995<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2889/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6451b636[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@28dc6d4b{s=START}]=>HttpChannelOverHttp@5c8d11af{s=HttpChannelState@198f945a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.528 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@755f9ea8 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.528 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@755f9ea8 startThread=0 -13:18:34.529 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.529 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,OSHUT,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.529 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.529 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@5186b4bf{AC.ReadCB@52f0da96{HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=2/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:34.529 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=CLOSE,51 of 51} -13:18:34.529 [qtp1108502178-70] DEBUG org.eclipse.jetty.http.HttpParser - CLOSE --> CLOSE -13:18:34.530 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:34.530 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@e983464{STOPPING} id=1 keys=2 selected=1 updates=0 -13:18:34.530 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7fe720a3 startThread=0 -13:18:34.530 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:34.530 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7fe720a3 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.530 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.530 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.530 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b waiting with 2 keys -13:18:34.530 [qtp1108502178-65] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@52f0da96::NetworkTrafficSocketChannelEndPoint@6d213d13{/127.0.0.1:64997<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@52f0da96[p=HttpParser{s=CLOSE,51 of 51},g=HttpGenerator@36ddbc7e{s=START}]=>HttpChannelOverHttp@2ca962b8{s=HttpChannelState@3d5787d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.530 [qtp1108502178-65] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7fe720a3 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.532 [qtp1108502178-66] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1108502178-66-acceptor-0@413e090e-NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.533 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@5110c79d on ManagedSelector@e983464{STOPPING} id=1 keys=0 selected=0 updates=0 -13:18:34.533 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@e983464{STOPPING} id=1 keys=0 selected=0 updates=1 -13:18:34.533 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken with none selected -13:18:34.533 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b woken up from select, 0/0/0 selected -13:18:34.534 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@38ce0e5b processing 0 keys, 1 updates -13:18:34.534 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:34.534 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@5110c79d -13:18:34.534 [qtp1108502178-70] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:34.534 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@70dc57e3 size 1 > capacity -13:18:34.534 [qtp1108502178-70] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@93479f5{s=1/1,p=0}@70dc57e3 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.534 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:34.534954+02:00 -13:18:34.534 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@1083962f/SelectorProducer@4f65efc7/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:34.534954+02:00 -13:18:34.534 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@e983464{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:34.534 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@6cb7ae41{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:34.534 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@6be8251b on ManagedSelector@6cb7ae41{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:34.534 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6cb7ae41{STOPPING} id=0 keys=1 selected=0 updates=1 -13:18:34.534 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken with none selected -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 0/0/1 selected -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 0 keys, 1 updates -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@6be8251b -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@6cb7ae41{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=28/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=28/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=28/30000}{io=1/1,kio=1,kro=1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@36b33c0c{AC.ReadCB@18566bd7{HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=28/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@18566bd7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=28/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@18566bd7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:34.535 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@6cb7ae41{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:34.536 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@2efe6164 startThread=0 -13:18:34.536 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:34.536 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e waiting with 1 keys -13:18:34.536 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@2efe6164 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.536 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xcbaa31af, L:/127.0.0.1:64996 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xcbaa31af, L:/127.0.0.1:64996 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:34.536 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=29/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@18566bd7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.536 [qtp1108502178-64] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@18566bd7::NetworkTrafficSocketChannelEndPoint@40d68c3d{/127.0.0.1:64996<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=29/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@18566bd7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6c95ab84{s=START}]=>HttpChannelOverHttp@6cb96ec{s=HttpChannelState@3e69d518{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:34.536 [qtp1108502178-64] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@2efe6164 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.536 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@3e2a73e3 on ManagedSelector@6cb7ae41{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:34.536 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6cb7ae41{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:34.536 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken with none selected -13:18:34.536 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e woken up from select, 0/0/0 selected -13:18:34.536 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7fe0685e processing 0 keys, 1 updates -13:18:34.536 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:34.536 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@3e2a73e3 -13:18:34.537 [qtp1108502178-71] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:34.537 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=1/1,p=0}@2d41a072 size 1 > capacity -13:18:34.537 [qtp1108502178-71] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@93479f5{s=1/1,p=0}@2d41a072 in QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:34.5449497+02:00 -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@1f28123a/SelectorProducer@e09e6a1/IDLE/p=false/QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=3]@2020-09-25T13:18:34.5449497+02:00 -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@6cb7ae41{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@1f528d4f[HTTP/1.1] -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@1f528d4f[HTTP/1.1] -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@372ae0f{STARTED} -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@372ae0f{STOPPED} -13:18:34.544 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@4cc10b86{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@39bec851{STOPPING}[9.4.28.v20200408] -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@21cb5892{STARTED} -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@21cb5892{STOPPING} -13:18:34.544 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@21cb5892{STOPPED} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@1c46823c{STARTED} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@1c46823c{STOPPING} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@5d9ee9b4{STARTED,min=32,inflate=-1} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@5d9ee9b4{STOPPING,min=32,inflate=-1} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@1727dcb3{/,null,SHUTDOWN} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@1727dcb3{/,null,UNAVAILABLE} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@619b45c5{STARTED} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@619b45c5{STOPPING} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@619b45c5{STOPPED} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@7668b24d{STARTED} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@7668b24d{STOPPING} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-27485e7d@27485e7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-54b9b561@54b9b561==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-54b9b561@54b9b561==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52526961@52526961==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52526961@52526961==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1a9d23e8@b29cf05d==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-3376b371@9d75df89==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-3376b371@9d75df89==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@7668b24d{STOPPED} -13:18:34.545 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@1727dcb3{/,null,UNAVAILABLE} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@1727dcb3{/,null,UNAVAILABLE} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@5d9ee9b4{STOPPED,min=32,inflate=-1} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,SHUTDOWN} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,UNAVAILABLE} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@7d530931{STARTED} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@7d530931{STOPPING} -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-123afc25@123afc25==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7745697d@69019bbf==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-22d3fe67@4d50d1ee==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-22d3fe67@4d50d1ee==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-7e0f62eb@8890a33c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-7e0f62eb@8890a33c==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:34.545 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@7d530931{STOPPED} -13:18:34.545 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,UNAVAILABLE} -13:18:34.546 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@2f1e63de{/__admin,null,UNAVAILABLE} -13:18:34.546 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@1c46823c{STOPPED} -13:18:34.546 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp1108502178]@421266a2{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.546 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp1108502178]@421266a2{STOPPING,8<=8<=14,i=5,r=-1,q=0}[ReservedThreadExecutor@93479f5{s=1/1,p=0}] -13:18:34.546 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@93479f5{s=1/1,p=0} -13:18:34.546 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@93479f5{s=0/1,p=0}@2d4879a9 offer STOP! -13:18:34.546 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@93479f5{s=-1/1,p=0} -13:18:34.546 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp1108502178]@421266a2{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:34.546 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@39bec851{STOPPED}[9.4.28.v20200408] -]]> - - diff --git a/src/test/resources/data/TEST-com.bi.edp.configuration_stack.adapter.client.catalog.CatalogClientTest.xml b/src/test/resources/data/TEST-com.bi.edp.configuration_stack.adapter.client.catalog.CatalogClientTest.xml deleted file mode 100644 index 59b6ad37..00000000 --- a/src/test/resources/data/TEST-com.bi.edp.configuration_stack.adapter.client.catalog.CatalogClientTest.xml +++ /dev/null @@ -1,5697 +0,0 @@ - - - - - - - org.eclipse.jetty.servlets.CrossOriginFilter-77aea7a] -13:18:38.444 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:38.444 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:38.444 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-781f532=org.eclipse.jetty.servlet.DefaultServlet-781f532@2306999f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc@852c2c32==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-1fc7c1ae=org.eclipse.jetty.servlet.DefaultServlet-1fc7c1ae@a2b518ba==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:38.444 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@2493951c{STARTING} -13:18:38.444 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70004ms ServletHandler@2493951c{STARTED} -13:18:38.444 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-77aea7a@77aea7a==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:38.444 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70004ms org.eclipse.jetty.servlets.CrossOriginFilter-77aea7a@77aea7a==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@228c5ffa -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc@852c2c32==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70005ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc@852c2c32==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-1fc7c1ae@a2b518ba==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70005ms org.eclipse.jetty.servlet.DefaultServlet-1fc7c1ae@a2b518ba==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-781f532@2306999f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70005ms org.eclipse.jetty.servlet.DefaultServlet-781f532@2306999f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.445 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,AVAILABLE} -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70005ms o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,AVAILABLE} -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@3fde4138{STOPPED,min=32,inflate=-1} -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@3fde4138{STARTING,min=32,inflate=-1} -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@2611918a{/,null,UNAVAILABLE} -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@2611918a{/,null,STARTING} -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@5c25e876{STOPPED} -13:18:38.445 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-cdce0b2[EMBEDDED:null] -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-cdce0b2@886e19de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62[EMBEDDED:null] -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-75af5669=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-75af5669@75af5669==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02=org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-1e9df11e=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-1e9df11e@1e9df11e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true} -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-75af5669, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-1e9df11e, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02] -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-cdce0b2=org.eclipse.jetty.servlet.DefaultServlet-cdce0b2@886e19de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true} -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@5c25e876{STARTING} -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70006ms ServletHandler@5c25e876{STARTED} -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@63a7880{STOPPED} -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@63a7880{STARTING} -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70006ms NotFoundHandler@63a7880{STARTED} -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-75af5669@75af5669==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70006ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-75af5669@75af5669==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@2d1ed350 -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-1e9df11e@1e9df11e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70006ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-1e9df11e@1e9df11e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@791bc26a -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70006ms org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:38.446 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@5453a281 -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70007ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-cdce0b2@886e19de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70007ms org.eclipse.jetty.servlet.DefaultServlet-cdce0b2@886e19de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.447 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70007ms o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70007ms GzipHandler@3fde4138{STARTED,min=32,inflate=-1} -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70007ms HandlerCollection@30cd5556{STARTED} -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@1d779ad6{STOPPED} -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@1d779ad6{STARTING} -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70007ms ErrorHandler@1d779ad6{STARTED} -13:18:38.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:38.448 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:38.448 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@609e5dcf{STOPPED} -13:18:38.448 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70008ms ScheduledExecutorScheduler@609e5dcf{STARTED} -13:18:38.448 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@3b9b467d[HTTP/1.1] -13:18:38.448 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70008ms HttpConnectionFactory@3b9b467d[HTTP/1.1] -13:18:38.448 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:38.449 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4495035+02:00 added {SelectorProducer@4fbf91e1,POJO} -13:18:38.449 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4495035+02:00 added {QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}],UNMANAGED} -13:18:38.449 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4495035+02:00 created -13:18:38.449 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@689012ee{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4495035+02:00,MANAGED} -13:18:38.449 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@689012ee{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:38.450 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4505047+02:00 added {SelectorProducer@374b812e,POJO} -13:18:38.450 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4505047+02:00 added {QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}],UNMANAGED} -13:18:38.450 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4505047+02:00 created -13:18:38.451 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@4483ebf{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4505047+02:00,MANAGED} -13:18:38.451 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@4483ebf{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:38.451 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@689012ee{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:38.451 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4515009+02:00 -13:18:38.451 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70011ms EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.4515009+02:00 -13:18:38.453 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@6c274bba startThread=0 -13:18:38.454 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@3af984b3 on ManagedSelector@689012ee{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:38.588 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.588 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@6c274bba in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.589 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.5894894+02:00 tryProduce false -13:18:38.589 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:38.589 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@3af984b3 -13:18:38.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70150ms ManagedSelector@689012ee{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:38.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@4483ebf{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:38.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.5904791+02:00 -13:18:38.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70150ms EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.5904791+02:00 -13:18:38.591 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:38.591 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 0 keys -13:18:38.592 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@51502033 startThread=0 -13:18:38.592 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@14285160 on ManagedSelector@4483ebf{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:38.600 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.601 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@51502033 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.601 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.6014882+02:00 tryProduce false -13:18:38.601 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:38.601 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@14285160 -13:18:38.601 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70161ms ManagedSelector@4483ebf{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:38.601 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70161ms SelectorManager@NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:38.601 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@4284a2c4,POJO} -13:18:38.601 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@4284a2c4 startThread=0 -13:18:38.602 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@342e6a3b,POJO} -13:18:38.602 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@342e6a3b startThread=0 -13:18:38.602 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@64af8535,POJO} -13:18:38.602 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@64af8535 startThread=0 -13:18:38.602 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:38.602 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70162ms NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:38.602 [Test worker] INFO org.eclipse.jetty.server.Server - Started @70162ms -13:18:38.602 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @70162ms Server@2b8946b9{STARTED}[9.4.28.v20200408] -13:18:38.605 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:38.605 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 0 keys -13:18:38.613 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:38.614 [Test worker] DEBUG org.apache.http.wire - http-outgoing-3 << "end of stream" -13:18:38.614 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-3: Close connection -13:18:38.614 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 4][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:38.614 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:38.615 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:38.616 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:65003<->127.0.0.1:8080 -13:18:38.616 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:38.616 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:38.616 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:38.616 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 >> POST /__admin/mappings HTTP/1.1 -13:18:38.616 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 >> Content-Length: 330 -13:18:38.616 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 >> Content-Type: text/plain; charset=UTF-8 -13:18:38.616 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 >> Host: localhost:8080 -13:18:38.616 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 >> Connection: Keep-Alive -13:18:38.616 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> "Content-Length: 330[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> "Host: localhost:8080[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> "Connection: Keep-Alive[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> "[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> "{[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " "id" : "3b014af9-4de1-41a9-b4d6-3dd60deee9e3",[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " "request" : {[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " "url" : "/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden",[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " "method" : "GET"[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " },[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " "response" : {[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " "status" : 200,[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " "fixedDelayMilliseconds" : 2100[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " },[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> " "uuid" : "3b014af9-4de1-41a9-b4d6-3dd60deee9e3"[\r][\n]" -13:18:38.617 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 >> "}" -13:18:38.618 [qtp1306936337-75] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.619 [qtp1306936337-75] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@4284a2c4 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.621 [qtp1306936337-76] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.621 [qtp1306936337-76] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@342e6a3b in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.623 [qtp1306936337-77] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.623 [qtp1306936337-77] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@64af8535 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.624 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.626 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.627 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.681 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@4d7a5934 on ManagedSelector@4483ebf{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:38.682 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4483ebf{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:38.683 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:38.684 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/0 selected -13:18:38.684 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 1 updates -13:18:38.684 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:38.684 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@4d7a5934 -13:18:38.684 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@4d7a5934 startThread=0 -13:18:38.684 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:38.684 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 1 keys -13:18:38.684 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@4d7a5934 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}] -13:18:38.684 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:38.685 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:38.685 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}-> -13:18:38.686 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.686 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.686 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.686 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@26a8a8{AC.ReadCB@7874472c{HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:38.686 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.686 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@1203ec31 on ManagedSelector@4483ebf{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:38.686 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4483ebf{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/1 selected -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 1 updates -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@1203ec31 -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 1 keys -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 1/1/1 selected -13:18:38.687 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 1 keys, 0 updates -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65003], selector=sun.nio.ch.WindowsSelectorImpl@23943410, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=0} tryExecute EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.6884893+02:00 -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=1} startReservedThread p=1 -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@296c5f60 startThread=0 -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:38.6884893+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:38.688 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:38.689 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.689 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 1 keys -13:18:38.689 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.689 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@4d7a5934 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}] -13:18:38.689 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@296c5f60 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}] -13:18:38.689 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=1}@296c5f60 started -13:18:38.689 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@296c5f60 waiting -13:18:38.690 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:38.690 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@26a8a8{AC.ReadCB@7874472c{HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:38.690 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 525 HeapByteBuffer@517b6415[p=0,l=525,c=8192,r=525]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 525 HeapByteBuffer@517b6415[p=0,l=525,c=8192,r=525]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@517b6415[p=0,l=525,c=8192,r=525]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@517b6415[p=0,l=525,c=8192,r=525]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:38.691 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 330 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=CONTENT,0 of 330},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 330} -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,AVAILABLE} -13:18:38.692 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,AVAILABLE} -13:18:38.693 [qtp1306936337-79] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc@852c2c32==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.693 [qtp1306936337-79] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-77aea7a@77aea7a==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc@852c2c32==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:38.693 [qtp1306936337-79] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@5fbc904a for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc -13:18:38.770 [qtp1306936337-79] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:38.770 [qtp1306936337-79] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-77aea7a@77aea7a==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:38.771 [qtp1306936337-79] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc@852c2c32==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=81/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=CONTENT,0 of 330},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} parse HeapByteBuffer@517b6415[p=195,l=525,c=8192,r=330]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "3b014af9-4de...9-b4d6-3dd60deee9e3"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@517b6415[p=195,l=525,c=8192,r=330]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "3b014af9-4de...9-b4d6-3dd60deee9e3"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} Content@5b830f65{HeapByteBufferR@1e819a71[p=195,l=525,c=8192,r=330]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "3b014af9-4de...9-b4d6-3dd60deee9e3"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@14501e78[c=0,q=0,[0]=null,s=STREAM] addContent Content@5b830f65{HeapByteBufferR@1e819a71[p=195,l=525,c=8192,r=330]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "3b014af9-4de...9-b4d6-3dd60deee9e3"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@14501e78[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=82/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=END,330 of 330},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} parsed false HttpParser{s=END,330 of 330} -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@14501e78[c=330,q=1,[0]=EOF,s=STREAM] read 330 from Content@5b830f65{HeapByteBufferR@1e819a71[p=525,l=525,c=8192,r=0]={POST /__a...9e3"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:38.773 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=82/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=END,330 of 330},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=81} -13:18:38.774 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:38.848 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@6a5f6e44[p=0,l=330,c=8192,r=330]={<<<{\r\n "id" : "3b014af9-4de...9-b4d6-3dd60deee9e3"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:38.849 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@776a7367[p=0,l=330,c=32768,r=330]={<<<{\r\n "id" : "3b014af9-4de...9-b4d6-3dd60deee9e3"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.851 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@776a7367[p=0,l=330,c=32768,r=330]={<<<{\r\n "id" : "3b014af9-4de...9-b4d6-3dd60deee9e3"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@7ae07f21{null} -13:18:38.855 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=163} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:38.858 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@58e13c4f[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@495d4459] (null,[p=0,l=330,c=32768,r=330],false)@START -13:18:38.859 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@776a7367[p=0,l=330,c=32768,r=330]={<<<{\r\n "id" : "3b014af9-4de...9-b4d6-3dd60deee9e3"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.859 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:38.859 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:38.859 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@58e13c4f[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@495d4459] ([p=0,l=122,c=8192,r=122],[p=0,l=330,c=32768,r=330],false)@COMMITTED -13:18:38.860 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@6d08f75e{IDLE}->null [HeapByteBuffer@517b6415[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@776a7367[p=0,l=330,c=32768,r=330]={<<<{\r\n "id" : "3b014af9-4de...9-b4d6-3dd60deee9e3"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:38.860 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d08f75e{WRITING}->null:IDLE-->WRITING -13:18:38.860 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "HTTP/1.1 201 Created[\r][\n]" -13:18:38.860 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "Content-Type: application/json[\r][\n]" -13:18:38.860 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "Transfer-Encoding: chunked[\r][\n]" -13:18:38.860 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:38.860 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "[\r][\n]" -13:18:38.860 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "14A[\r][\n]" -13:18:38.861 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 << HTTP/1.1 201 Created -13:18:38.861 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 << Content-Type: application/json -13:18:38.861 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 << Transfer-Encoding: chunked -13:18:38.861 [Test worker] DEBUG org.apache.http.headers - http-outgoing-4 << Server: Jetty(9.4.28.v20200408) -13:18:38.861 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:38.863 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=172/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=END,330 of 330},g=HttpGenerator@4394a256{s=COMMITTED}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=171} -13:18:38.863 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "{[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " "id" : "3b014af9-4de1-41a9-b4d6-3dd60deee9e3",[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " "request" : {[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " "url" : "/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden",[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " "method" : "GET"[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " },[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " "response" : {[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " "status" : 200,[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " "fixedDelayMilliseconds" : 2100[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " },[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << " "uuid" : "3b014af9-4de1-41a9-b4d6-3dd60deee9e3"[\r][\n]" -13:18:38.864 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "}" -13:18:38.864 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 330 NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=END,330 of 330},g=HttpGenerator@4394a256{s=COMMITTED}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=172} -13:18:38.864 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=452 remaining=0 WriteFlusher@6d08f75e{WRITING}->null -13:18:38.864 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d08f75e{IDLE}->null:WRITING-->IDLE -13:18:38.865 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@58e13c4f[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@495d4459] ([p=122,l=122,c=8192,r=0],[p=330,l=330,c=32768,r=0],false)@COMMITTED -13:18:38.865 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:38.865 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@7ae07f21{null} -13:18:38.865 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7ae07f21{null} -13:18:38.866 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@58e13c4f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@14e884a9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:38.866 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@58e13c4f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@14e884a9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:38.866 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@58e13c4f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@14e884a9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:38.866 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@6d08f75e{IDLE}->null [HeapByteBuffer@453ac13f[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:38.866 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d08f75e{WRITING}->null:IDLE-->WRITING -13:18:38.866 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "[\r][\n]" -13:18:38.866 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "0[\r][\n]" -13:18:38.866 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "[\r][\n]" -13:18:38.867 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 4][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:38.867 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-4: set socket timeout to 0 -13:18:38.867 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 4][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:38.868 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=END,330 of 330},g=HttpGenerator@4394a256{s=COMPLETING}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=176} -13:18:38.869 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@6d08f75e{WRITING}->null -13:18:38.869 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d08f75e{IDLE}->null:WRITING-->IDLE -13:18:38.870 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@58e13c4f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@14e884a9] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:38.878 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:38.878 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3fde4138{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@66e62a4d in null -13:18:38.879 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:38.880 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=188} -13:18:38.880 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@722c137e{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:38.881 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@722c137e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:38.881 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=189} -13:18:38.881 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@4cfe93c8) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:38.883 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@722c137e{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:38.883 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@722c137e{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:38.884 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@722c137e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:38.885 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=193} -13:18:38.886 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=330 -13:18:38.888 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@722c137e{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:38.889 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,330 of 330} -13:18:38.889 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:38.889 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.890 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.891 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.891 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=22/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.892 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=22/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:38.892 [qtp1306936337-79] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:38.892 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=23/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:38.892 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=23/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.893 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=23/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.893 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@26a8a8{AC.ReadCB@7874472c{HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:38.893 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.894 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@1203ec31 on ManagedSelector@4483ebf{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:38.894 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4483ebf{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:38.894 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:38.894 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/1 selected -13:18:38.894 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 1 updates -13:18:38.894 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:38.894 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@1203ec31 -13:18:38.894 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:38.894 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:38.894 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 1 keys -13:18:38.895 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:38.895 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:39.207 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7887d6f5] HTTP GET http://localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden -13:18:39.210 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf9fcd026] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:39.210 [reactor-http-nio-1] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xf9fcd026] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:39.213 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:39.213 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:39.213 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:39.213 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:39.213 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:39.213 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:39.214 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, method=GET} -13:18:39.214 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:39.215 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:39.228 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@43bdbeeb on ManagedSelector@689012ee{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:39.228 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@689012ee{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:39.229 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken with none selected -13:18:39.229 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 0/0/0 selected -13:18:39.229 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 0 keys, 1 updates -13:18:39.229 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:39.229 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@43bdbeeb -13:18:39.229 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@43bdbeeb startThread=0 -13:18:39.229 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:39.229 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 1 keys -13:18:39.252 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@43bdbeeb in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:39.252 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:39.253 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:39.253 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:39.253 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:39.253 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:39.253 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:39.253 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@7651331b{AC.ReadCB@475c5701{HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:39.253 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:39.253 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@2321356 on ManagedSelector@689012ee{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:39.253 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@689012ee{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:39.254 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken with none selected -13:18:39.254 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 0/0/1 selected -13:18:39.254 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 0 keys, 1 updates -13:18:39.254 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:39.254 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@2321356 -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:39.255 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 1 keys -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 1/1/1 selected -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 1 keys, 0 updates -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65004], selector=sun.nio.ch.WindowsSelectorImpl@1e8618d6, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0} tryExecute EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:39.2554043+02:00 -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}@296c5f60 offer EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:39.2554043+02:00 -13:18:39.255 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=1} startReservedThread p=1 -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@147e73a6 startThread=0 -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:39.2563895+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@7651331b{AC.ReadCB@475c5701{HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 197 HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 197 HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=START,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:39.256 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:39.257 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@43bdbeeb in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}] -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:39.257 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@147e73a6 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}] -13:18:39.257 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,AVAILABLE} -13:18:39.258 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3fde4138{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden)@517cef4d in null -13:18:39.258 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:39.258 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:39.258 [qtp1306936337-73] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:39.258 [qtp1306936337-73] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:39.258 [qtp1306936337-73] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@7f121d1c for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62 -13:18:39.359 [qtp1306936337-73] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:39.359 [qtp1306936337-73] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:39.359 [qtp1306936337-73] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=103/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=103} filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=103/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=103} parse HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=103} -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=103} -13:18:39.360 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@60e73ddd[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:39.361 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=104/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=103} parsed false HttpParser{s=END,0 of -1} -13:18:39.361 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=104/30000}{io=1/0,kio=1,kro=1}->HttpConnection@475c5701[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=104} -13:18:39.361 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:39.257 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=1}@147e73a6 started -13:18:39.429 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@147e73a6 waiting -13:18:39.431 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@296c5f60 task=EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:39.4313589+02:00 -13:18:39.431 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:39.4313589+02:00 tryProduce true -13:18:39.432 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:39.432 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:39.432 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=175/30000}{io=0/0,kio=0,kro=1}->HttpConnection@475c5701[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=175} -13:18:39.432 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 1 keys -13:18:41.214 [reactor-http-nio-1] WARN reactor.netty.http.client.HttpClientConnect - [id: 0xf9fcd026, L:/127.0.0.1:65004 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:18:41.216 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7887d6f5] Cancel signal (to close connection) -13:18:41.217 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf9fcd026, L:/127.0.0.1:65004 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:41.217 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xf9fcd026, L:/127.0.0.1:65004 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0xf9fcd026, L:/127.0.0.1:65004 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:41.217 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xf9fcd026, L:/127.0.0.1:65004 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0xf9fcd026, L:/127.0.0.1:65004 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:41.217 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf9fcd026, L:/127.0.0.1:65004 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0xf9fcd026, L:/127.0.0.1:65004 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:41.431 [parallel-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7887d6f5] HTTP GET http://localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden -13:18:41.433 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x0661e05e] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:41.433 [reactor-http-nio-2] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x0661e05e] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:41.435 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:41.435 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:41.435 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:41.435 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:41.435 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@47823244 on ManagedSelector@4483ebf{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:41.436 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4483ebf{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:41.436 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:41.436 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:41.436 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:41.436 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, method=GET} -13:18:41.436 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/1 selected -13:18:41.436 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 1 updates -13:18:41.436 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:41.436 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@47823244 -13:18:41.436 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@47823244 startThread=0 -13:18:41.436 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:41.436 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 2 keys -13:18:41.436 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:41.437 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@47823244 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:41.437 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:41.437 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:41.437 [qtp1306936337-79] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:41.437 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.438 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.438 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:41.438 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.438 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@73076884{AC.ReadCB@60f8dd50{HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:41.438 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.438 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@28d6f136 on ManagedSelector@4483ebf{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:41.438 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4483ebf{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:41.438 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:41.438 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/2 selected -13:18:41.438 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 1 updates -13:18:41.438 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:41.438 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@28d6f136 -13:18:41.438 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.438 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:41.438 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 2 keys -13:18:41.439 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 1/1/2 selected -13:18:41.439 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 1 keys, 0 updates -13:18:41.439 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65007], selector=sun.nio.ch.WindowsSelectorImpl@23943410, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.439 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.439 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:41.439 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0} tryExecute EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:41.4390925+02:00 -13:18:41.440 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}@147e73a6 offer EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:41.4400845+02:00 -13:18:41.440 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=1} startReservedThread p=1 -13:18:41.440 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@6e585900 startThread=1 -13:18:41.440 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1306936337-82,5,main] -13:18:41.438 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.440 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@47823244 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=0,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}] -13:18:41.440 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=0,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:41.4400845+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@73076884{AC.ReadCB@60f8dd50{HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 197 HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:41.441 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@147e73a6 task=EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:41.4410947+02:00 -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 197 HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:41.441 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:41.4410947+02:00 tryProduce true -13:18:41.441 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:41.441 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:41.441 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,AVAILABLE} -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3fde4138{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden)@16946a01 in null -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:41.442 [qtp1306936337-74] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=1} filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=1} parse HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=1} -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:41.443 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=1} -13:18:41.444 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@c412b66[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:41.444 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} parsed false HttpParser{s=END,0 of -1} -13:18:41.444 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} -13:18:41.444 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:41.440 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@6e585900 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}] -13:18:41.451 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=1}@6e585900 started -13:18:41.451 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@6e585900 waiting -13:18:41.441 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.457 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 2 keys -13:18:41.465 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:41.481 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3fde4138{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden)@517cef4d -13:18:41.481 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@7639124 exclude no deflater -13:18:41.481 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@31531002{null} -13:18:41.481 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2224} -200 null HTTP/1.1 -Matched-Stub-Id: 3b014af9-4de1-41a9-b4d6-3dd60deee9e3 -Vary: Accept-Encoding, User-Agent - - -13:18:41.481 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5ec611c9[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@796c619] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:41.481 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:41.481 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 3b014af9-4de1-41a9-b4d6-3dd60deee9e3 -Vary: Accept-Encoding, User-Agent - - -13:18:41.481 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5ec611c9[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@796c619] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@1c679d7e{IDLE}->null [HeapByteBuffer@517b6415[p=0,l=170,c=8192,r=170]={<<>>\nAuthoriz...\x00\x00\x00\x00\x00\x00\x00}] -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1c679d7e{WRITING}->null:IDLE-->WRITING -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2225/30000}{io=0/0,kio=0,kro=1}->HttpConnection@475c5701[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ad529f6{s=COMMITTED}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2225} -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@1c679d7e{WRITING}->null -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1c679d7e{IDLE}->null:WRITING-->IDLE -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5ec611c9[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@796c619] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@31531002{null} -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@31531002{null} -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5ec611c9[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@351d4df0] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5ec611c9[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@351d4df0] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5ec611c9[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@351d4df0] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@1c679d7e{IDLE}->null [HeapByteBuffer@453ac13f[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:41.482 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1c679d7e{WRITING}->null:IDLE-->WRITING -13:18:41.484 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:41.485 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@1c679d7e{FAILED}->null:WRITING-->FAILED -13:18:41.485 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:41.486 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@475c5701[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ad529f6{s=COMPLETING}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2229} {} -13:18:41.486 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@475c5701[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ad529f6{s=COMPLETING}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2229} -13:18:41.486 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@475c5701[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ad529f6{s=COMPLETING}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2229} -13:18:41.486 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@475c5701[p=HttpParser{s=END,0 of -1},g=HttpGenerator@7ad529f6{s=COMPLETING}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2229} -13:18:41.486 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@7651331b{null} -13:18:41.486 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@689012ee{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:41.487 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken with none selected -13:18:41.487 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 0/0/0 selected -13:18:41.487 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 0 keys, 0 updates -13:18:41.487 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:41.487 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:41.487 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 0 keys -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@5b3b4ac3 startThread=0 -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2230} -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@25ed92e{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@25ed92e{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2230} -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@6a2cf9b3) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@25ed92e{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@25ed92e{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@25ed92e{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2230} -13:18:41.487 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden written=0 -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@25ed92e{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,0 of -1} -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=5/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@475c5701[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@6c274bba in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=0,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@5b3b4ac3 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=6/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@475c5701[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@475c5701::NetworkTrafficSocketChannelEndPoint@8a6b25e{/127.0.0.1:65004<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=6/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@475c5701[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@7ad529f6{s=START}]=>HttpChannelOverHttp@6615d3a{s=HttpChannelState@25ed92e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:41.488 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@5b3b4ac3 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:43.435 [reactor-http-nio-2] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x0661e05e, L:/127.0.0.1:65007 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:18:43.435 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7887d6f5] Cancel signal (to close connection) -13:18:43.436 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x0661e05e, L:/127.0.0.1:65007 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:43.436 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x0661e05e, L:/127.0.0.1:65007 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x0661e05e, L:/127.0.0.1:65007 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:43.437 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x0661e05e, L:/127.0.0.1:65007 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x0661e05e, L:/127.0.0.1:65007 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:43.437 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x0661e05e, L:/127.0.0.1:65007 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0x0661e05e, L:/127.0.0.1:65007 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:43.547 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3fde4138{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden)@16946a01 -13:18:43.547 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@207df3b7 exclude no deflater -13:18:43.547 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@3861722e{null} -13:18:43.547 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2105} -200 null HTTP/1.1 -Matched-Stub-Id: 3b014af9-4de1-41a9-b4d6-3dd60deee9e3 -Vary: Accept-Encoding, User-Agent - - -13:18:43.547 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@d90c341[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@80fd38e] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:43.547 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:43.547 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 3b014af9-4de1-41a9-b4d6-3dd60deee9e3 -Vary: Accept-Encoding, User-Agent - - -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d90c341[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@80fd38e] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@47207973{IDLE}->null [HeapByteBuffer@517b6415[p=0,l=170,c=8192,r=170]={<<>>\nAuthoriz...\x00\x00\x00\x00\x00\x00\x00}] -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@47207973{WRITING}->null:IDLE-->WRITING -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2108/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6042e066{s=COMMITTED}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2106} -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@47207973{WRITING}->null -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@47207973{IDLE}->null:WRITING-->IDLE -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@d90c341[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@80fd38e] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@3861722e{null} -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@3861722e{null} -13:18:43.548 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@d90c341[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@746393bb] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:43.549 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@d90c341[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@746393bb] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:43.549 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@d90c341[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@746393bb] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:43.549 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@47207973{IDLE}->null [HeapByteBuffer@453ac13f[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:43.549 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@47207973{WRITING}->null:IDLE-->WRITING -13:18:43.551 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:43.552 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@47207973{FAILED}->null:WRITING-->FAILED -13:18:43.552 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:43.561 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6042e066{s=COMPLETING}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2119} {} -13:18:43.561 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6042e066{s=COMPLETING}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2119} -13:18:43.561 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6042e066{s=COMPLETING}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2119} -13:18:43.561 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@60f8dd50[p=HttpParser{s=END,0 of -1},g=HttpGenerator@6042e066{s=COMPLETING}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2119} -13:18:43.561 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@73076884{null} -13:18:43.561 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@4483ebf{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:43.561 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7fe2dcbd startThread=0 -13:18:43.561 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:43.561 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:43.562 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/1 selected -13:18:43.562 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 0 updates -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2120} -13:18:43.562 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@58a0755f{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:43.562 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@58a0755f{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:43.562 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 1 keys -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2120} -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@907e36c) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@58a0755f{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@58a0755f{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@58a0755f{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2120} -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden written=0 -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@58a0755f{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,0 of -1} -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=14/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@60f8dd50[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:43.562 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@51502033 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:43.563 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7fe2dcbd in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:43.563 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=14/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@60f8dd50[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.563 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@60f8dd50::NetworkTrafficSocketChannelEndPoint@1c638b32{/127.0.0.1:65007<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=14/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@60f8dd50[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6042e066{s=START}]=>HttpChannelOverHttp@f4392b8{s=HttpChannelState@58a0755f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.563 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7fe2dcbd in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:43.766 [parallel-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7887d6f5] HTTP GET http://localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden -13:18:43.806 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4a9f6514] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:43.807 [reactor-http-nio-3] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x4a9f6514] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:43.811 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@280b4d0 on ManagedSelector@689012ee{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:43.811 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@689012ee{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:43.811 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken with none selected -13:18:43.811 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 0/0/0 selected -13:18:43.811 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 0 keys, 1 updates -13:18:43.811 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:43.811 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@280b4d0 -13:18:43.811 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@280b4d0 startThread=0 -13:18:43.811 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:43.811 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 1 keys -13:18:43.812 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:43.812 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:43.812 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:43.812 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:43.813 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:43.814 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@280b4d0 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:43.814 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:43.814 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:43.814 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, method=GET} -13:18:43.819 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:43.822 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:43.823 [qtp1306936337-82] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:43.823 [qtp1306936337-82] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=0}-> -13:18:43.823 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=0}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.823 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=0}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.823 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=0}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.823 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@4d07575{AC.ReadCB@35af8055{HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:43.823 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.823 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@1c64e9eb on ManagedSelector@689012ee{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:43.823 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@689012ee{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:43.824 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken with none selected -13:18:43.824 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 0/0/1 selected -13:18:43.824 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 0 keys, 1 updates -13:18:43.824 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:43.824 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@1c64e9eb -13:18:43.824 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.824 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:43.824 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 1 keys -13:18:43.825 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 1/1/1 selected -13:18:43.825 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 1 keys, 0 updates -13:18:43.825 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65008], selector=sun.nio.ch.WindowsSelectorImpl@1e8618d6, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.825 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.825 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:43.825 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:43.825 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@280b4d0 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:43.825 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0} tryExecute EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:43.8258224+02:00 -13:18:43.826 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}@6e585900 offer EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:43.8268629+02:00 -13:18:43.826 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=1} startReservedThread p=1 -13:18:43.826 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@2ef4092c startThread=0 -13:18:43.826 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:43.8268629+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:43.826 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@4d07575{AC.ReadCB@35af8055{HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:43.826 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:43.826 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 197 HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 197 HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=START,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:43.827 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:43.828 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:43.828 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,AVAILABLE} -13:18:43.828 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3fde4138{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden)@1b2287b2 in null -13:18:43.828 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:43.828 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:43.828 [qtp1306936337-78] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:43.828 [qtp1306936337-78] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:43.828 [qtp1306936337-78] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:43.828 [qtp1306936337-78] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} parse HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@164d9283[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} parsed false HttpParser{s=END,0 of -1} -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} -13:18:43.829 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:43.836 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@6e585900 task=EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:43.8368197+02:00 -13:18:43.836 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:43.8368197+02:00 tryProduce true -13:18:43.836 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:43.836 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:43.836 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=9} -13:18:43.836 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 1 keys -13:18:43.836 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@2ef4092c in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}] -13:18:43.836 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=1}@2ef4092c started -13:18:43.836 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@2ef4092c waiting -13:18:45.813 [reactor-http-nio-3] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x4a9f6514, L:/127.0.0.1:65008 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:18:45.814 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7887d6f5] Cancel signal (to close connection) -13:18:45.814 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4a9f6514, L:/127.0.0.1:65008 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:45.814 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x4a9f6514, L:/127.0.0.1:65008 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x4a9f6514, L:/127.0.0.1:65008 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:45.814 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x4a9f6514, L:/127.0.0.1:65008 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x4a9f6514, L:/127.0.0.1:65008 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:45.815 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4a9f6514, L:/127.0.0.1:65008 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0x4a9f6514, L:/127.0.0.1:65008 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:45.934 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3fde4138{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden)@1b2287b2 -13:18:45.934 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@7a966364 exclude no deflater -13:18:45.934 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@74a5a873{null} -13:18:45.934 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2107} -200 null HTTP/1.1 -Matched-Stub-Id: 3b014af9-4de1-41a9-b4d6-3dd60deee9e3 -Vary: Accept-Encoding, User-Agent - - -13:18:45.934 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@7b35ae42[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@116e22d] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:45.934 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:45.934 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 3b014af9-4de1-41a9-b4d6-3dd60deee9e3 -Vary: Accept-Encoding, User-Agent - - -13:18:45.935 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:45.935 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@7b35ae42[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@116e22d] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:45.935 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@48d22c28{IDLE}->null [HeapByteBuffer@517b6415[p=0,l=170,c=8192,r=170]={<<>>\nAuthoriz...\x00\x00\x00\x00\x00\x00\x00}] -13:18:45.935 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@48d22c28{WRITING}->null:IDLE-->WRITING -13:18:45.935 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2108/30000}{io=0/0,kio=0,kro=1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=COMMITTED}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2108} -13:18:45.935 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@48d22c28{WRITING}->null -13:18:45.935 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@48d22c28{IDLE}->null:WRITING-->IDLE -13:18:45.935 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@7b35ae42[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@116e22d] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:45.936 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:45.936 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@74a5a873{null} -13:18:45.936 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@74a5a873{null} -13:18:45.936 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@7b35ae42[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@116df371] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:45.936 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@7b35ae42[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@116df371] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:45.936 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@7b35ae42[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@116df371] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:45.936 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@48d22c28{IDLE}->null [HeapByteBuffer@453ac13f[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:45.936 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@48d22c28{WRITING}->null:IDLE-->WRITING -13:18:45.937 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 53 common frames omitted -13:18:45.940 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@48d22c28{FAILED}->null:WRITING-->FAILED -13:18:45.940 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 53 common frames omitted -13:18:45.941 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=COMPLETING}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2114} {} -13:18:45.941 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=COMPLETING}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2114} -13:18:45.941 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=COMPLETING}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2114} -13:18:45.941 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=COMPLETING}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2114} -13:18:45.941 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@4d07575{null} -13:18:45.941 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@689012ee{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:45.941 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken with none selected -13:18:45.941 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@477c08a0 startThread=0 -13:18:45.941 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 0/0/0 selected -13:18:45.941 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 0 keys, 0 updates -13:18:45.941 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:45.941 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:45.941 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 0 keys -13:18:45.941 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:45.941 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@477c08a0 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2115} -13:18:45.942 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=6/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=COMPLETING}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2115} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@70ad0024{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@70ad0024{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2115} -13:18:45.942 [qtp1306936337-73] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=6/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@35af8055[p=HttpParser{s=END,0 of -1},g=HttpGenerator@64f1427f{s=COMPLETING}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2115} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@71cd8de8) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:45.942 [qtp1306936337-73] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@477c08a0 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@70ad0024{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@70ad0024{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@70ad0024{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2115} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden written=0 -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@70ad0024{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,0 of -1} -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:45.942 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:45.943 [qtp1306936337-78] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@35af8055::NetworkTrafficSocketChannelEndPoint@7a556b54{/127.0.0.1:65008<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@35af8055[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@64f1427f{s=START}]=>HttpChannelOverHttp@74928a6e{s=HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@70ad0024{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:45.943 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@296c5f60 size 1 > capacity -13:18:45.943 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@296c5f60 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:46.351 [parallel-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7887d6f5] HTTP GET http://localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden -13:18:46.353 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x38e4cfb7] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:46.353 [reactor-http-nio-4] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x38e4cfb7] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:46.355 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@1d2cfe4d on ManagedSelector@4483ebf{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:46.355 [qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4483ebf{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:46.355 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:46.355 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:46.355 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:46.355 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:46.355 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/1 selected -13:18:46.355 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 1 updates -13:18:46.355 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:46.355 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@1d2cfe4d -13:18:46.355 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:46.355 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@1d2cfe4d startThread=0 -13:18:46.355 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:46.355 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 2 keys -13:18:46.355 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@1d2cfe4d in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:46.355 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:46.356 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:46.356 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, method=GET} -13:18:46.356 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:46.357 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:46.356 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:46.359 [qtp1306936337-82] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:46.359 [qtp1306936337-82] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=0}-> -13:18:46.359 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:46.359 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:46.359 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:46.360 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@bf3ee38{AC.ReadCB@7600172{HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:46.360 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:46.360 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@335ed6dc on ManagedSelector@4483ebf{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:46.360 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4483ebf{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:46.360 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:46.360 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/2 selected -13:18:46.360 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 1 updates -13:18:46.360 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:46.360 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@335ed6dc -13:18:46.361 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:46.361 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:46.361 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 2 keys -13:18:46.361 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 1/1/2 selected -13:18:46.361 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 1 keys, 0 updates -13:18:46.361 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65009], selector=sun.nio.ch.WindowsSelectorImpl@23943410, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:46.361 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:46.361 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:46.362 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0} tryExecute EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:46.3611767+02:00 -13:18:46.362 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}@2ef4092c offer EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/PRODUCING/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:46.362233+02:00 -13:18:46.362 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=1} startReservedThread p=1 -13:18:46.362 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@74babfcf startThread=0 -13:18:46.362 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:46.362233+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:46.362 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@bf3ee38{AC.ReadCB@7600172{HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:46.362 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:46.362 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 197 HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 197 HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=START,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@517b6415[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3cf09cb6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:46.363 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=0} -13:18:46.364 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=1} -13:18:46.364 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,AVAILABLE} -13:18:46.364 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3fde4138{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden)@b0c83a8 in null -13:18:46.364 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:46.364 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden @ o.e.j.s.ServletContextHandler@2611918a{/,null,AVAILABLE} -13:18:46.364 [qtp1306936337-80] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:46.364 [qtp1306936337-80] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:46.364 [qtp1306936337-80] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:46.364 [qtp1306936337-80] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} filled 0 HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} parse HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@517b6415[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1936993c[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} parsed false HttpParser{s=END,0 of -1} -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2} -13:18:46.365 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:46.370 [qtp1306936337-82] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=6} -13:18:46.370 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@1d2cfe4d in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}] -13:18:46.370 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}@74babfcf in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=0/1,p=1}] -13:18:46.370 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=1}@74babfcf started -13:18:46.370 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@74babfcf waiting -13:18:46.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@2ef4092c task=EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:46.3711752+02:00 -13:18:46.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=true/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:46.3711752+02:00 tryProduce true -13:18:46.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:46.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:46.372 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=9} -13:18:46.372 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 2 keys -13:18:48.355 [reactor-http-nio-4] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x38e4cfb7, L:/127.0.0.1:65009 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:18:48.356 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7887d6f5] Cancel signal (to close connection) -13:18:48.365 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x38e4cfb7, L:/127.0.0.1:65009 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:48.365 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x38e4cfb7, L:/127.0.0.1:65009 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x38e4cfb7, L:/127.0.0.1:65009 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:48.365 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x38e4cfb7, L:/127.0.0.1:65009 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x38e4cfb7, L:/127.0.0.1:65009 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:48.365 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x38e4cfb7, L:/127.0.0.1:65009 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden, connection=PooledConnection{channel=[id: 0x38e4cfb7, L:/127.0.0.1:65009 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:48.369 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@2b8946b9{STARTED}[9.4.28.v20200408] -13:18:48.369 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@2b8946b9{STOPPING}[9.4.28.v20200408] -13:18:48.369 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.369 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.369 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@4483ebf{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:48.370 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@7bd390ca on ManagedSelector@4483ebf{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:48.370 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4483ebf{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:48.370 [qtp1306936337-75] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1306936337-75-acceptor-0@4284a2c4-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:48.370 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:48.370 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/2 selected -13:18:48.370 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 1 updates -13:18:48.370 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:48.370 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@7bd390ca -13:18:48.370 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@4483ebf{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:48.370 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9478/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.370 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9478/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.370 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=9479/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@26a8a8{AC.ReadCB@7874472c{HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=9479/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7874472c[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:48.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:48.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:48.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9479/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7874472c[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:48.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@4483ebf{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:48.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@4d28e8de startThread=0 -13:18:48.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2009/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2008} -13:18:48.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2009/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2008} -13:18:48.371 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2010/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2008} -13:18:48.372 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@bf3ee38{null} -13:18:48.372 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@4483ebf{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:48.372 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@25be448b startThread=0 -13:18:48.372 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.372 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 waiting with 2 keys -13:18:48.373 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@4d28e8de in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:48.373 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9481/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7874472c[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.373 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@7874472c::NetworkTrafficSocketChannelEndPoint@3dd6e08f{/127.0.0.1:65003<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9481/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7874472c[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4394a256{s=START}]=>HttpChannelOverHttp@372e8bff{s=HttpChannelState@722c137e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.373 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@4d28e8de in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=1,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:48.373 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@25be448b in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:48.374 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2011/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2011} -13:18:48.374 [qtp1306936337-78] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2012/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2011} -13:18:48.374 [qtp1306936337-78] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@25be448b in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=2,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:48.375 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@4eec53f1 on ManagedSelector@4483ebf{STOPPING} id=1 keys=0 selected=0 updates=0 -13:18:48.375 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4483ebf{STOPPING} id=1 keys=0 selected=0 updates=1 -13:18:48.375 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken with none selected -13:18:48.375 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 woken up from select, 0/0/0 selected -13:18:48.375 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@23943410 processing 0 keys, 1 updates -13:18:48.375 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:48.375 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@4eec53f1 -13:18:48.375 [qtp1306936337-74] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.375 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@2ef4092c size 1 > capacity -13:18:48.375 [qtp1306936337-74] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@2ef4092c in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=3,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:48.376 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=4,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:48.3769711+02:00 -13:18:48.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@219ee2d7/SelectorProducer@374b812e/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=4,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:48.3769711+02:00 -13:18:48.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@4483ebf{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:48.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@689012ee{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:48.377 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@64df908a on ManagedSelector@689012ee{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:48.377 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@689012ee{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:48.377 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken with none selected -13:18:48.377 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 0/0/0 selected -13:18:48.377 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 0 keys, 1 updates -13:18:48.377 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:48.377 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@64df908a -13:18:48.377 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 0 connections on ManagedSelector@689012ee{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:48.377 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.377 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 waiting with 0 keys -13:18:48.377 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@650c6550 on ManagedSelector@689012ee{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:48.377 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@689012ee{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:48.378 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken with none selected -13:18:48.378 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 woken up from select, 0/0/0 selected -13:18:48.378 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1e8618d6 processing 0 keys, 1 updates -13:18:48.378 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:48.378 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@650c6550 -13:18:48.378 [qtp1306936337-79] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.379 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@6e585900 size 1 > capacity -13:18:48.379 [qtp1306936337-79] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}@6e585900 in QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=4,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:48.381 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=5,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:48.3819566+02:00 -13:18:48.381 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@14e0447e/SelectorProducer@4fbf91e1/IDLE/p=false/QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=5,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:48.3819566+02:00 -13:18:48.381 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@689012ee{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@3b9b467d[HTTP/1.1] -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@3b9b467d[HTTP/1.1] -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@609e5dcf{STARTED} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@609e5dcf{STOPPED} -13:18:48.382 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@2b8946b9{STOPPING}[9.4.28.v20200408] -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@1d779ad6{STARTED} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@1d779ad6{STOPPING} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@1d779ad6{STOPPED} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@30cd5556{STARTED} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@30cd5556{STOPPING} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@3fde4138{STARTED,min=32,inflate=-1} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@3fde4138{STOPPING,min=32,inflate=-1} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@2611918a{/,null,SHUTDOWN} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@2611918a{/,null,UNAVAILABLE} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@63a7880{STARTED} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@63a7880{STOPPING} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@63a7880{STOPPED} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@5c25e876{STARTED} -13:18:48.382 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@5c25e876{STOPPING} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-6566cf02@6566cf02==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-1e9df11e@1e9df11e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-1e9df11e@1e9df11e==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-75af5669@75af5669==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-75af5669@75af5669==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-266bbd62@32adf47c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-cdce0b2@886e19de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-cdce0b2@886e19de==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@5c25e876{STOPPED} -13:18:48.383 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@2611918a{/,null,UNAVAILABLE} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@2611918a{/,null,UNAVAILABLE} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@3fde4138{STOPPED,min=32,inflate=-1} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,SHUTDOWN} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,UNAVAILABLE} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@2493951c{STARTED} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@2493951c{STOPPING} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-77aea7a@77aea7a==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-77aea7a@77aea7a==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc@852c2c32==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-3f79a3fc@852c2c32==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-781f532@2306999f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-781f532@2306999f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-1fc7c1ae@a2b518ba==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-1fc7c1ae@a2b518ba==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@2493951c{STOPPED} -13:18:48.383 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,UNAVAILABLE} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@2cd6911d{/__admin,null,UNAVAILABLE} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@30cd5556{STOPPED} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp1306936337]@4de64411{STARTED,8<=9<=14,i=5,r=1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp1306936337]@4de64411{STOPPING,8<=9<=14,i=5,r=-1,q=0}[ReservedThreadExecutor@47ca1bcb{s=1/1,p=0}] -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@47ca1bcb{s=1/1,p=0} -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=0/1,p=0}@74babfcf offer STOP! -13:18:48.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@47ca1bcb{s=-1/1,p=0} -13:18:48.384 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp1306936337]@4de64411{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:48.384 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@2b8946b9{STOPPED}[9.4.28.v20200408] -13:18:48.384 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=-1/1,p=0}@74babfcf task=STOP! -13:18:48.384 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=-1/1,p=0}@74babfcf Exited -13:18:48.384 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@47ca1bcb{s=-1/1,p=0}@74babfcf in QueuedThreadPool[qtp1306936337]@4de64411{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:48.385 [qtp1306936337-82] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1306936337-82,5,main] exited for QueuedThreadPool[qtp1306936337]@4de64411{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:48.390 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1bea6209{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:48.390 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@ca909fb[HTTP/1.1] added {HttpConfiguration@1d7d53da{32768/8192,8192/8192,https://:0,[]},POJO} -13:18:48.390 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{null, ()}{0.0.0.0:0} added {Server@1bea6209{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:18:48.416 [qtp1306936337-76] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1306936337-76-acceptor-1@342e6a3b-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1306936337]@4de64411{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:48.416 [qtp1306936337-76] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1306936337-76,5,main] exited for QueuedThreadPool[qtp1306936337]@4de64411{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:48.417 [qtp1306936337-77] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1306936337-77-acceptor-2@64af8535-NetworkTrafficServerConnector@1c37fc0{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1306936337]@4de64411{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:48.417 [qtp1306936337-77] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1306936337-77,5,main] exited for QueuedThreadPool[qtp1306936337]@4de64411{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:48.425 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:48.426 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@ceb08a7{STOPPED},AUTO} -13:18:48.426 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@48c93e10,POJO} -13:18:48.426 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@ca909fb[HTTP/1.1],AUTO} -13:18:48.427 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@ca909fb[HTTP/1.1] -13:18:48.427 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:18:48.427 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1bea6209{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:18:48.431 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1bea6209{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,UNAVAILABLE},MANAGED} -13:18:48.431 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@358eb19c -13:18:48.432 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,UNAVAILABLE} added {ServletHandler@617439ba{STOPPED},MANAGED} -13:18:48.433 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1bea6209{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@301dacc2{/,null,UNAVAILABLE},MANAGED} -13:18:48.433 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@75539fdb -13:18:48.433 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@301dacc2{/,null,UNAVAILABLE} added {ServletHandler@62a618dc{STOPPED},MANAGED} -13:18:48.434 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@301dacc2{/,null,UNAVAILABLE} added {NotFoundHandler@4b35db79{STOPPED},MANAGED} -13:18:48.435 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@17852bf3{STOPPED} added {o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,UNAVAILABLE},AUTO} -13:18:48.437 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:18:48.437 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STOPPED,min=32,inflate=-1} mime types IncludeExclude@220e79ef{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:18:48.437 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@34f0fdaa{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@301dacc2{/,null,UNAVAILABLE},MANAGED} -13:18:48.437 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@17852bf3{STOPPED} added {GzipHandler@34f0fdaa{STOPPED,min=32,inflate=-1},AUTO} -13:18:48.438 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1bea6209{STOPPED}[9.4.28.v20200408] added {HandlerCollection@17852bf3{STOPPED},MANAGED} -13:18:48.438 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@1bea6209{STOPPED}[9.4.28.v20200408] -13:18:48.438 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@1bea6209{STARTING}[9.4.28.v20200408] added {ErrorHandler@2642adfe{STOPPED},AUTO} -13:18:48.438 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:18:48.438 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@1bea6209{STARTING}[9.4.28.v20200408] -13:18:48.439 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:18:48.439 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=0} -13:18:48.439 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp2010498327]@77d5c517{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] added {ReservedThreadExecutor@1826c076{s=0/1,p=0},AUTO} -13:18:48.439 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@1826c076{s=0/1,p=0} -13:18:48.439 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80001ms ReservedThreadExecutor@1826c076{s=0/1,p=0} -13:18:48.439 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp2010498327-83,5,main] -13:18:48.440 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp2010498327-84,5,main] -13:18:48.440 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp2010498327-85,5,main] -13:18:48.440 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp2010498327-86,5,main] -13:18:48.441 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp2010498327-87,5,main] -13:18:48.441 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp2010498327-88,5,main] -13:18:48.442 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp2010498327-89,5,main] -13:18:48.442 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp2010498327-90,5,main] -13:18:48.443 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80005ms QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.443 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@17852bf3{STOPPED} -13:18:48.443 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@17852bf3{STARTING} -13:18:48.443 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,UNAVAILABLE} -13:18:48.443 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,STARTING} -13:18:48.443 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@617439ba{STOPPED} -13:18:48.444 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-35fe0eb4[EMBEDDED:null] -13:18:48.444 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-35fe0eb4@59f67247==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:48.444 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-60cca23a[EMBEDDED:null] -13:18:48.444 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-60cca23a@83f598f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:48.444 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6[EMBEDDED:null] -13:18:48.444 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:18:48.444 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-35c51532=org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:48.446 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-35c51532] -13:18:48.446 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:48.447 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:48.447 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-35fe0eb4=org.eclipse.jetty.servlet.DefaultServlet-35fe0eb4@59f67247==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-60cca23a=org.eclipse.jetty.servlet.DefaultServlet-60cca23a@83f598f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:48.447 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@617439ba{STARTING} -13:18:48.447 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80009ms ServletHandler@617439ba{STARTED} -13:18:48.448 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:48.448 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80010ms org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:48.448 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@7938bc98 -13:18:48.449 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:48.449 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.449 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80011ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.449 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-35fe0eb4@59f67247==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.450 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80011ms org.eclipse.jetty.servlet.DefaultServlet-35fe0eb4@59f67247==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.450 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-60cca23a@83f598f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.450 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80012ms org.eclipse.jetty.servlet.DefaultServlet-60cca23a@83f598f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.450 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:48.450 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80012ms o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:48.450 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@34f0fdaa{STOPPED,min=32,inflate=-1} -13:18:48.451 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@34f0fdaa{STARTING,min=32,inflate=-1} -13:18:48.451 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@301dacc2{/,null,UNAVAILABLE} -13:18:48.451 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@301dacc2{/,null,STARTING} -13:18:48.451 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@62a618dc{STOPPED} -13:18:48.451 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-7f57fd3f[EMBEDDED:null] -13:18:48.452 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-7f57fd3f@c37f5061==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:48.452 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab[EMBEDDED:null] -13:18:48.452 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:48.453 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-19074a3b=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-19074a3b@19074a3b==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8=org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-59f9f221=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-59f9f221@59f9f221==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true} -13:18:48.453 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-19074a3b, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-59f9f221, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8] -13:18:48.453 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:48.453 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:48.453 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-7f57fd3f=org.eclipse.jetty.servlet.DefaultServlet-7f57fd3f@c37f5061==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:48.453 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@62a618dc{STARTING} -13:18:48.455 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80016ms ServletHandler@62a618dc{STARTED} -13:18:48.455 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@4b35db79{STOPPED} -13:18:48.455 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@4b35db79{STARTING} -13:18:48.455 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80017ms NotFoundHandler@4b35db79{STARTED} -13:18:48.455 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-19074a3b@19074a3b==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:48.455 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80017ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-19074a3b@19074a3b==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:48.455 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@79968caf -13:18:48.456 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-59f9f221@59f9f221==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:48.456 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80017ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-59f9f221@59f9f221==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:48.456 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@874b83b -13:18:48.456 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:48.456 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80018ms org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:48.459 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@c8938f0 -13:18:48.459 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:48.459 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.460 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80022ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.460 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-7f57fd3f@c37f5061==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.471 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@3fde4138{STOPPED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden)@b0c83a8 -13:18:48.471 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@233d738c exclude no deflater -13:18:48.471 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@258f4e3{null} -13:18:48.471 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden on HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2108} -200 null HTTP/1.1 -Matched-Stub-Id: 3b014af9-4de1-41a9-b4d6-3dd60deee9e3 -Vary: Accept-Encoding, User-Agent - - -13:18:48.471 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.server.HttpConnection$SendCallback.reset(HttpConnection.java:728) - at org.eclipse.jetty.server.HttpConnection$SendCallback.access$300(HttpConnection.java:688) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:547) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:824) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.commit(GzipHttpOutputInterceptor.java:216) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:108) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:267) - at org.eclipse.jetty.server.HttpOutput.flush(HttpOutput.java:705) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:234) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:48.472 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2110/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2109} {} -13:18:48.472 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2110/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2109} -13:18:48.472 [qtp1306936337-80] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2110/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2109} -13:18:48.472 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,org.eclipse.jetty.io.EofException) s=OPEN,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:48.472 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSED,api=BLOCKING,sc=false,e=null c=null b=null -13:18:48.472 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - /api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.server.HttpConnection$SendCallback.reset(HttpConnection.java:728) - at org.eclipse.jetty.server.HttpConnection$SendCallback.access$300(HttpConnection.java:688) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:547) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:824) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.commit(GzipHttpOutputInterceptor.java:216) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:108) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:267) - at org.eclipse.jetty.server.HttpOutput.flush(HttpOutput.java:705) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:234) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:18:48.473 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3cf09cb6{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:48.473 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3cf09cb6{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:48.473 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpChannel - !handle COMPLETE HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2110} -13:18:48.473 [qtp1306936337-80] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7600172::NetworkTrafficSocketChannelEndPoint@55807f1a{/127.0.0.1:65009<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2111/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@7600172[p=HttpParser{s=END,0 of -1},g=HttpGenerator@51cec62b{s=START}]=>HttpChannelOverHttp@3b8c3d6f{s=HttpChannelState@3cf09cb6{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/63d3bec5-12c6-457b-b612-526e69cd65b7/questions/hidden,age=2110} onFillable exit HttpChannelState@3cf09cb6{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} null -13:18:48.473 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@47ca1bcb{s=-1/1,p=0}@147e73a6 Exited -13:18:48.473 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@47ca1bcb{s=-1/1,p=0}@147e73a6 in QueuedThreadPool[qtp1306936337]@4de64411{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:48.473 [qtp1306936337-80] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1306936337-80,5,main] exited for QueuedThreadPool[qtp1306936337]@4de64411{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:48.479 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80041ms org.eclipse.jetty.servlet.DefaultServlet-7f57fd3f@c37f5061==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.480 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:48.480 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80042ms o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:48.480 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80042ms GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} -13:18:48.480 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80042ms HandlerCollection@17852bf3{STARTED} -13:18:48.481 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@2642adfe{STOPPED} -13:18:48.481 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@2642adfe{STARTING} -13:18:48.481 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80043ms ErrorHandler@2642adfe{STARTED} -13:18:48.483 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.484 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:48.486 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@ceb08a7{STOPPED} -13:18:48.486 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80048ms ScheduledExecutorScheduler@ceb08a7{STARTED} -13:18:48.487 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@ca909fb[HTTP/1.1] -13:18:48.487 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80049ms HttpConnectionFactory@ca909fb[HTTP/1.1] -13:18:48.487 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.488 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4889542+02:00 added {SelectorProducer@7d5788c3,POJO} -13:18:48.488 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4889542+02:00 added {QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}],UNMANAGED} -13:18:48.489 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4899479+02:00 created -13:18:48.489 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@504f5232{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4899479+02:00,MANAGED} -13:18:48.489 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@504f5232{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:48.490 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4909445+02:00 added {SelectorProducer@691db8ef,POJO} -13:18:48.491 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4909445+02:00 added {QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}],UNMANAGED} -13:18:48.491 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4919448+02:00 created -13:18:48.492 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@28cd349f{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4929499+02:00,MANAGED} -13:18:48.493 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@28cd349f{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:48.493 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@504f5232{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:48.493 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4939445+02:00 -13:18:48.494 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80055ms EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.4949467+02:00 -13:18:48.498 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@2b93d76 startThread=0 -13:18:48.498 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@32be2c74 on ManagedSelector@504f5232{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:48.568 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.569 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@2b93d76 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.569 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.5699342+02:00 tryProduce false -13:18:48.569 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:48.570 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@32be2c74 -13:18:48.570 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80132ms ManagedSelector@504f5232{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:48.570 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@28cd349f{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:48.570 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.5709304+02:00 -13:18:48.570 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80132ms EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.5709304+02:00 -13:18:48.572 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@36e0300c startThread=0 -13:18:48.572 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@77488383 on ManagedSelector@28cd349f{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:48.572 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.572 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 waiting with 0 keys -13:18:48.642 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.643 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@36e0300c in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.644 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.6439248+02:00 tryProduce false -13:18:48.644 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:48.644 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@77488383 -13:18:48.644 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80206ms ManagedSelector@28cd349f{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:48.644 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80206ms SelectorManager@NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.644 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@3cd15291,POJO} -13:18:48.644 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@3cd15291 startThread=0 -13:18:48.644 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@7fcf14f3,POJO} -13:18:48.644 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@7fcf14f3 startThread=0 -13:18:48.644 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@48182b56,POJO} -13:18:48.644 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@48182b56 startThread=0 -13:18:48.645 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.645 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80207ms NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:48.645 [Test worker] INFO org.eclipse.jetty.server.Server - Started @80207ms -13:18:48.645 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @80207ms Server@1bea6209{STARTED}[9.4.28.v20200408] -13:18:48.649 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:48.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-4 << "end of stream" -13:18:48.650 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-4: Close connection -13:18:48.650 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:48.650 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:48.650 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:48.651 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:65014<->127.0.0.1:8080 -13:18:48.651 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:48.651 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:48.651 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:48.651 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:48.651 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 368 -13:18:48.651 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:48.651 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:48.651 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:48.651 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 368[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "681e0c40-ccf0-43d4-be5a-75194c1b69d2",[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden",[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 401[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:48.651 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "681e0c40-ccf0-43d4-be5a-75194c1b69d2",[\r][\n]" -13:18:48.652 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:48.652 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:48.652 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:48.654 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.654 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 0 keys -13:18:48.800 [qtp2010498327-88] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.800 [qtp2010498327-85] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.800 [qtp2010498327-86] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.800 [qtp2010498327-85] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@7fcf14f3 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.800 [qtp2010498327-86] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@48182b56 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.800 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.800 [qtp2010498327-88] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@3cd15291 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.800 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.801 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.801 [qtp2010498327-86-acceptor-2@48182b56-NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@77361ce0 on ManagedSelector@28cd349f{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:48.802 [qtp2010498327-86-acceptor-2@48182b56-NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@28cd349f{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:48.802 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken with none selected -13:18:48.802 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 0/0/0 selected -13:18:48.802 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 0 keys, 1 updates -13:18:48.802 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:48.802 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@77361ce0 -13:18:48.802 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@77361ce0 startThread=0 -13:18:48.802 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.802 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 1 keys -13:18:48.802 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@77361ce0 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}] -13:18:48.803 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:48.803 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:48.803 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:48.804 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.804 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.804 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.804 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:48.804 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.804 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5d525742 on ManagedSelector@28cd349f{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:48.804 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@28cd349f{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken with none selected -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 0/0/1 selected -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 0 keys, 1 updates -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5d525742 -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 1 keys -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 1/1/1 selected -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 1 keys, 0 updates -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65014], selector=sun.nio.ch.WindowsSelectorImpl@6af36ac3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=0} tryExecute EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.8059048+02:00 -13:18:48.805 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1} startReservedThread p=1 -13:18:48.806 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@1826c076{s=0/1,p=1}@600b01b3 startThread=0 -13:18:48.806 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:48.8069079+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:48.806 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:48.806 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:48.806 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.806 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.806 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 1 keys -13:18:48.806 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.806 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@77361ce0 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}] -13:18:48.806 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@1826c076{s=0/1,p=1}@600b01b3 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}] -13:18:48.806 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=1}@600b01b3 started -13:18:48.806 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@600b01b3 waiting -13:18:48.807 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:48.807 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 563 HeapByteBuffer@70c4892d[p=0,l=563,c=8192,r=563]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 563 HeapByteBuffer@70c4892d[p=0,l=563,c=8192,r=563]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=563,c=8192,r=563]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=563,c=8192,r=563]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:48.808 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 368 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 368},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 368} -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:48.809 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:48.810 [qtp2010498327-90] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.810 [qtp2010498327-90] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:48.810 [qtp2010498327-90] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@7e037945 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6 -13:18:48.823 [qtp2010498327-90] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:48.824 [qtp2010498327-90] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:48.824 [qtp2010498327-90] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:48.824 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=16/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 368},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=15} parse HeapByteBuffer@70c4892d[p=195,l=563,c=8192,r=368]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "681e0c40-ccf...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:48.824 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c4892d[p=195,l=563,c=8192,r=368]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "681e0c40-ccf...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.824 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=15} Content@7a3ce25d{HeapByteBufferR@3f3e737e[p=195,l=563,c=8192,r=368]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "681e0c40-ccf...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:48.824 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=0,[0]=null,s=STREAM] addContent Content@7a3ce25d{HeapByteBufferR@3f3e737e[p=195,l=563,c=8192,r=368]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "681e0c40-ccf...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:48.824 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:48.824 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=15} -13:18:48.824 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:48.825 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=15} -13:18:48.825 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:48.825 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=16/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,368 of 368},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=16} parsed false HttpParser{s=END,368 of 368} -13:18:48.825 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=368,q=1,[0]=EOF,s=STREAM] read 368 from Content@7a3ce25d{HeapByteBufferR@3f3e737e[p=563,l=563,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:48.825 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=16/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,368 of 368},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=16} -13:18:48.825 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:48.876 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@ecb8d3d[p=0,l=368,c=8192,r=368]={<<<{\r\n "id" : "681e0c40-ccf...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:48.876 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@13f8a8b3[p=0,l=368,c=32768,r=368]={<<<{\r\n "id" : "681e0c40-ccf...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.876 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@13f8a8b3[p=0,l=368,c=32768,r=368]={<<<{\r\n "id" : "681e0c40-ccf...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@5f118c31{null} -13:18:48.876 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=67} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:48.877 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5e9754f2] (null,[p=0,l=368,c=32768,r=368],false)@START -13:18:48.877 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@13f8a8b3[p=0,l=368,c=32768,r=368]={<<<{\r\n "id" : "681e0c40-ccf...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.877 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:48.877 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:48.878 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5e9754f2] ([p=0,l=122,c=8192,r=122],[p=0,l=368,c=32768,r=368],false)@COMMITTED -13:18:48.878 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@70c4892d[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@13f8a8b3[p=0,l=368,c=32768,r=368]={<<<{\r\n "id" : "681e0c40-ccf...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:48.878 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:48.878 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:48.878 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:48.878 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:48.878 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:48.878 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:48.878 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "170[\r][\n]" -13:18:48.879 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:48.879 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:48.879 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:48.879 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:48.879 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:48.879 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=70/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,368 of 368},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=70} -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "681e0c40-ccf0-43d4-be5a-75194c1b69d2",[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden",[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "GET"[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 401[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "681e0c40-ccf0-43d4-be5a-75194c1b69d2",[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:48.883 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:48.883 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 368 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,368 of 368},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=74} -13:18:48.921 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=490 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:48.922 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:48.922 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5e9754f2] ([p=122,l=122,c=8192,r=0],[p=368,l=368,c=32768,r=0],false)@COMMITTED -13:18:48.923 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:48.923 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@5f118c31{null} -13:18:48.923 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@5f118c31{null} -13:18:48.923 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5b5fb789] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:48.924 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5b5fb789] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:48.924 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5b5fb789] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:48.924 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@6b996876[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:48.924 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:48.925 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:48.925 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:48.925 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:48.925 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:48.925 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:48.925 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:48.931 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:48.931 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:48.931 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:48.931 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:48.932 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:48.932 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:48.932 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:48.932 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:48.932 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 678 -13:18:48.932 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:48.932 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:48.932 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:48.932 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 678[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "04819cf6-d63e-4230-b2df-939dea876b2e",[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "POST",[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : {[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "application/json"[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " } ][\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 200,[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:48.932 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "04819cf6-d63e-4230-b2df-939dea876b2e",[\r][\n]" -13:18:48.933 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:48.933 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "Started",[\r][\n]" -13:18:48.933 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "newScenarioState" : "logged"[\r][\n]" -13:18:48.933 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:48.939 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=55/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,368 of 368},g=HttpGenerator@c0a97c6{s=COMPLETING}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=130} -13:18:48.939 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:48.940 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:48.940 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5b5fb789] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:48.940 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:48.941 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@fcd9133 in null -13:18:48.941 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:48.941 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=132} -13:18:48.942 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:48.942 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.942 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=133} -13:18:48.943 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@61caa3b3) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:48.943 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.943 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.943 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.944 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=135} -13:18:48.944 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=368 -13:18:48.944 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.944 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,368 of 368} -13:18:48.945 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:48.946 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.946 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 873 HeapByteBuffer@70c4892d[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.946 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 873 HeapByteBuffer@70c4892d[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.947 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:48.947 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.947 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:48.947 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:48.947 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:48.947 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:48.948 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:48.948 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:48.948 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:48.948 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:48.948 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:48.948 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:48.948 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:48.949 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:48.949 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:48.949 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:48.949 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:48.949 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:48.949 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:48.949 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 678 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:48.950 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} parsed true HttpParser{s=CONTENT,0 of 678} -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=3} -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:48.952 [qtp2010498327-90] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} parse HeapByteBuffer@70c4892d[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "04819cf6-d63...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c4892d[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "04819cf6-d63...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} Content@470fa3fc{HeapByteBufferR@6775b9b3[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "04819cf6-d63...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=0,[0]=null,s=STREAM] addContent Content@470fa3fc{HeapByteBufferR@6775b9b3[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "04819cf6-d63...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,678 of 678},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} parsed false HttpParser{s=END,678 of 678} -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=678,q=1,[0]=EOF,s=STREAM] read 678 from Content@470fa3fc{HeapByteBufferR@6775b9b3[p=873,l=873,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,678 of 678},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:48.953 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:48.964 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@1e05080a[p=0,l=678,c=8192,r=678]={<<<{\r\n "id" : "04819cf6-d63...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:48.965 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@13f8a8b3[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "04819cf6-d63...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.965 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@13f8a8b3[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "04819cf6-d63...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@5f118c31{null} -13:18:48.965 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=16} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:48.965 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5580e25] (null,[p=0,l=678,c=32768,r=678],false)@START -13:18:48.965 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@13f8a8b3[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "04819cf6-d63...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.965 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:48.965 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:48.966 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5580e25] ([p=0,l=122,c=8192,r=122],[p=0,l=678,c=32768,r=678],false)@COMMITTED -13:18:48.966 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@70c4892d[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@13f8a8b3[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "04819cf6-d63...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:48.966 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:48.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:48.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:48.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:48.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:48.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:48.966 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "2A6[\r][\n]" -13:18:48.966 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=20/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,678 of 678},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=17} -13:18:48.967 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:48.967 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:48.967 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:48.967 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:48.967 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "04819cf6-d63e-4230-b2df-939dea876b2e",[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/login",[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "POST",[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : {[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "application/json"[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "bodyPatterns" : [ {[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " } ][\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 200,[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : "application/json"[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "04819cf6-d63e-4230-b2df-939dea876b2e",[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "Started",[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "newScenarioState" : "logged"[\r][\n]" -13:18:48.967 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:48.967 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 678 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,678 of 678},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=18} -13:18:48.967 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=800 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:48.967 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5580e25] ([p=122,l=122,c=8192,r=0],[p=678,l=678,c=32768,r=0],false)@COMMITTED -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@5f118c31{null} -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@5f118c31{null} -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@648de485] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@648de485] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@648de485] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@6b996876[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:48.968 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:48.968 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:48.968 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,678 of 678},g=HttpGenerator@c0a97c6{s=COMPLETING}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=19} -13:18:48.968 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:48.968 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:48.968 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@648de485] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:48.968 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@fcd9133 in null -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=20} -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=20} -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@403b5f6a) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=20} -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=678 -13:18:48.969 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,678 of 678} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.970 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:48.971 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.971 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5d525742 on ManagedSelector@28cd349f{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:48.971 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@28cd349f{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:48.971 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken with none selected -13:18:48.971 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 0/0/1 selected -13:18:48.971 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 0 keys, 1 updates -13:18:48.971 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:48.971 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5d525742 -13:18:48.971 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.971 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:48.971 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 1 keys -13:18:48.971 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:48.971 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:48.978 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:48.979 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:48.979 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:48.979 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:48.980 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:48.980 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:48.980 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:48.980 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:48.980 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 603 -13:18:48.980 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:48.980 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:48.980 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:48.980 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 603[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "8eda29d7-a614-4cc9-b1d6-40921dd24c4d",[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden",[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET",[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Authorization" : {[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 200,[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "body" : "{\"DELETE\":{},\"BUILD\":{\"VAR1\":\"TEST\"}}",[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "8eda29d7-a614-4cc9-b1d6-40921dd24c4d",[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "logged"[\r][\n]" -13:18:48.980 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:48.981 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 1/1/1 selected -13:18:48.981 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 1 keys, 0 updates -13:18:48.981 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65014], selector=sun.nio.ch.WindowsSelectorImpl@6af36ac3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=10/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.981 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=10/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:48.981 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=10/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:48.981 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0} tryExecute EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:48.9818739+02:00 -13:18:48.981 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=0}@600b01b3 offer EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:48.9818739+02:00 -13:18:48.981 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1} startReservedThread p=1 -13:18:48.981 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@1826c076{s=0/1,p=1}@250983d6 startThread=0 -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:48.9818739+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=10/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=11/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=11/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 798 HeapByteBuffer@70c4892d[p=0,l=798,c=8192,r=798]={<<>>\n "requi...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 798 HeapByteBuffer@70c4892d[p=0,l=798,c=8192,r=798]={<<>>\n "requi...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=798,c=8192,r=798]={<<>>\n "requi...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=798,c=8192,r=798]={<<>>\n "requi...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:48.982 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 603 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 603},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 603} -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:48.983 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 603},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parse HeapByteBuffer@70c4892d[p=195,l=798,c=8192,r=603]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8eda29d7-a61...rioState" : "logged"\r\n}>>>\n "requi...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c4892d[p=195,l=798,c=8192,r=603]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8eda29d7-a61...rioState" : "logged"\r\n}>>>\n "requi...\x00\x00\x00\x00\x00\x00\x00} -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} Content@54dd50c6{HeapByteBufferR@1466c051[p=195,l=798,c=8192,r=603]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8eda29d7-a61...rioState" : "logged"\r\n}>>>\n "requi...\x00\x00\x00\x00\x00\x00\x00}} -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=0,[0]=null,s=STREAM] addContent Content@54dd50c6{HeapByteBufferR@1466c051[p=195,l=798,c=8192,r=603]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8eda29d7-a61...rioState" : "logged"\r\n}>>>\n "requi...\x00\x00\x00\x00\x00\x00\x00}} -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,603 of 603},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parsed false HttpParser{s=END,603 of 603} -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=603,q=1,[0]=EOF,s=STREAM] read 603 from Content@54dd50c6{HeapByteBufferR@1466c051[p=798,l=798,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>\n "requi...\x00\x00\x00\x00\x00\x00\x00}} -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,603 of 603},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:48.984 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:49.009 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@7bc35f9b[p=0,l=603,c=8192,r=603]={<<<{\r\n "id" : "8eda29d7-a61...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:49.011 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@13f8a8b3[p=0,l=603,c=32768,r=603]={<<<{\r\n "id" : "8eda29d7-a61...rioState" : "logged"\r\n}>>>\n "requi...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.011 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@13f8a8b3[p=0,l=603,c=32768,r=603]={<<<{\r\n "id" : "8eda29d7-a61...rioState" : "logged"\r\n}>>>\n "requi...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@5f118c31{null} -13:18:49.011 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=28} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:49.012 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@59057cfa] (null,[p=0,l=603,c=32768,r=603],false)@START -13:18:49.012 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@13f8a8b3[p=0,l=603,c=32768,r=603]={<<<{\r\n "id" : "8eda29d7-a61...rioState" : "logged"\r\n}>>>\n "requi...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.012 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:49.012 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:49.012 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@59057cfa] ([p=0,l=122,c=8192,r=122],[p=0,l=603,c=32768,r=603],false)@COMMITTED -13:18:49.012 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@70c4892d[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@13f8a8b3[p=0,l=603,c=32768,r=603]={<<<{\r\n "id" : "8eda29d7-a61...rioState" : "logged"\r\n}>>>\n "requi...\x00\x00\x00\x00\x00\x00\x00}] -13:18:49.012 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:49.012 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=30/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,603 of 603},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=29} -13:18:49.012 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 603 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,603 of 603},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=29} -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=725 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@59057cfa] ([p=122,l=122,c=8192,r=0],[p=603,l=603,c=32768,r=0],false)@COMMITTED -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@5f118c31{null} -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@5f118c31{null} -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@375ca5d8] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@375ca5d8] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@375ca5d8] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@6b996876[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,603 of 603},g=HttpGenerator@c0a97c6{s=COMPLETING}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=30} -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:49.013 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@375ca5d8] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@fcd9133 in null -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=31} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=31} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@4168c51e) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=31} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=603 -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,603 of 603} -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:49.014 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "25B[\r][\n]" -13:18:49.015 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.015 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.015 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "8eda29d7-a614-4cc9-b1d6-40921dd24c4d",[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden",[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "GET",[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Authorization" : {[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 200,[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "body" : "{\"DELETE\":{},\"BUILD\":{\"VAR1\":\"TEST\"}}",[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : "application/json"[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "8eda29d7-a614-4cc9-b1d6-40921dd24c4d",[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:49.015 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "logged"[\r][\n]" -13:18:49.016 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}[\r][\n]" -13:18:49.016 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:49.016 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:49.016 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:49.016 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:49.016 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:49.016 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:49.016 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:49.016 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:49.016 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:49.016 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:49.021 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5e148028] HTTP GET http://localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden -13:18:49.015 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:49.027 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.028 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:49.028 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.029 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=15/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.029 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:49.029 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.029 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:49.030 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:49.030 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:49.030 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.030 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 1 keys -13:18:49.030 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@1826c076{s=0/1,p=1}@250983d6 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}] -13:18:49.030 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=1}@250983d6 started -13:18:49.030 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@250983d6 waiting -13:18:49.035 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@600b01b3 task=EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/PRODUCING/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:49.0358635+02:00 -13:18:49.035 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/PRODUCING/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:49.0358635+02:00 tryProduce true -13:18:49.035 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@600b01b3 size 1 > capacity -13:18:49.035 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@1826c076{s=1/1,p=0}@600b01b3 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:49.091 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:49.091 [reactor-http-nio-1] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xb181f0de] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:49.187 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:49.187 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:49.187 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:49.187 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:49.191 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:49.191 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:49.191 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, method=GET} -13:18:49.191 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:49.201 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:49.259 [qtp2010498327-86-acceptor-2@48182b56-NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@79f1fc76 on ManagedSelector@504f5232{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:49.260 [qtp2010498327-86-acceptor-2@48182b56-NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@504f5232{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:49.260 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken with none selected -13:18:49.260 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken up from select, 0/0/0 selected -13:18:49.260 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 processing 0 keys, 1 updates -13:18:49.260 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:49.260 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@79f1fc76 -13:18:49.260 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@79f1fc76 startThread=0 -13:18:49.260 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:49.260 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 waiting with 1 keys -13:18:49.261 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@79f1fc76 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:49.261 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:49.261 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:49.262 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:49.264 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.264 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=0}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.264 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=0}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.264 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@79bc5b3{AC.ReadCB@225cf0bd{HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:49.264 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.264 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@ed26de0 on ManagedSelector@504f5232{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:49.264 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@504f5232{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:49.264 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken with none selected -13:18:49.264 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken up from select, 0/0/1 selected -13:18:49.265 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@79f1fc76 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 processing 0 keys, 1 updates -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@ed26de0 -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 waiting with 1 keys -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken up from select, 1/1/1 selected -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 processing 1 keys, 0 updates -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65015], selector=sun.nio.ch.WindowsSelectorImpl@453bb545, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:49.265 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0} tryExecute EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:49.2658363+02:00 -13:18:49.266 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=0}@250983d6 offer EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:49.2668576+02:00 -13:18:49.266 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1} startReservedThread p=1 -13:18:49.266 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@1826c076{s=0/1,p=1}@4fc3de35 startThread=0 -13:18:49.266 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:49.2668576+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:49.266 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@79bc5b3{AC.ReadCB@225cf0bd{HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:49.266 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 197 HeapByteBuffer@70c4892d[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 197 HeapByteBuffer@70c4892d[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=197,c=8192,r=197]={<<>>\n "id" :...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:49.267 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden on HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=0} -GET //localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden on HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden)@ac159a9 in null -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:49.268 [qtp2010498327-83] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@12485429 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab -13:18:49.289 [qtp2010498327-83] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:49.289 [qtp2010498327-83] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:49.289 [qtp2010498327-83] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=23/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=23} filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=23/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=23} parse HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=23} -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=23} -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@3b81f531[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=23/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=23} parsed false HttpParser{s=END,0 of -1} -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=23/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=23} -13:18:49.290 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:49.317 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@1826c076{s=0/1,p=1}@4fc3de35 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}] -13:18:49.317 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=1}@4fc3de35 started -13:18:49.317 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@4fc3de35 waiting -13:18:49.317 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@250983d6 task=EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:49.3178509+02:00 -13:18:49.317 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:49.3178509+02:00 tryProduce true -13:18:49.317 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:49.317 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:49.318 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=50/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=51} -13:18:49.318 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 waiting with 1 keys -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@6ae2a602 exclude by status 401 -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@6aeea6e6{null} -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden on HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=63} -401 null HTTP/1.1 -Matched-Stub-Id: 681e0c40-ccf0-43d4-be5a-75194c1b69d2 - - -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@ecb0c88] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 681e0c40-ccf0-43d4-be5a-75194c1b69d2 - - -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@ecb0c88] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@71e669e5{IDLE}->null [HeapByteBuffer@70c4892d[p=0,l=145,c=8192,r=145]={<<>>alhost:80...\x00\x00\x00\x00\x00\x00\x00}] -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@71e669e5{WRITING}->null:IDLE-->WRITING -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=63/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=COMMITTED}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=63} -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@71e669e5{WRITING}->null -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@71e669e5{IDLE}->null:WRITING-->IDLE -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@ecb0c88] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:49.330 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:49.331 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6aeea6e6{null} -13:18:49.331 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6aeea6e6{null} -13:18:49.331 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ea038a9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:49.331 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ea038a9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:49.331 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ea038a9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:49.331 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@71e669e5{IDLE}->null [HeapByteBuffer@6b996876[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:49.331 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=681e0c40-ccf0-43d4-be5a-75194c1b69d2, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:49.331 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:49.331 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5e148028] Response 401 UNAUTHORIZED -13:18:49.332 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@71e669e5{WRITING}->null:IDLE-->WRITING -13:18:49.332 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=COMPLETING}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=65} -13:18:49.332 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@71e669e5{WRITING}->null -13:18:49.332 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@71e669e5{IDLE}->null:WRITING-->IDLE -13:18:49.332 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ea038a9] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:49.332 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:49.333 [reactor-http-nio-1] DEBUG reactor.netty.channel.FluxReceive - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:49.333 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=65} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@388628c8{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=67} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@6e8328cd) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@388628c8{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@388628c8{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@388628c8{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=67} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden written=0 -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@388628c8{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:49.334 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.335 [reactor-http-nio-1] INFO com.bi.edp.configuration_stack.adapter.client.catalog.CatalogClient - CatalogClient unauthorized, trying to log in -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@79bc5b3{AC.ReadCB@225cf0bd{HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@ed26de0 on ManagedSelector@504f5232{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:49.335 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@504f5232{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:49.335 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken with none selected -13:18:49.336 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken up from select, 0/0/1 selected -13:18:49.336 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 processing 0 keys, 1 updates -13:18:49.336 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:49.336 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@ed26de0 -13:18:49.336 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.336 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:49.336 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 waiting with 1 keys -13:18:49.336 [qtp2010498327-83] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:49.336 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@2b93d76 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:49.337 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7727cb84] HTTP POST http://localhost:8080/api/v0/components/login -13:18:49.338 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265] Created a new pooled channel, now 2 active connections and 0 inactive connections -13:18:49.338 [reactor-http-nio-1] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x64f82265] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:49.338 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:49.339 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:49.339 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:49.339 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:49.339 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:49.339 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Channel cleaned, now 1 active connections and 1 inactive connections -13:18:49.340 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:49.340 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 1 inactive connections -13:18:49.340 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:49.340 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:49.340 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:49.340 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:49.340 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:49.341 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:49.341 [reactor-http-nio-1] DEBUG org.springframework.core.codec.CharSequenceEncoder - [7727cb84] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:49.343 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:49.360 [qtp2010498327-86-acceptor-2@48182b56-NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@7dce7790 on ManagedSelector@28cd349f{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:49.360 [qtp2010498327-86-acceptor-2@48182b56-NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@28cd349f{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:49.360 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken with none selected -13:18:49.360 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 0/0/1 selected -13:18:49.360 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 0 keys, 1 updates -13:18:49.360 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:49.360 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@7dce7790 -13:18:49.360 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@7dce7790 startThread=0 -13:18:49.360 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:49.360 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 2 keys -13:18:49.365 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@7dce7790 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:49.365 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:49.365 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:49.365 [qtp2010498327-90] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:49.366 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.366 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.366 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.366 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@1f2d142e{AC.ReadCB@17938954{HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:49.366 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.366 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@f4ac0e4 on ManagedSelector@28cd349f{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:49.366 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@28cd349f{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:49.366 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken with none selected -13:18:49.366 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 0/0/2 selected -13:18:49.366 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 0 keys, 1 updates -13:18:49.366 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:49.366 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@f4ac0e4 -13:18:49.366 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.366 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:49.366 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 2 keys -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 1/1/2 selected -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 1 keys, 0 updates -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65016], selector=sun.nio.ch.WindowsSelectorImpl@6af36ac3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0} tryExecute EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/REPRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:49.3678191+02:00 -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=0}@4fc3de35 offer EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/REPRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:49.3678191+02:00 -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1} startReservedThread p=1 -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@1826c076{s=0/1,p=1}@52263f7f startThread=0 -13:18:49.367 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:49.3678191+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@1f2d142e{AC.ReadCB@17938954{HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@70c4892d[p=0,l=220,c=8192,r=220]={<<>>4-4cc9-b1...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@70c4892d[p=0,l=220,c=8192,r=220]={<<>>4-4cc9-b1...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=220,c=8192,r=220]={<<>>4-4cc9-b1...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=220,c=8192,r=220]={<<>>4-4cc9-b1...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:49.368 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=1} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:49.369 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:49.369 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@7dce7790 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}] -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:49.369 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@1826c076{s=0/1,p=1}@52263f7f in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}] -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} -13:18:49.369 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=1}@52263f7f started -13:18:49.369 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@52263f7f waiting -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@63286 in null -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:49.369 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parse HeapByteBuffer@70c4892d[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>4-4cc9-b1...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c4892d[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>4-4cc9-b1...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} Content@74157ad{HeapByteBufferR@144dd567[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>4-4cc9-b1...\x00\x00\x00\x00\x00\x00\x00}} -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@7773cd56[c=0,q=0,[0]=null,s=STREAM] addContent Content@74157ad{HeapByteBufferR@144dd567[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>4-4cc9-b1...\x00\x00\x00\x00\x00\x00\x00}} -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@7773cd56[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=END,51 of 51},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parsed false HttpParser{s=END,51 of 51} -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@7773cd56[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@74157ad{HeapByteBufferR@144dd567[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>4-4cc9-b1...\x00\x00\x00\x00\x00\x00\x00}} -13:18:49.370 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=END,51 of 51},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:49.371 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@4650433c[p=0,l=21,c=8192,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@4b218864[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/login)@63286 -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@31bd9a8a exclude no deflater -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@4b218864[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@58cde896{null} -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=5} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: 04819cf6-d63e-4230-b2df-939dea876b2e -Vary: Accept-Encoding, User-Agent - - -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@1c401910[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5be5d054] (null,[p=0,l=21,c=32768,r=21],false)@START -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@4b218864[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: 04819cf6-d63e-4230-b2df-939dea876b2e -Vary: Accept-Encoding, User-Agent - - -13:18:49.373 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1c401910[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5be5d054] ([p=0,l=206,c=8192,r=206],[p=0,l=21,c=32768,r=21],false)@COMMITTED -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@6d16868{IDLE}->null [HeapByteBuffer@70c4892d[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@4b218864[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d16868{WRITING}->null:IDLE-->WRITING -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=END,51 of 51},g=HttpGenerator@298f7c7c{s=COMMITTED}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 21 NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=END,51 of 51},g=HttpGenerator@298f7c7c{s=COMMITTED}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=227 remaining=0 WriteFlusher@6d16868{WRITING}->null -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d16868{IDLE}->null:WRITING-->IDLE -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1c401910[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5be5d054] ([p=206,l=206,c=8192,r=0],[p=21,l=21,c=32768,r=0],false)@COMMITTED -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:49.374 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=04819cf6-d63e-4230-b2df-939dea876b2e, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@58cde896{null} -13:18:49.374 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:49.374 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@58cde896{null} -13:18:49.375 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@1c401910[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@31efa97c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:49.375 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@1c401910[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@31efa97c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:49.375 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [7727cb84] Response 200 OK -13:18:49.375 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1c401910[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@31efa97c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:49.375 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@6d16868{IDLE}->null [HeapByteBuffer@6b996876[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:49.375 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d16868{WRITING}->null:IDLE-->WRITING -13:18:49.375 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@4fc3de35 task=EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:49.375823+02:00 -13:18:49.375 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:49.375823+02:00 tryProduce true -13:18:49.375 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=END,51 of 51},g=HttpGenerator@298f7c7c{s=COMPLETING}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=7} -13:18:49.375 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@6d16868{WRITING}->null -13:18:49.375 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d16868{IDLE}->null:WRITING-->IDLE -13:18:49.375 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1c401910[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@31efa97c] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:49.375 [reactor-http-nio-1] DEBUG reactor.netty.channel.FluxReceive - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@a33489f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@a33489f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -13:18:49.376 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@2d7bbec8) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@a33489f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@a33489f{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@a33489f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=8} -13:18:49.376 [reactor-http-nio-1] DEBUG org.springframework.core.codec.StringDecoder - [7727cb84] Decoded "{"token":"someToken"}" -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=21 -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@a33489f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,51 of 51} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.376 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.377 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.377 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:49.377 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:49.377 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:49.377 [reactor-http-nio-1] INFO com.bi.edp.configuration_stack.adapter.client.catalog.CatalogClient - CatalogClient logged successfully -13:18:49.377 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.377 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.377 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:49.377 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@1f2d142e{AC.ReadCB@17938954{HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:49.377 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:49.377 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:49.377 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:49.377 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:49.377 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:49.378 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.378 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:49.378 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:49.378 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:49.378 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:49.378 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 2 keys -13:18:49.378 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@4fc3de35 size 1 > capacity -13:18:49.378 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@1826c076{s=1/1,p=0}@4fc3de35 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.198 [parallel-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5e148028] HTTP GET http://localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden -13:18:50.199 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 1 inactive connections -13:18:50.199 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:50.199 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:50.199 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, method=GET} -13:18:50.199 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken up from select, 1/1/1 selected -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 processing 1 keys, 0 updates -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65015], selector=sun.nio.ch.WindowsSelectorImpl@453bb545, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=865/30000}{io=1/1,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=865/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.201 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=865/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0} tryExecute EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:50.2017045+02:00 -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=0}@52263f7f offer EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:50.2017045+02:00 -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1} startReservedThread p=1 -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@1826c076{s=0/1,p=1}@70426339 startThread=0 -13:18:50.201 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:50.2017045+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=866/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@79bc5b3{AC.ReadCB@225cf0bd{HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=866/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=866/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 206 HeapByteBuffer@70c4892d[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 206 HeapByteBuffer@70c4892d[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:50.202 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden on HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} -GET //localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer someToken - - -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden on HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=1} -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden)@ac159a9 in null -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:50.203 [qtp2010498327-89] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.204 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.204 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.204 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=2} filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.204 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=2} parse HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.204 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.204 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:50.205 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=3} -13:18:50.205 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:50.205 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=3} -13:18:50.205 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@3b81f531[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:50.205 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:50.205 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=3} -13:18:50.205 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:50.206 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1}@52263f7f task=EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:50.2067066+02:00 -13:18:50.207 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:50.2077058+02:00 tryProduce true -13:18:50.207 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:50.207 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.207 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=5} -13:18:50.207 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 waiting with 1 keys -13:18:50.207 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@1826c076{s=0/1,p=1}@70426339 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}] -13:18:50.207 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=1}@70426339 started -13:18:50.207 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@70426339 waiting -13:18:50.209 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@7e859341[p=0,l=37,c=8192,r=37]={<<<{"DELETE":{},"BUILD":{"VAR1":"TEST"}}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:50.209 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@4b218864[p=0,l=37,c=32768,r=37]={<<<{"DELETE":{},"BUILD":{"VAR1":"TEST"}}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.209 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden)@ac159a9 -13:18:50.209 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@7aba0849 exclude no deflater -13:18:50.209 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@4b218864[p=0,l=37,c=32768,r=37]={<<<{"DELETE":{},"BUILD":{"VAR1":"TEST"}}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6aeea6e6{null} -13:18:50.209 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden on HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=7} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: 8eda29d7-a614-4cc9-b1d6-40921dd24c4d -Vary: Accept-Encoding, User-Agent - - -13:18:50.209 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3fb8997a] (null,[p=0,l=37,c=32768,r=37],false)@START -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@4b218864[p=0,l=37,c=32768,r=37]={<<<{"DELETE":{},"BUILD":{"VAR1":"TEST"}}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: 8eda29d7-a614-4cc9-b1d6-40921dd24c4d -Vary: Accept-Encoding, User-Agent - - -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3fb8997a] ([p=0,l=206,c=8192,r=206],[p=0,l=37,c=32768,r=37],false)@COMMITTED -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@71e669e5{IDLE}->null [HeapByteBuffer@70c4892d[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@4b218864[p=0,l=37,c=32768,r=37]={<<<{"DELETE":{},"BUILD":{"VAR1":"TEST"}}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@71e669e5{WRITING}->null:IDLE-->WRITING -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=COMMITTED}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=8} -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 37 NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=COMMITTED}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=8} -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=243 remaining=0 WriteFlusher@71e669e5{WRITING}->null -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@71e669e5{IDLE}->null:WRITING-->IDLE -13:18:50.210 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3fb8997a] ([p=206,l=206,c=8192,r=0],[p=37,l=37,c=32768,r=0],false)@COMMITTED -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6aeea6e6{null} -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6aeea6e6{null} -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c807e1f] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c807e1f] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c807e1f] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@71e669e5{IDLE}->null [HeapByteBuffer@6b996876[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@71e669e5{WRITING}->null:IDLE-->WRITING -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=END,0 of -1},g=HttpGenerator@1671df6b{s=COMPLETING}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=9} -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@71e669e5{WRITING}->null -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@71e669e5{IDLE}->null:WRITING-->IDLE -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@3a574e8e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5c807e1f] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=9} -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@388628c8{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@388628c8{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.211 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=8eda29d7-a614-4cc9-b1d6-40921dd24c4d, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=9} -13:18:50.211 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@e4de155) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:50.211 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@388628c8{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@388628c8{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@388628c8{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden,age=10} -13:18:50.212 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [5e148028] Response 200 OK -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden written=37 -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@388628c8{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@79bc5b3{AC.ReadCB@225cf0bd{HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.212 [reactor-http-nio-1] DEBUG reactor.netty.channel.FluxReceive - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:50.212 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.213 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@ed26de0 on ManagedSelector@504f5232{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:50.213 [qtp2010498327-89] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@504f5232{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:50.213 [qtp2010498327-89] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:50.213 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@250983d6 size 1 > capacity -13:18:50.213 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@1826c076{s=1/1,p=0}@250983d6 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.214 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:50.214 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken with none selected -13:18:50.214 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken up from select, 0/0/1 selected -13:18:50.214 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 processing 0 keys, 1 updates -13:18:50.214 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.214 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@ed26de0 -13:18:50.214 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.214 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.214 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 waiting with 1 keys -13:18:50.216 [reactor-http-nio-1] DEBUG org.springframework.http.codec.json.Jackson2JsonDecoder - [5e148028] Decoded [{DELETE={}, BUILD={VAR1=TEST}}] -13:18:50.269 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:50.270 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:50.270 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:50.270 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden, connection=PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:50.270 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:50.270 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:50.273 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:50.273 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:50.273 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:50.273 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:50.274 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:50.274 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:50.274 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:50.274 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/requests/count HTTP/1.1 -13:18:50.274 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 120 -13:18:50.274 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:50.274 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:50.274 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:50.274 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 120[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/products/a75ba316-b0e1-438c-8e6c-a31786431307/questions/hidden",[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:50.274 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:50.274 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 1/1/2 selected -13:18:50.275 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 1 keys, 0 updates -13:18:50.275 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65014], selector=sun.nio.ch.WindowsSelectorImpl@6af36ac3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1245/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.275 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1245/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.275 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1245/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:50.275 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0} tryExecute EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/REPRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:50.2756947+02:00 -13:18:50.275 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=0}@70426339 offer EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/REPRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:50.2756947+02:00 -13:18:50.275 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1} startReservedThread p=1 -13:18:50.275 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@1826c076{s=0/1,p=1}@58e9ac43 startThread=0 -13:18:50.276 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:50.2756947+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1246/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:50.276 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1}@70426339 task=EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:50.2767053+02:00 -13:18:50.276 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:50.2767053+02:00 tryProduce true -13:18:50.276 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1246/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.276 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:50.276 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.276 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1246/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:50.276 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1246/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.276 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 2 keys -13:18:50.276 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 321 HeapByteBuffer@70c4892d[p=0,l=321,c=8192,r=321]={<<>>38c-8e6c-...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.277 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@1826c076{s=0/1,p=1}@58e9ac43 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}] -13:18:50.277 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=1}@58e9ac43 started -13:18:50.277 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@58e9ac43 waiting -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 321 HeapByteBuffer@70c4892d[p=0,l=321,c=8192,r=321]={<<>>38c-8e6c-...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=321,c=8192,r=321]={<<>>38c-8e6c-...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=321,c=8192,r=321]={<<>>38c-8e6c-...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:50.277 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 120 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 120},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} parsed true HttpParser{s=CONTENT,0 of 120} -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:50.278 [qtp2010498327-84] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 120},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parse HeapByteBuffer@70c4892d[p=201,l=321,c=8192,r=120]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>38c-8e6c-...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c4892d[p=201,l=321,c=8192,r=120]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>38c-8e6c-...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} Content@55760d1e{HeapByteBufferR@199efa85[p=201,l=321,c=8192,r=120]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>38c-8e6c-...\x00\x00\x00\x00\x00\x00\x00}} -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=0,[0]=null,s=STREAM] addContent Content@55760d1e{HeapByteBufferR@199efa85[p=201,l=321,c=8192,r=120]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>38c-8e6c-...\x00\x00\x00\x00\x00\x00\x00}} -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,120 of 120},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parsed false HttpParser{s=END,120 of 120} -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=120,q=1,[0]=EOF,s=STREAM] read 120 from Content@55760d1e{HeapByteBufferR@199efa85[p=321,l=321,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>38c-8e6c-...\x00\x00\x00\x00\x00\x00\x00}} -13:18:50.279 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,120 of 120},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:50.280 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:50.284 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@69e39a80[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:50.284 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@13f8a8b3[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.284 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@13f8a8b3[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@5f118c31{null} -13:18:50.284 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=7} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:50.284 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7cfda84b] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:50.284 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@13f8a8b3[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.284 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:50.284 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:50.285 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7cfda84b] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:50.285 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@70c4892d[p=0,l=116,c=8192,r=116]={<<>>:8080\r\nCo...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@13f8a8b3[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:50.285 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:50.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]" -13:18:50.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:50.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:50.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:50.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:50.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "38[\r][\n]" -13:18:50.285 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,120 of 120},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=8} -13:18:50.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 200 OK -13:18:50.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:50.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:50.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:50.285 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,120 of 120},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=8} -13:18:50.285 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:50.285 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:50.285 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:50.285 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7cfda84b] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@5f118c31{null} -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@5f118c31{null} -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@19865437] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@19865437] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:50.286 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:50.286 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "count" : 2,[\r][\n]" -13:18:50.286 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requestJournalDisabled" : false[\r][\n]" -13:18:50.286 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@19865437] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@6b996876[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:50.286 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:50.286 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:50.286 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,120 of 120},g=HttpGenerator@c0a97c6{s=COMPLETING}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=9} -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:50.286 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:50.286 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@19865437] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:50.286 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@fcd9133 in null -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=9} -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:50.286 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=9} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@77a2df50) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=10} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,120 of 120} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.287 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.288 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.288 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5d525742 on ManagedSelector@28cd349f{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:50.288 [qtp2010498327-84] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@28cd349f{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:50.288 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:50.288 [qtp2010498327-84] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:50.288 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:50.288 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:50.288 [qtp2010498327-84] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@36e0300c in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.288 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:50.288 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken with none selected -13:18:50.288 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 0/0/2 selected -13:18:50.288 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 0 keys, 1 updates -13:18:50.288 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.288 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5d525742 -13:18:50.288 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.288 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.288 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 2 keys -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:50.289 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:50.289 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:50.289 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:50.289 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/requests/count HTTP/1.1 -13:18:50.289 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 63 -13:18:50.289 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:50.289 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:50.289 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:50.289 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 63[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:50.289 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:50.289 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 1/1/2 selected -13:18:50.289 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 1 keys, 0 updates -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65014], selector=sun.nio.ch.WindowsSelectorImpl@6af36ac3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0} tryExecute EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:50.2907029+02:00 -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=0}@58e9ac43 offer EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/PRODUCING/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:50.2907029+02:00 -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1} startReservedThread p=1 -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@1826c076{s=0/1,p=1}@3ec1c654 startThread=0 -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:50.2907029+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.290 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 263 HeapByteBuffer@70c4892d[p=0,l=263,c=8192,r=263]={<<>>e6c-a3178...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 263 HeapByteBuffer@70c4892d[p=0,l=263,c=8192,r=263]={<<>>e6c-a3178...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=263,c=8192,r=263]={<<>>e6c-a3178...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=263,c=8192,r=263]={<<>>e6c-a3178...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:50.291 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 63 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} parsed true HttpParser{s=CONTENT,0 of 63} -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,AVAILABLE} -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:50.292 [qtp2010498327-87] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.293 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@1826c076{s=0/1,p=1}@3ec1c654 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}] -13:18:50.293 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=1}@3ec1c654 started -13:18:50.293 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@3ec1c654 waiting -13:18:50.293 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=1}@58e9ac43 task=EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:50.2936951+02:00 -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parse HeapByteBuffer@70c4892d[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>e6c-a3178...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c4892d[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>e6c-a3178...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.293 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=true/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:50.2936951+02:00 tryProduce true -13:18:50.293 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} Content@66add2ed{HeapByteBufferR@16bb436b[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>e6c-a3178...\x00\x00\x00\x00\x00\x00\x00}} -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=0,[0]=null,s=STREAM] addContent Content@66add2ed{HeapByteBufferR@16bb436b[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>e6c-a3178...\x00\x00\x00\x00\x00\x00\x00}} -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:50.293 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,63 of 63},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parsed false HttpParser{s=END,63 of 63} -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@6be70855[c=63,q=1,[0]=EOF,s=STREAM] read 63 from Content@66add2ed{HeapByteBufferR@16bb436b[p=263,l=263,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>e6c-a3178...\x00\x00\x00\x00\x00\x00\x00}} -13:18:50.293 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,63 of 63},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:50.293 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 2 keys -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,63 of 63},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:50.293 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:50.306 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@591ceeb9[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:50.306 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@13f8a8b3[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.306 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@13f8a8b3[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@5f118c31{null} -13:18:50.306 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=15} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@69df70a8] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@13f8a8b3[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@69df70a8] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@70c4892d[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@13f8a8b3[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:50.307 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]" -13:18:50.307 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:50.307 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:50.307 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:50.307 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:50.307 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "38[\r][\n]" -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=16/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,63 of 63},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=16} -13:18:50.307 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 200 OK -13:18:50.307 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:50.307 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,63 of 63},g=HttpGenerator@c0a97c6{s=COMMITTED}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=16} -13:18:50.307 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@69df70a8] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:50.307 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@5f118c31{null} -13:18:50.307 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@5f118c31{null} -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@616dfdc4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@616dfdc4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@616dfdc4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:50.308 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:50.308 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "count" : 0,[\r][\n]" -13:18:50.308 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requestJournalDisabled" : false[\r][\n]" -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@8fcc2a3{IDLE}->null [HeapByteBuffer@6b996876[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:50.308 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{WRITING}->null:IDLE-->WRITING -13:18:50.308 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:50.308 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:50.308 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=END,63 of 63},g=HttpGenerator@c0a97c6{s=COMPLETING}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=17} -13:18:50.308 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:50.308 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@8fcc2a3{WRITING}->null -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@8fcc2a3{IDLE}->null:WRITING-->IDLE -13:18:50.308 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c678226[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@616dfdc4] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@fcd9133 in null -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@301dacc2{/,null,AVAILABLE} -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=17} -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=17} -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@2d015a99) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:50.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@1bea6209{STARTED}[9.4.28.v20200408] -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.308 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@1bea6209{STOPPING}[9.4.28.v20200408] -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3d7da80d{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=5,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=17} -13:18:50.308 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3d7da80d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,63 of 63} -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@28cd349f{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:50.309 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@36196cb7 on ManagedSelector@28cd349f{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.309 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@28cd349f{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c4892d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.309 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken with none selected -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:50.309 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 0/0/2 selected -13:18:50.309 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 0 keys, 1 updates -13:18:50.309 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.309 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@36196cb7 -13:18:50.309 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@28cd349f{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.309 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.309 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.309 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.309 [qtp2010498327-87] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5d525742 on ManagedSelector@28cd349f{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:50.310 [qtp2010498327-87] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:50.310 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@70426339 size 1 > capacity -13:18:50.310 [qtp2010498327-87] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@1826c076{s=1/1,p=0}@70426339 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@dbfab38{AC.ReadCB@7522ca46{HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=0/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@7522ca46[p=HttpParser{s=START,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=0/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@7522ca46[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@28cd349f{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@387ac6d9 startThread=0 -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=932/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=933/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=933/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@1f2d142e{AC.ReadCB@17938954{HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=933/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@17938954[p=HttpParser{s=START,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:50.310 [qtp2010498327-83] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=933/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@17938954[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@28cd349f{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7a112972 startThread=0 -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 1 -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - wakeup on updates SelectorProducer@691db8ef -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 2 keys -13:18:50.311 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x64f82265, L:/127.0.0.1:65016 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x64f82265, L:/127.0.0.1:65016 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken with none selected -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 0/0/0 selected -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 0 keys, 1 updates -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5d525742 -13:18:50.311 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@30991d66 on ManagedSelector@28cd349f{STOPPING} id=1 keys=0 selected=0 updates=0 -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Ignoring key update for concurrently closed channel NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7522ca46[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7522ca46[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7522ca46[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.311 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 1 -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - wakeup on updates SelectorProducer@691db8ef -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 waiting with 0 keys -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken with none selected -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 woken up from select, 0/0/0 selected -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@6af36ac3 processing 0 keys, 1 updates -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@30991d66 -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@58e9ac43 size 1 > capacity -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@1826c076{s=1/1,p=0}@58e9ac43 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@387ac6d9 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.312 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:50.312696+02:00 -13:18:50.312 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@15c4be73/SelectorProducer@691db8ef/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:50.312696+02:00 -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7522ca46[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.312 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@28cd349f{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:50.312 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@504f5232{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:50.312 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@323415f6 on ManagedSelector@504f5232{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:50.312 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@7522ca46::NetworkTrafficSocketChannelEndPoint@72874216{/127.0.0.1:65014<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@7522ca46[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@c0a97c6{s=START}]=>HttpChannelOverHttp@787f2966{s=HttpChannelState@3d7da80d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.312 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@504f5232{STOPPING} id=0 keys=1 selected=0 updates=1 -13:18:50.313 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@387ac6d9 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.313 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7a112972 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.313 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=935/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@17938954[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.313 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken with none selected -13:18:50.313 [qtp2010498327-83] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@17938954::NetworkTrafficSocketChannelEndPoint@4b4ebd9f{/127.0.0.1:65016<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=935/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@17938954[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@298f7c7c{s=START}]=>HttpChannelOverHttp@535ca91a{s=HttpChannelState@a33489f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.313 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken up from select, 0/0/1 selected -13:18:50.313 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 processing 0 keys, 1 updates -13:18:50.313 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.313 [qtp2010498327-83] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7a112972 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.313 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@323415f6 -13:18:50.313 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@504f5232{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:50.313 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=101/30000}{io=1/1,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.314 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=101/30000}{io=1/1,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.314 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=101/30000}{io=1/1,kio=1,kro=1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.314 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@79bc5b3{AC.ReadCB@225cf0bd{HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=101/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@225cf0bd[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.314 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:50.314 [qtp2010498327-90] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:50.314 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=101/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@225cf0bd[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:50.314 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@504f5232{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:50.314 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@4982170 startThread=0 -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 waiting with 1 keys -13:18:50.315 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xb181f0de, L:/127.0.0.1:65015 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xb181f0de, L:/127.0.0.1:65015 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:50.315 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@3335837 on ManagedSelector@504f5232{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:50.315 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@504f5232{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken with none selected -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 woken up from select, 0/0/0 selected -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@453bb545 processing 0 keys, 1 updates -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@3335837 -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=1/1,p=0}@52263f7f size 1 > capacity -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@1826c076{s=1/1,p=0}@52263f7f in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.315 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@4982170 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.315 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:50.3156878+02:00 -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@30e98985/SelectorProducer@7d5788c3/IDLE/p=false/QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:50.3156878+02:00 -13:18:50.316 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=103/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@225cf0bd[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@504f5232{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@ca909fb[HTTP/1.1] -13:18:50.316 [qtp2010498327-90] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@225cf0bd::NetworkTrafficSocketChannelEndPoint@76485a3f{/127.0.0.1:65015<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=103/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@225cf0bd[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@1671df6b{s=START}]=>HttpChannelOverHttp@33a44bf5{s=HttpChannelState@388628c8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@ca909fb[HTTP/1.1] -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@ceb08a7{STARTED} -13:18:50.316 [qtp2010498327-90] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@4982170 in QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@ceb08a7{STOPPED} -13:18:50.316 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@1bea6209{STOPPING}[9.4.28.v20200408] -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@2642adfe{STARTED} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@2642adfe{STOPPING} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@2642adfe{STOPPED} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@17852bf3{STARTED} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@17852bf3{STOPPING} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@34f0fdaa{STARTED,min=32,inflate=-1} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@34f0fdaa{STOPPING,min=32,inflate=-1} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@301dacc2{/,null,SHUTDOWN} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@301dacc2{/,null,UNAVAILABLE} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@4b35db79{STARTED} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@4b35db79{STOPPING} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@4b35db79{STOPPED} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@62a618dc{STARTED} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@62a618dc{STOPPING} -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-728ed8c8@728ed8c8==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-59f9f221@59f9f221==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-59f9f221@59f9f221==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-19074a3b@19074a3b==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-19074a3b@19074a3b==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.316 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-227125ab@5e00e38c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-7f57fd3f@c37f5061==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-7f57fd3f@c37f5061==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@62a618dc{STOPPED} -13:18:50.317 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@301dacc2{/,null,UNAVAILABLE} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@301dacc2{/,null,UNAVAILABLE} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@34f0fdaa{STOPPED,min=32,inflate=-1} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,SHUTDOWN} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,UNAVAILABLE} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@617439ba{STARTED} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@617439ba{STOPPING} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-35c51532@35c51532==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-753c5bc6@8b07c==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-35fe0eb4@59f67247==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-35fe0eb4@59f67247==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-60cca23a@83f598f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-60cca23a@83f598f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@617439ba{STOPPED} -13:18:50.317 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,UNAVAILABLE} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@3f5d4750{/__admin,null,UNAVAILABLE} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@17852bf3{STOPPED} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp2010498327]@77d5c517{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp2010498327]@77d5c517{STOPPING,8<=8<=14,i=4,r=-1,q=0}[ReservedThreadExecutor@1826c076{s=1/1,p=0}] -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@1826c076{s=1/1,p=0} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=0/1,p=0}@3ec1c654 offer STOP! -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@1826c076{s=-1/1,p=0} -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:50.317 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@1bea6209{STOPPED}[9.4.28.v20200408] -13:18:50.320 [qtp2010498327-86] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp2010498327-86-acceptor-2@48182b56-NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:50.320 [qtp2010498327-86] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp2010498327-86,5,main] exited for QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:50.321 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=-1/1,p=0}@3ec1c654 task=STOP! -13:18:50.321 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@1826c076{s=-1/1,p=0}@3ec1c654 Exited -13:18:50.321 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@1826c076{s=-1/1,p=0}@3ec1c654 in QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:50.321 [qtp2010498327-89] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp2010498327-89,5,main] exited for QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:50.322 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@4a5d9b7d{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp781595164]@2e96321c{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:50.323 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@1a1b53b8[HTTP/1.1] added {HttpConfiguration@6e29f141{32768/8192,8192/8192,https://:0,[]},POJO} -13:18:50.323 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{null, ()}{0.0.0.0:0} added {Server@4a5d9b7d{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:18:50.323 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp781595164]@2e96321c{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:50.323 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@5710c372{STOPPED},AUTO} -13:18:50.323 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@17d6ccbb,POJO} -13:18:50.323 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@1a1b53b8[HTTP/1.1],AUTO} -13:18:50.323 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@1a1b53b8[HTTP/1.1] -13:18:50.323 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:18:50.323 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@4a5d9b7d{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:18:50.324 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@4a5d9b7d{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@365484f9{/__admin,null,UNAVAILABLE},MANAGED} -13:18:50.324 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@46d61801 -13:18:50.324 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@365484f9{/__admin,null,UNAVAILABLE} added {ServletHandler@178c58fa{STOPPED},MANAGED} -13:18:50.325 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@4a5d9b7d{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@6693b5e0{/,null,UNAVAILABLE},MANAGED} -13:18:50.325 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@3c90b4b4 -13:18:50.325 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@6693b5e0{/,null,UNAVAILABLE} added {ServletHandler@1011a8dc{STOPPED},MANAGED} -13:18:50.325 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@6693b5e0{/,null,UNAVAILABLE} added {NotFoundHandler@7daf20c9{STOPPED},MANAGED} -13:18:50.326 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@23bd82ac{STOPPED} added {o.e.j.s.ServletContextHandler@365484f9{/__admin,null,UNAVAILABLE},AUTO} -13:18:50.328 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:18:50.328 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STOPPED,min=32,inflate=-1} mime types IncludeExclude@2b6c2589{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@27e005aa{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@6693b5e0{/,null,UNAVAILABLE},MANAGED} -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@23bd82ac{STOPPED} added {GzipHandler@27e005aa{STOPPED,min=32,inflate=-1},AUTO} -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@4a5d9b7d{STOPPED}[9.4.28.v20200408] added {HandlerCollection@23bd82ac{STOPPED},MANAGED} -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@4a5d9b7d{STOPPED}[9.4.28.v20200408] -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@4a5d9b7d{STARTING}[9.4.28.v20200408] added {ErrorHandler@520eedf5{STOPPED},AUTO} -13:18:50.329 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@4a5d9b7d{STARTING}[9.4.28.v20200408] -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp781595164]@2e96321c{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=0} -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp781595164]@2e96321c{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] added {ReservedThreadExecutor@5e1e7972{s=0/1,p=0},AUTO} -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@5e1e7972{s=0/1,p=0} -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81891ms ReservedThreadExecutor@5e1e7972{s=0/1,p=0} -13:18:50.329 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp781595164-92,5,main] -13:18:50.330 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp781595164-93,5,main] -13:18:50.331 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp781595164-94,5,main] -13:18:50.331 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp781595164-95,5,main] -13:18:50.331 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp781595164-96,5,main] -13:18:50.332 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp781595164-97,5,main] -13:18:50.332 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp781595164-98,5,main] -13:18:50.332 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp781595164-99,5,main] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81894ms QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@23bd82ac{STOPPED} -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@23bd82ac{STARTING} -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@365484f9{/__admin,null,UNAVAILABLE} -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@365484f9{/__admin,null,STARTING} -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@178c58fa{STOPPED} -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-247fc4d2[EMBEDDED:null] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-247fc4d2@6d1fd3af==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-361eeda4[EMBEDDED:null] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-361eeda4@3483e868==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c[EMBEDDED:null] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d=org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:50.333 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-247fc4d2=org.eclipse.jetty.servlet.DefaultServlet-247fc4d2@6d1fd3af==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-361eeda4=org.eclipse.jetty.servlet.DefaultServlet-361eeda4@3483e868==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@178c58fa{STARTING} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81895ms ServletHandler@178c58fa{STARTED} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81896ms org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@7ad214cf -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81896ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-247fc4d2@6d1fd3af==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81896ms org.eclipse.jetty.servlet.DefaultServlet-247fc4d2@6d1fd3af==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-361eeda4@3483e868==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81896ms org.eclipse.jetty.servlet.DefaultServlet-361eeda4@3483e868==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.334 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81896ms o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@27e005aa{STOPPED,min=32,inflate=-1} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@27e005aa{STARTING,min=32,inflate=-1} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@6693b5e0{/,null,UNAVAILABLE} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@6693b5e0{/,null,STARTING} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@1011a8dc{STOPPED} -13:18:50.334 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-3fe49744[EMBEDDED:null] -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-3fe49744@75a3d67f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed[EMBEDDED:null] -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-606530e8=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-606530e8@606530e8==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-7b20c517=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-7b20c517@7b20c517==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-271047ef=org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-606530e8, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-7b20c517, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-271047ef] -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-3fe49744=org.eclipse.jetty.servlet.DefaultServlet-3fe49744@75a3d67f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@1011a8dc{STARTING} -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81897ms ServletHandler@1011a8dc{STARTED} -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@7daf20c9{STOPPED} -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@7daf20c9{STARTING} -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81897ms NotFoundHandler@7daf20c9{STARTED} -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-606530e8@606530e8==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81897ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-606530e8@606530e8==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@7715e054 -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-7b20c517@7b20c517==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81897ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-7b20c517@7b20c517==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@75070940 -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:50.335 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81897ms org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@10c8c996 -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81898ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-3fe49744@75a3d67f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81898ms org.eclipse.jetty.servlet.DefaultServlet-3fe49744@75a3d67f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.336 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81898ms o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81898ms GzipHandler@27e005aa{STARTED,min=32,inflate=-1} -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81898ms HandlerCollection@23bd82ac{STARTED} -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@520eedf5{STOPPED} -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@520eedf5{STARTING} -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81898ms ErrorHandler@520eedf5{STARTED} -13:18:50.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.337 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:50.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@5710c372{STOPPED} -13:18:50.337 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81899ms ScheduledExecutorScheduler@5710c372{STARTED} -13:18:50.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@1a1b53b8[HTTP/1.1] -13:18:50.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81899ms HttpConnectionFactory@1a1b53b8[HTTP/1.1] -13:18:50.338 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.338 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.33872+02:00 added {SelectorProducer@33e4dd16,POJO} -13:18:50.339 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.33872+02:00 added {QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}],UNMANAGED} -13:18:50.339 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.3396904+02:00 created -13:18:50.339 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@472b777f{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.3396904+02:00,MANAGED} -13:18:50.339 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@472b777f{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:50.339 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.3396904+02:00 added {SelectorProducer@8560933,POJO} -13:18:50.339 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.3396904+02:00 added {QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}],UNMANAGED} -13:18:50.340 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.3406853+02:00 created -13:18:50.340 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@1d4f6942{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.3406853+02:00,MANAGED} -13:18:50.340 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@1d4f6942{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:50.340 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@472b777f{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:50.340 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.3406853+02:00 -13:18:50.340 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @81902ms EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.3406853+02:00 -13:18:50.342 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@143751b startThread=0 -13:18:50.342 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@5c74357c on ManagedSelector@472b777f{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:50.389 [qtp2010498327-85] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp2010498327-85-acceptor-1@7fcf14f3-NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:50.389 [qtp2010498327-85] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp2010498327-85,5,main] exited for QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:50.458 [qtp2010498327-88] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp2010498327-88-acceptor-0@3cd15291-NetworkTrafficServerConnector@44d9c01f{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:50.458 [qtp2010498327-88] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp2010498327-88,5,main] exited for QueuedThreadPool[qtp2010498327]@77d5c517{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:18:50.511 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.511 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@143751b in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.512 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.5126587+02:00 tryProduce false -13:18:50.512 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.512 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@5c74357c -13:18:50.512 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @82074ms ManagedSelector@472b777f{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:50.512 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@1d4f6942{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:50.512 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.512 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.5126587+02:00 -13:18:50.512 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 waiting with 0 keys -13:18:50.512 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @82074ms EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.5126587+02:00 -13:18:50.514 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@64d3a050 startThread=0 -13:18:50.515 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@2b0d0f1 on ManagedSelector@1d4f6942{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:50.521 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.521 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@64d3a050 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.521 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.5216633+02:00 tryProduce false -13:18:50.521 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.521 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@2b0d0f1 -13:18:50.521 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.521 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 0 keys -13:18:50.521 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @82083ms ManagedSelector@1d4f6942{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:50.521 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @82083ms SelectorManager@NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.521 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@18c19611,POJO} -13:18:50.521 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@18c19611 startThread=0 -13:18:50.521 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@65638fa0,POJO} -13:18:50.522 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@65638fa0 startThread=0 -13:18:50.522 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@1c4b627c,POJO} -13:18:50.522 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@1c4b627c startThread=0 -13:18:50.522 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.522 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @82083ms NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:50.522 [Test worker] INFO org.eclipse.jetty.server.Server - Started @82084ms -13:18:50.522 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @82084ms Server@4a5d9b7d{STARTED}[9.4.28.v20200408] -13:18:50.525 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:50.526 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:50.526 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:50.526 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:50.526 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "end of stream" -13:18:50.526 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection detected -13:18:50.526 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: Close connection -13:18:50.526 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:50.526 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:50.527 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:65021<->127.0.0.1:8080 -13:18:50.527 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:50.527 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:50.527 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:50.527 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:50.527 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 364 -13:18:50.527 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:50.527 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:50.527 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:50.527 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 364[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "e6e389f5-84f1-4173-8aa6-7c1b446bb653",[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments",[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:50.527 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:50.528 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:50.528 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 401[\r][\n]" -13:18:50.528 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:50.528 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "e6e389f5-84f1-4173-8aa6-7c1b446bb653",[\r][\n]" -13:18:50.528 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:50.528 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:50.528 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:50.555 [qtp781595164-94] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.555 [qtp781595164-94] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@18c19611 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.556 [qtp781595164-95] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.556 [qtp781595164-95] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@65638fa0 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.557 [qtp781595164-95-acceptor-1@65638fa0-NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@51e2aecc on ManagedSelector@1d4f6942{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:50.557 [qtp781595164-95-acceptor-1@65638fa0-NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@1d4f6942{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:50.557 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken with none selected -13:18:50.558 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 0/0/0 selected -13:18:50.558 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 0 keys, 1 updates -13:18:50.558 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.558 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@51e2aecc -13:18:50.558 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@51e2aecc startThread=0 -13:18:50.558 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.558 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 1 keys -13:18:50.559 [qtp781595164-96] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.559 [qtp781595164-96] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@1c4b627c in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.560 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.560 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@51e2aecc in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}] -13:18:50.560 [qtp781595164-97] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:50.561 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:50.561 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}-> -13:18:50.562 [qtp781595164-97] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.562 [qtp781595164-97] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.562 [qtp781595164-97] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.562 [qtp781595164-97] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@256fb62e{AC.ReadCB@5d2fafe1{HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.562 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.562 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@e743e1 on ManagedSelector@1d4f6942{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:50.562 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@1d4f6942{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken with none selected -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 0/0/1 selected -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 0 keys, 1 updates -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@e743e1 -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 1 keys -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 1/1/1 selected -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 1 keys, 0 updates -13:18:50.563 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65021], selector=sun.nio.ch.WindowsSelectorImpl@146bda14, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.564 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.564 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:50.564 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=0} tryExecute EatWhatYouKill@11f99275/SelectorProducer@8560933/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.5646569+02:00 -13:18:50.564 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=1} startReservedThread p=1 -13:18:50.564 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@1e93b164 startThread=0 -13:18:50.564 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@11f99275/SelectorProducer@8560933/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:50.5646569+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:50.565 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:50.565 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:50.565 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:50.565 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.565 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 1 keys -13:18:50.565 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:50.565 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@51e2aecc in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}] -13:18:50.565 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@1e93b164 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}] -13:18:50.565 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=1}@1e93b164 started -13:18:50.565 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@1e93b164 waiting -13:18:50.571 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:50.571 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:50.571 [qtp781595164-98] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@256fb62e{AC.ReadCB@5d2fafe1{HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:50.571 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:50.572 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 559 HeapByteBuffer@40573931[p=0,l=559,c=8192,r=559]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.572 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 559 HeapByteBuffer@40573931[p=0,l=559,c=8192,r=559]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.572 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=559,c=8192,r=559]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.572 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=559,c=8192,r=559]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.572 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:50.572 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 364 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 364},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 364} -13:18:50.573 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:50.574 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:50.574 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:50.574 [qtp781595164-98] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:50.574 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:50.574 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:50.574 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.574 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:50.574 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@4e90df4b for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c -13:18:50.941 [qtp781595164-98] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:50.941 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:50.941 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:50.941 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:50.942 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=370/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 364},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=369} parse HeapByteBuffer@40573931[p=195,l=559,c=8192,r=364]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "e6e389f5-84f...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:50.942 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@40573931[p=195,l=559,c=8192,r=364]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "e6e389f5-84f...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.942 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=369} Content@4aaf5241{HeapByteBufferR@fadd570[p=195,l=559,c=8192,r=364]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "e6e389f5-84f...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:50.942 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=0,[0]=null,s=STREAM] addContent Content@4aaf5241{HeapByteBufferR@fadd570[p=195,l=559,c=8192,r=364]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "e6e389f5-84f...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:50.943 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:50.943 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=370} -13:18:50.943 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:50.943 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=370} -13:18:50.943 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:50.943 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=371/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,364 of 364},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=370} parsed false HttpParser{s=END,364 of 364} -13:18:50.943 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=364,q=1,[0]=EOF,s=STREAM] read 364 from Content@4aaf5241{HeapByteBufferR@fadd570[p=559,l=559,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:50.943 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=371/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,364 of 364},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=370} -13:18:50.943 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@30e75fc7[p=0,l=364,c=8192,r=364]={<<<{\r\n "id" : "e6e389f5-84f...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@15e1a245[p=0,l=364,c=32768,r=364]={<<<{\r\n "id" : "e6e389f5-84f...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@15e1a245[p=0,l=364,c=32768,r=364]={<<<{\r\n "id" : "e6e389f5-84f...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6bccb114{null} -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=403} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@241bf8ab] (null,[p=0,l=364,c=32768,r=364],false)@START -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@15e1a245[p=0,l=364,c=32768,r=364]={<<<{\r\n "id" : "e6e389f5-84f...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@241bf8ab] ([p=0,l=122,c=8192,r=122],[p=0,l=364,c=32768,r=364],false)@COMMITTED -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@40573931[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@15e1a245[p=0,l=364,c=32768,r=364]={<<<{\r\n "id" : "e6e389f5-84f...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:50.976 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:50.977 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:50.977 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:50.977 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:50.977 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:50.977 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:50.977 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "16C[\r][\n]" -13:18:50.977 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:50.977 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:50.977 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:50.977 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:50.977 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:50.978 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=405/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,364 of 364},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=405} -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "e6e389f5-84f1-4173-8aa6-7c1b446bb653",[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments",[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "GET"[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 401[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "e6e389f5-84f1-4173-8aa6-7c1b446bb653",[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:50.978 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:51.027 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 364 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=48/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,364 of 364},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=454} -13:18:51.030 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=486 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:51.034 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:51.035 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@241bf8ab] ([p=122,l=122,c=8192,r=0],[p=364,l=364,c=32768,r=0],false)@COMMITTED -13:18:51.036 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.036 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6bccb114{null} -13:18:51.037 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6bccb114{null} -13:18:51.037 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@323ac76c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.038 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@323ac76c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.045 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@323ac76c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.049 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@58461432[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:51.050 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:51.052 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:51.052 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:51.052 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:51.052 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:51.052 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:51.052 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:51.058 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:51.058 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:51.058 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:51.058 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:51.062 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:51.062 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:51.062 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:51.062 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:51.062 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 644 -13:18:51.062 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:51.062 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:51.062 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:51.062 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 644[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "f8200022-0935-411d-ad78-bd2225b73641",[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "POST",[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : {[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "application/json"[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " } ][\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 200,[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "f8200022-0935-411d-ad78-bd2225b73641",[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:51.062 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:51.085 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=56/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,364 of 364},g=HttpGenerator@5162fbcf{s=COMPLETING}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=512} -13:18:51.096 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:51.102 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:51.103 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@323ac76c] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:51.104 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.105 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@23637131 in null -13:18:51.106 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:51.108 [qtp781595164-98] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=534} -13:18:51.109 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:51.110 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.111 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=538} -13:18:51.112 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@1b049707) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:51.112 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.116 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.117 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.118 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=545} -13:18:51.119 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=364 -13:18:51.119 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.120 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,364 of 364} -13:18:51.121 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:51.122 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.122 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 839 HeapByteBuffer@40573931[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.122 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 839 HeapByteBuffer@40573931[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.123 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.123 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=839,c=8192,r=839]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.123 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:51.123 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:51.123 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:51.124 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:51.124 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:51.126 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:51.127 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:51.127 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:51.127 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:51.127 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:51.127 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:51.128 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:51.128 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:51.128 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:51.128 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:51.128 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:51.128 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:51.129 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 644 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:51.132 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 644},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=3} parsed true HttpParser{s=CONTENT,0 of 644} -13:18:51.133 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=4} -13:18:51.133 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.133 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:51.134 [qtp781595164-98] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} -13:18:51.134 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:51.134 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:51.134 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.135 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.135 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:51.135 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.136 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 644},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=7} parse HeapByteBuffer@40573931[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "f8200022-093...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.136 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@40573931[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "f8200022-093...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.137 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=7} Content@7f6132ac{HeapByteBufferR@176e5ef6[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "f8200022-093...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:51.137 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=0,[0]=null,s=STREAM] addContent Content@7f6132ac{HeapByteBufferR@176e5ef6[p=195,l=839,c=8192,r=644]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "f8200022-093...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:51.137 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:51.137 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=8} -13:18:51.137 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:51.138 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=9} -13:18:51.138 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:51.138 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=16/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,644 of 644},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=9} parsed false HttpParser{s=END,644 of 644} -13:18:51.138 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=644,q=1,[0]=EOF,s=STREAM] read 644 from Content@7f6132ac{HeapByteBufferR@176e5ef6[p=839,l=839,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:51.139 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=16/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,644 of 644},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=9} -13:18:51.139 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.149 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@2457c0ba[p=0,l=644,c=8192,r=644]={<<<{\r\n "id" : "f8200022-093...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:51.150 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@15e1a245[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "f8200022-093...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.150 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@15e1a245[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "f8200022-093...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6bccb114{null} -13:18:51.150 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=21} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:51.150 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2d885700] (null,[p=0,l=644,c=32768,r=644],false)@START -13:18:51.151 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@15e1a245[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "f8200022-093...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.151 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:51.151 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:51.152 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2d885700] ([p=0,l=122,c=8192,r=122],[p=0,l=644,c=32768,r=644],false)@COMMITTED -13:18:51.152 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@40573931[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@15e1a245[p=0,l=644,c=32768,r=644]={<<<{\r\n "id" : "f8200022-093...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:51.152 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:51.153 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:51.153 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:51.153 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:51.153 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:51.153 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:51.153 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "284[\r][\n]" -13:18:51.153 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:51.153 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:51.153 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:51.153 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:51.153 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:51.155 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=32/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,644 of 644},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=26} -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "f8200022-0935-411d-ad78-bd2225b73641",[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/login",[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "POST",[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : {[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "application/json"[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "bodyPatterns" : [ {[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " } ][\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 200,[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : "application/json"[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "f8200022-0935-411d-ad78-bd2225b73641",[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:51.155 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:51.156 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 644 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,644 of 644},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=27} -13:18:51.156 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=766 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:51.157 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:51.157 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2d885700] ([p=122,l=122,c=8192,r=0],[p=644,l=644,c=32768,r=0],false)@COMMITTED -13:18:51.157 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.157 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6bccb114{null} -13:18:51.157 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6bccb114{null} -13:18:51.157 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2273f05d] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.157 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2273f05d] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.158 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2273f05d] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.158 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@58461432[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:51.158 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:51.158 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:51.158 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:51.158 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:51.158 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:51.158 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:51.158 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:51.159 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,644 of 644},g=HttpGenerator@5162fbcf{s=COMPLETING}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=29} -13:18:51.159 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:51.161 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:51.163 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:51.163 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:51.163 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:51.163 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:51.163 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2273f05d] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:51.164 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:51.164 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:51.164 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:51.164 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:51.164 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:51.164 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 573 -13:18:51.164 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:51.164 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:51.164 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:51.164 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:51.164 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:51.164 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 573[\r][\n]" -13:18:51.164 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:51.164 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:51.164 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "1dfe214b-7bd0-49f9-890b-0a8602ff6c74",[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments",[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET",[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Authorization" : {[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 200,[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "body" : "[\"DEV\",\"PROD\"]",[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "1dfe214b-7bd0-49f9-890b-0a8602ff6c74",[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:51.165 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:51.166 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.166 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@23637131 in null -13:18:51.166 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:51.167 [qtp781595164-98] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=38} -13:18:51.167 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:51.167 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.167 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=38} -13:18:51.168 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@1c9d9776) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:51.168 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.168 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.168 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.168 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=39} -13:18:51.168 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=644 -13:18:51.168 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.169 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,644 of 644} -13:18:51.169 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:51.169 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.169 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 768 HeapByteBuffer@40573931[p=0,l=768,c=8192,r=768]={<<>>enarioNam...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.170 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 768 HeapByteBuffer@40573931[p=0,l=768,c=8192,r=768]={<<>>enarioNam...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.170 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=768,c=8192,r=768]={<<>>enarioNam...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.170 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=768,c=8192,r=768]={<<>>enarioNam...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.170 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:51.170 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:51.171 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:51.171 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:51.171 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:51.171 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:51.171 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:51.172 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:51.172 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:51.172 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:51.172 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:51.172 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:51.173 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:51.173 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:51.173 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:51.173 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:51.173 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:51.174 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 573 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:51.176 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 573},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=3} parsed true HttpParser{s=CONTENT,0 of 573} -13:18:51.177 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=3} -13:18:51.177 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.177 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:51.177 [qtp781595164-98] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=4} -13:18:51.177 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:51.178 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:51.179 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.184 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.185 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:51.185 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.186 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=16/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 573},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=13} parse HeapByteBuffer@40573931[p=195,l=768,c=8192,r=573]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "1dfe214b-7bd...ioState" : "Started"\r\n}>>>enarioNam...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.186 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@40573931[p=195,l=768,c=8192,r=573]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "1dfe214b-7bd...ioState" : "Started"\r\n}>>>enarioNam...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.186 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=13} Content@655d64f{HeapByteBufferR@690aa1d2[p=195,l=768,c=8192,r=573]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "1dfe214b-7bd...ioState" : "Started"\r\n}>>>enarioNam...\x00\x00\x00\x00\x00\x00\x00}} -13:18:51.186 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=0,[0]=null,s=STREAM] addContent Content@655d64f{HeapByteBufferR@690aa1d2[p=195,l=768,c=8192,r=573]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "1dfe214b-7bd...ioState" : "Started"\r\n}>>>enarioNam...\x00\x00\x00\x00\x00\x00\x00}} -13:18:51.187 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:51.187 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=14} -13:18:51.187 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:51.187 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=14} -13:18:51.187 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:51.188 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=18/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,573 of 573},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=15} parsed false HttpParser{s=END,573 of 573} -13:18:51.188 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=573,q=1,[0]=EOF,s=STREAM] read 573 from Content@655d64f{HeapByteBufferR@690aa1d2[p=768,l=768,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>enarioNam...\x00\x00\x00\x00\x00\x00\x00}} -13:18:51.232 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=62/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,573 of 573},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=59} -13:18:51.232 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@24905e6f[p=0,l=573,c=8192,r=573]={<<<{\r\n "id" : "1dfe214b-7bd...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@15e1a245[p=0,l=573,c=32768,r=573]={<<<{\r\n "id" : "1dfe214b-7bd...ioState" : "Started"\r\n}>>>enarioNam...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@15e1a245[p=0,l=573,c=32768,r=573]={<<<{\r\n "id" : "1dfe214b-7bd...ioState" : "Started"\r\n}>>>enarioNam...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6bccb114{null} -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=65} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@c5f031c] (null,[p=0,l=573,c=32768,r=573],false)@START -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@15e1a245[p=0,l=573,c=32768,r=573]={<<<{\r\n "id" : "1dfe214b-7bd...ioState" : "Started"\r\n}>>>enarioNam...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@c5f031c] ([p=0,l=122,c=8192,r=122],[p=0,l=573,c=32768,r=573],false)@COMMITTED -13:18:51.238 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@40573931[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@15e1a245[p=0,l=573,c=32768,r=573]={<<<{\r\n "id" : "1dfe214b-7bd...ioState" : "Started"\r\n}>>>enarioNam...\x00\x00\x00\x00\x00\x00\x00}] -13:18:51.239 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "23D[\r][\n]" -13:18:51.239 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=69/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,573 of 573},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=66} -13:18:51.239 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:51.239 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:51.239 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:51.239 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:51.239 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:51.239 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 573 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,573 of 573},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=66} -13:18:51.239 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=695 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:51.239 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "1dfe214b-7bd0-49f9-890b-0a8602ff6c74",[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments",[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "GET",[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:51.239 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Authorization" : {[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 200,[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "body" : "[\"DEV\",\"PROD\"]",[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : "application/json"[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "1dfe214b-7bd0-49f9-890b-0a8602ff6c74",[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@c5f031c] ([p=122,l=122,c=8192,r=0],[p=573,l=573,c=32768,r=0],false)@COMMITTED -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6bccb114{null} -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6bccb114{null} -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@30e72774] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@30e72774] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@30e72774] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@58461432[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:51.240 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:51.240 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,573 of 573},g=HttpGenerator@5162fbcf{s=COMPLETING}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=67} -13:18:51.240 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:51.240 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:51.241 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@30e72774] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@23637131 in null -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=68} -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.241 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=68} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@566a2f3b) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=69} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=573 -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,573 of 573} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:51.242 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.243 [qtp781595164-98] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.243 [qtp781595164-98] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@256fb62e{AC.ReadCB@5d2fafe1{HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:51.243 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.243 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@e743e1 on ManagedSelector@1d4f6942{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:51.243 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@1d4f6942{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:51.243 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken with none selected -13:18:51.243 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 0/0/1 selected -13:18:51.243 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 0 keys, 1 updates -13:18:51.243 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:51.243 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@e743e1 -13:18:51.243 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.243 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:51.243 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 1 keys -13:18:51.243 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:51.244 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:51.246 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [54a0b96a] HTTP GET http://localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments -13:18:51.248 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:51.249 [reactor-http-nio-2] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xd4142ed4] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:51.251 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:51.251 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:51.251 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:51.251 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:51.251 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:51.252 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:51.252 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, method=GET} -13:18:51.252 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:51.253 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:51.254 [qtp781595164-95-acceptor-1@65638fa0-NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@5f255a80 on ManagedSelector@472b777f{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:51.254 [qtp781595164-95-acceptor-1@65638fa0-NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@472b777f{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:51.254 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken with none selected -13:18:51.255 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken up from select, 0/0/0 selected -13:18:51.255 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 processing 0 keys, 1 updates -13:18:51.255 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:51.255 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@5f255a80 -13:18:51.255 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@5f255a80 startThread=0 -13:18:51.255 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:51.255 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 waiting with 1 keys -13:18:51.255 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@5f255a80 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:51.255 [qtp781595164-99] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:51.256 [qtp781595164-99] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.256 [qtp781595164-99] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:51.256 [qtp781595164-99] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.256 [qtp781595164-99] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.256 [qtp781595164-99] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.256 [qtp781595164-99] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@267693a5{AC.ReadCB@17abc0d5{HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:51.256 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.257 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@3ee0edfb on ManagedSelector@472b777f{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:51.257 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@472b777f{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken with none selected -13:18:51.257 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken up from select, 0/0/1 selected -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 processing 0 keys, 1 updates -13:18:51.257 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@5f255a80 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@3ee0edfb -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 waiting with 1 keys -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken up from select, 1/1/1 selected -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 processing 1 keys, 0 updates -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65022], selector=sun.nio.ch.WindowsSelectorImpl@74793139, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.257 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:51.258 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0} tryExecute EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:51.2585636+02:00 -13:18:51.258 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=0}@1e93b164 offer EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:51.2585636+02:00 -13:18:51.258 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=1} startReservedThread p=1 -13:18:51.258 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@7e815a49 startThread=0 -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:51.2585636+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@267693a5{AC.ReadCB@17abc0d5{HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 193 HeapByteBuffer@40573931[p=0,l=193,c=8192,r=193]={<<>>\r\n{\r\n "i...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 193 HeapByteBuffer@40573931[p=0,l=193,c=8192,r=193]={<<>>\r\n{\r\n "i...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=193,c=8192,r=193]={<<>>\r\n{\r\n "i...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=193,c=8192,r=193]={<<>>\r\n{\r\n "i...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:51.259 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments on HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} -GET //localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments on HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments)@3b83dbfd in null -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:51.260 [qtp781595164-92] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:51.261 [qtp781595164-92] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:51.261 [qtp781595164-92] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@7ed554a6 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed -13:18:51.262 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@7e815a49 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}] -13:18:51.262 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=1}@7e815a49 started -13:18:51.262 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@7e815a49 waiting -13:18:51.262 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@1e93b164 task=EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:51.2625592+02:00 -13:18:51.262 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:51.2625592+02:00 tryProduce true -13:18:51.262 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:51.262 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:51.263 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=2} -13:18:51.263 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 waiting with 1 keys -13:18:51.264 [qtp781595164-92] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:51.264 [qtp781595164-92] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:51.264 [qtp781595164-92] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=5} filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=5} parse HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=5} -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=5} -13:18:51.265 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@5bac24b2[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:51.266 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=6} parsed false HttpParser{s=END,0 of -1} -13:18:51.266 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=6} -13:18:51.266 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.271 [qtp781595164-92] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@2b386637 exclude by status 401 -13:18:51.271 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@31f5b8ef{null} -13:18:51.271 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments on HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=11} -401 null HTTP/1.1 -Matched-Stub-Id: e6e389f5-84f1-4173-8aa6-7c1b446bb653 - - -13:18:51.271 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5fe29baf] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: e6e389f5-84f1-4173-8aa6-7c1b446bb653 - - -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5fe29baf] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@378347ba{IDLE}->null [HeapByteBuffer@40573931[p=0,l=145,c=8192,r=145]={<<>>st:8080\r\n...\x00\x00\x00\x00\x00\x00\x00}] -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@378347ba{WRITING}->null:IDLE-->WRITING -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@46d7e02b{s=COMMITTED}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=12} -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@378347ba{WRITING}->null -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@378347ba{IDLE}->null:WRITING-->IDLE -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5fe29baf] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@31f5b8ef{null} -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@31f5b8ef{null} -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2badb365] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2badb365] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2badb365] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.272 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@378347ba{IDLE}->null [HeapByteBuffer@58461432[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:51.273 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@378347ba{WRITING}->null:IDLE-->WRITING -13:18:51.273 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@46d7e02b{s=COMPLETING}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=13} -13:18:51.273 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@378347ba{WRITING}->null -13:18:51.273 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@378347ba{IDLE}->null:WRITING-->IDLE -13:18:51.273 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2badb365] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=14} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@52a954e4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=14} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@43c49521) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@52a954e4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@52a954e4{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@52a954e4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=14} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments written=0 -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@52a954e4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.274 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.275 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:51.275 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.275 [qtp781595164-92] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.275 [qtp781595164-92] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@267693a5{AC.ReadCB@17abc0d5{HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:51.275 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.275 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@3ee0edfb on ManagedSelector@472b777f{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:51.275 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@472b777f{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:51.275 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:51.275 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@143751b in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:51.276 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=e6e389f5-84f1-4173-8aa6-7c1b446bb653, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:51.276 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:51.276 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [54a0b96a] Response 401 UNAUTHORIZED -13:18:51.284 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken with none selected -13:18:51.285 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken up from select, 0/0/1 selected -13:18:51.285 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 processing 0 keys, 1 updates -13:18:51.285 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:51.285 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@3ee0edfb -13:18:51.285 [reactor-http-nio-2] DEBUG reactor.netty.channel.FluxReceive - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:51.285 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=10/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.285 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:51.285 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 waiting with 1 keys -13:18:51.285 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:51.287 [reactor-http-nio-2] INFO com.bi.edp.configuration_stack.adapter.client.catalog.CatalogClient - CatalogClient unauthorized, trying to log in -13:18:51.288 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [29b32475] HTTP POST http://localhost:8080/api/v0/components/login -13:18:51.289 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514] Created a new pooled channel, now 2 active connections and 0 inactive connections -13:18:51.289 [reactor-http-nio-2] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x1ea5d514] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:51.290 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:51.290 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:51.290 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:51.290 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:51.290 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:51.290 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Channel cleaned, now 1 active connections and 1 inactive connections -13:18:51.291 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:51.291 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 1 inactive connections -13:18:51.291 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:51.292 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:51.292 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:51.292 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:51.292 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:51.292 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:51.292 [qtp781595164-95-acceptor-1@65638fa0-NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@5b1ac5bc on ManagedSelector@1d4f6942{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:51.292 [qtp781595164-95-acceptor-1@65638fa0-NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@1d4f6942{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:51.293 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken with none selected -13:18:51.293 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 0/0/1 selected -13:18:51.293 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 0 keys, 1 updates -13:18:51.293 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:51.293 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@5b1ac5bc -13:18:51.293 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@5b1ac5bc startThread=0 -13:18:51.293 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:51.293 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 2 keys -13:18:51.293 [reactor-http-nio-2] DEBUG org.springframework.core.codec.CharSequenceEncoder - [29b32475] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:51.294 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:51.295 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@5b1ac5bc in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:51.295 [qtp781595164-99] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:51.295 [qtp781595164-99] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.296 [qtp781595164-99] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:51.296 [qtp781595164-99] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.296 [qtp781595164-99] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.296 [qtp781595164-99] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.296 [qtp781595164-99] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@274af9b8{AC.ReadCB@25e4a766{HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:51.296 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.296 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@2be550ed on ManagedSelector@1d4f6942{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:51.296 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@1d4f6942{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:51.296 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken with none selected -13:18:51.296 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 0/0/2 selected -13:18:51.296 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 0 keys, 1 updates -13:18:51.296 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@2be550ed -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 2 keys -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 1/1/2 selected -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 1 keys, 0 updates -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65023], selector=sun.nio.ch.WindowsSelectorImpl@146bda14, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:51.297 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0} tryExecute EatWhatYouKill@11f99275/SelectorProducer@8560933/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:51.2975506+02:00 -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=0}@7e815a49 offer EatWhatYouKill@11f99275/SelectorProducer@8560933/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:51.2975506+02:00 -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=1} startReservedThread p=1 -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@1160f6ce startThread=0 -13:18:51.298 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.298 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@5b1ac5bc in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}] -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:51.2985527+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:51.298 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@1160f6ce in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}] -13:18:51.298 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=1}@1160f6ce started -13:18:51.298 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@1160f6ce waiting -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@274af9b8{AC.ReadCB@25e4a766{HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@40573931[p=0,l=220,c=8192,r=220]={<<>>0-49f9-89...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@40573931[p=0,l=220,c=8192,r=220]={<<>>0-49f9-89...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=220,c=8192,r=220]={<<>>0-49f9-89...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=220,c=8192,r=220]={<<>>0-49f9-89...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:51.298 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@6a001165 in null -13:18:51.299 [qtp781595164-93] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:51.300 [qtp781595164-93] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:51.300 [qtp781595164-93] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.300 [qtp781595164-93] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.300 [qtp781595164-93] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:51.300 [qtp781595164-93] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:51.300 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} parse HeapByteBuffer@40573931[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>0-49f9-89...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.300 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@40573931[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>0-49f9-89...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.300 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} Content@691b95d0{HeapByteBufferR@3bbed39d[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>0-49f9-89...\x00\x00\x00\x00\x00\x00\x00}} -13:18:51.301 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2dfe84a2[c=0,q=0,[0]=null,s=STREAM] addContent Content@691b95d0{HeapByteBufferR@3bbed39d[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>0-49f9-89...\x00\x00\x00\x00\x00\x00\x00}} -13:18:51.301 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:51.301 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:51.301 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:51.301 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:51.301 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2dfe84a2[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:51.301 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@7e815a49 task=EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:51.3015542+02:00 -13:18:51.301 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:51.3015542+02:00 tryProduce true -13:18:51.301 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=END,51 of 51},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parsed false HttpParser{s=END,51 of 51} -13:18:51.301 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:51.301 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:51.301 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@2dfe84a2[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@691b95d0{HeapByteBufferR@3bbed39d[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>0-49f9-89...\x00\x00\x00\x00\x00\x00\x00}} -13:18:51.301 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=END,51 of 51},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:51.301 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 2 keys -13:18:51.301 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=END,51 of 51},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:51.302 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@471f2341[p=0,l=21,c=8192,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@721f9b67[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/login)@6a001165 -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@3ff08c82 exclude no deflater -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@721f9b67[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6672d44a{null} -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: f8200022-0935-411d-ad78-bd2225b73641 -Vary: Accept-Encoding, User-Agent - - -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5849e6ee[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@56039a23] (null,[p=0,l=21,c=32768,r=21],false)@START -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@721f9b67[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: f8200022-0935-411d-ad78-bd2225b73641 -Vary: Accept-Encoding, User-Agent - - -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5849e6ee[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@56039a23] ([p=0,l=206,c=8192,r=206],[p=0,l=21,c=32768,r=21],false)@COMMITTED -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@6dac98fd{IDLE}->null [HeapByteBuffer@40573931[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@721f9b67[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:51.307 [qtp781595164-93] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6dac98fd{WRITING}->null:IDLE-->WRITING -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=END,51 of 51},g=HttpGenerator@73ca24af{s=COMMITTED}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=9} -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 21 NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=END,51 of 51},g=HttpGenerator@73ca24af{s=COMMITTED}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=9} -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=227 remaining=0 WriteFlusher@6dac98fd{WRITING}->null -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6dac98fd{IDLE}->null:WRITING-->IDLE -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5849e6ee[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@56039a23] ([p=206,l=206,c=8192,r=0],[p=21,l=21,c=32768,r=0],false)@COMMITTED -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6672d44a{null} -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6672d44a{null} -13:18:51.308 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=f8200022-0935-411d-ad78-bd2225b73641, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5849e6ee[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d0cc186] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.308 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5849e6ee[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d0cc186] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5849e6ee[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d0cc186] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@6dac98fd{IDLE}->null [HeapByteBuffer@58461432[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:51.308 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [29b32475] Response 200 OK -13:18:51.308 [qtp781595164-93] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6dac98fd{WRITING}->null:IDLE-->WRITING -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=END,51 of 51},g=HttpGenerator@73ca24af{s=COMPLETING}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@6dac98fd{WRITING}->null -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6dac98fd{IDLE}->null:WRITING-->IDLE -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5849e6ee[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d0cc186] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@1cd21e32{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@1cd21e32{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:51.309 [reactor-http-nio-2] DEBUG reactor.netty.channel.FluxReceive - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@ae52a5f) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@1cd21e32{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@1cd21e32{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@1cd21e32{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=21 -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@1cd21e32{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,51 of 51} -13:18:51.309 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:51.310 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.310 [reactor-http-nio-2] DEBUG org.springframework.core.codec.StringDecoder - [29b32475] Decoded "{"token":"someToken"}" -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@274af9b8{AC.ReadCB@25e4a766{HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@2be550ed on ManagedSelector@1d4f6942{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:51.310 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@1d4f6942{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:51.311 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken with none selected -13:18:51.311 [qtp781595164-93] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:51.311 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 0/0/2 selected -13:18:51.311 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 0 keys, 1 updates -13:18:51.311 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@64d3a050 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:51.311 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:51.311 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@2be550ed -13:18:51.311 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:51.311 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:51.311 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 2 keys -13:18:51.311 [reactor-http-nio-2] INFO com.bi.edp.configuration_stack.adapter.client.catalog.CatalogClient - CatalogClient logged successfully -13:18:51.311 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:51.311 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:51.311 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:51.311 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:51.311 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:51.312 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:51.559 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager is shutting down -13:18:51.559 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager shut down -13:18:52.237 [parallel-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [54a0b96a] HTTP GET http://localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments -13:18:52.238 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 1 inactive connections -13:18:52.238 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:52.238 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:52.238 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, method=GET} -13:18:52.238 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:52.239 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken up from select, 1/1/1 selected -13:18:52.239 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 processing 1 keys, 0 updates -13:18:52.240 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65022], selector=sun.nio.ch.WindowsSelectorImpl@74793139, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=964/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.240 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=964/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.240 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:52.240 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=964/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:52.240 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0} tryExecute EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:52.2404232+02:00 -13:18:52.240 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=0}@1160f6ce offer EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:52.2404232+02:00 -13:18:52.240 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=1} startReservedThread p=1 -13:18:52.240 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@2097b4bb startThread=0 -13:18:52.240 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:52.2404232+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=965/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:52.240 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@2097b4bb in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}] -13:18:52.240 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=1}@2097b4bb started -13:18:52.241 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@2097b4bb waiting -13:18:52.240 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@1160f6ce task=EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:52.2404232+02:00 -13:18:52.241 [qtp781595164-97] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@267693a5{AC.ReadCB@17abc0d5{HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=965/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.241 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=966/30000}{io=1/0,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.241 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:52.2414335+02:00 tryProduce true -13:18:52.241 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:52.241 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.241 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 202 HeapByteBuffer@40573931[p=0,l=202,c=8192,r=202]={<<>>15\r\nlogCl...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.241 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=966/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.241 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 waiting with 1 keys -13:18:52.241 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 202 HeapByteBuffer@40573931[p=0,l=202,c=8192,r=202]={<<>>15\r\nlogCl...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.241 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=202,c=8192,r=202]={<<>>15\r\nlogCl...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=202,c=8192,r=202]={<<>>15\r\nlogCl...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments on HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} -GET //localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer someToken - - -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.242 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=0} -13:18:52.243 [qtp781595164-97] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments on HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=1} -13:18:52.243 [qtp781595164-97] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:52.243 [qtp781595164-97] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments)@3b83dbfd in null -13:18:52.243 [qtp781595164-97] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:52.243 [qtp781595164-97] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:52.243 [qtp781595164-97] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.243 [qtp781595164-97] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.243 [qtp781595164-97] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:52.243 [qtp781595164-97] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=2} filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=2} parse HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=2} -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=2} -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@5bac24b2[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=2} parsed false HttpParser{s=END,0 of -1} -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=2} -13:18:52.244 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.249 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@666d8fe5[p=0,l=14,c=8192,r=14]={<<<["DEV","PROD"]>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:52.249 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@721f9b67[p=0,l=14,c=32768,r=14]={<<<["DEV","PROD"]>>>Token"}\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.249 [qtp781595164-97] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments)@3b83dbfd -13:18:52.249 [qtp781595164-97] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@3e6b9bc0 exclude no deflater -13:18:52.249 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@721f9b67[p=0,l=14,c=32768,r=14]={<<<["DEV","PROD"]>>>Token"}\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@31f5b8ef{null} -13:18:52.250 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments on HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=8} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: 1dfe214b-7bd0-49f9-890b-0a8602ff6c74 -Vary: Accept-Encoding, User-Agent - - -13:18:52.250 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4a93fa7] (null,[p=0,l=14,c=32768,r=14],false)@START -13:18:52.250 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@721f9b67[p=0,l=14,c=32768,r=14]={<<<["DEV","PROD"]>>>Token"}\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.250 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: 1dfe214b-7bd0-49f9-890b-0a8602ff6c74 -Vary: Accept-Encoding, User-Agent - - -13:18:52.250 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4a93fa7] ([p=0,l=205,c=8192,r=205],[p=0,l=14,c=32768,r=14],false)@COMMITTED -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@378347ba{IDLE}->null [HeapByteBuffer@40573931[p=0,l=205,c=8192,r=205]={<<>>\nlogClien...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@721f9b67[p=0,l=14,c=32768,r=14]={<<<["DEV","PROD"]>>>Token"}\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@378347ba{WRITING}->null:IDLE-->WRITING -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 205 NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@46d7e02b{s=COMMITTED}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=9} -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 14 NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@46d7e02b{s=COMMITTED}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=9} -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=219 remaining=0 WriteFlusher@378347ba{WRITING}->null -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@378347ba{IDLE}->null:WRITING-->IDLE -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4a93fa7] ([p=205,l=205,c=8192,r=0],[p=14,l=14,c=32768,r=0],false)@COMMITTED -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@31f5b8ef{null} -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@31f5b8ef{null} -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@190671e5] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.251 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=1dfe214b-7bd0-49f9-890b-0a8602ff6c74, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:52.251 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@190671e5] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.252 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@190671e5] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@378347ba{IDLE}->null [HeapByteBuffer@58461432[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@378347ba{WRITING}->null:IDLE-->WRITING -13:18:52.252 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [54a0b96a] Response 200 OK -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=END,0 of -1},g=HttpGenerator@46d7e02b{s=COMPLETING}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=10} -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@378347ba{WRITING}->null -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@378347ba{IDLE}->null:WRITING-->IDLE -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@65d1ba13[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@190671e5] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=10} -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@52a954e4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@52a954e4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=10} -13:18:52.252 [reactor-http-nio-2] DEBUG reactor.netty.channel.FluxReceive - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@131ec787) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@52a954e4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@52a954e4{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@52a954e4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments,age=10} -13:18:52.252 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments written=14 -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@52a954e4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.253 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@267693a5{AC.ReadCB@17abc0d5{HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.253 [reactor-http-nio-2] DEBUG org.springframework.http.codec.json.Jackson2JsonDecoder - [54a0b96a] Decoded [[DEV, PROD]] -13:18:52.253 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.254 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@3ee0edfb on ManagedSelector@472b777f{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:52.254 [qtp781595164-97] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@472b777f{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:52.254 [qtp781595164-97] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.254 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@1e93b164 size 1 > capacity -13:18:52.254 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@1e93b164 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.254 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken with none selected -13:18:52.254 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken up from select, 0/0/1 selected -13:18:52.254 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 processing 0 keys, 1 updates -13:18:52.254 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.254 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@3ee0edfb -13:18:52.254 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.254 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.254 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 waiting with 1 keys -13:18:52.268 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:52.268 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:52.268 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:52.268 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments, connection=PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:52.268 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:52.268 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:52.270 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.270 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.270 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:52.270 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:52.272 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:52.272 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:52.272 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:52.272 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/requests/count HTTP/1.1 -13:18:52.272 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 116 -13:18:52.272 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:52.272 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:52.272 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:52.272 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 116[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/products/e929c1aa-d653-439a-9656-04a204a47597/environments",[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:52.272 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:52.272 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 1/1/2 selected -13:18:52.272 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 1 keys, 0 updates -13:18:52.272 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65021], selector=sun.nio.ch.WindowsSelectorImpl@146bda14, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1029/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.273 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1029/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.273 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1030/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:52.273 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0} tryExecute EatWhatYouKill@11f99275/SelectorProducer@8560933/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:52.2734159+02:00 -13:18:52.273 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=0}@2097b4bb offer EatWhatYouKill@11f99275/SelectorProducer@8560933/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:52.2734159+02:00 -13:18:52.273 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=1} startReservedThread p=1 -13:18:52.273 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@702f60bf startThread=0 -13:18:52.273 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:52.2734159+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1030/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@256fb62e{AC.ReadCB@5d2fafe1{HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1030/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1030/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 317 HeapByteBuffer@40573931[p=0,l=317,c=8192,r=317]={<<>>53-439a-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 317 HeapByteBuffer@40573931[p=0,l=317,c=8192,r=317]={<<>>53-439a-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=317,c=8192,r=317]={<<>>53-439a-9...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=317,c=8192,r=317]={<<>>53-439a-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:52.274 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 116 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 116},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} parsed true HttpParser{s=CONTENT,0 of 116} -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.275 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 116},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} parse HeapByteBuffer@40573931[p=201,l=317,c=8192,r=116]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>53-439a-9...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@40573931[p=201,l=317,c=8192,r=116]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>53-439a-9...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} Content@41cca45{HeapByteBufferR@dc99135[p=201,l=317,c=8192,r=116]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>53-439a-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=0,[0]=null,s=STREAM] addContent Content@41cca45{HeapByteBufferR@dc99135[p=201,l=317,c=8192,r=116]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>53-439a-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:52.276 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@2097b4bb task=EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:52.2764162+02:00 -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:52.276 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:52.2764162+02:00 tryProduce true -13:18:52.276 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,116 of 116},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parsed false HttpParser{s=END,116 of 116} -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=116,q=1,[0]=EOF,s=STREAM] read 116 from Content@41cca45{HeapByteBufferR@dc99135[p=317,l=317,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>53-439a-9...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,116 of 116},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:52.276 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.276 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.277 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,116 of 116},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} -13:18:52.277 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 2 keys -13:18:52.276 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@702f60bf in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}] -13:18:52.277 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=1}@702f60bf started -13:18:52.277 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@702f60bf waiting -13:18:52.279 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@add7440[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:52.279 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@15e1a245[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.279 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@15e1a245[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6bccb114{null} -13:18:52.279 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=5} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:52.279 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1fcc73c] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:52.279 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@15e1a245[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.279 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:52.279 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:52.279 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1fcc73c] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@40573931[p=0,l=116,c=8192,r=116]={<<>>:8080\r\nCo...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@15e1a245[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 2,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "38[\r][\n]" -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,116 of 116},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=6} -13:18:52.280 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 200 OK -13:18:52.280 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:52.280 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,116 of 116},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=6} -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:52.280 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1fcc73c] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6bccb114{null} -13:18:52.280 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6bccb114{null} -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@63506ba4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@63506ba4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@63506ba4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@58461432[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.280 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "count" : 2,[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requestJournalDisabled" : false[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:52.280 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.281 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:52.281 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,116 of 116},g=HttpGenerator@5162fbcf{s=COMPLETING}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=6} -13:18:52.281 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@63506ba4] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@23637131 in null -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=7} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=7} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@22510ec2) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=7} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,116 of 116} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.281 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@256fb62e{AC.ReadCB@5d2fafe1{HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@e743e1 on ManagedSelector@1d4f6942{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:52.282 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@1d4f6942{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:52.282 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.283 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.283 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken with none selected -13:18:52.283 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:52.283 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:52.283 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 0/0/2 selected -13:18:52.283 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 0 keys, 1 updates -13:18:52.283 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.283 [qtp781595164-98] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.283 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@e743e1 -13:18:52.283 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@7e815a49 size 1 > capacity -13:18:52.283 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@7e815a49 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.283 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.283 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.283 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 2 keys -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:52.285 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:52.285 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:52.285 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:52.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/requests/count HTTP/1.1 -13:18:52.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 63 -13:18:52.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:52.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:52.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:52.285 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 63[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:52.285 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:52.285 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 1/1/2 selected -13:18:52.285 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 1 keys, 0 updates -13:18:52.285 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65021], selector=sun.nio.ch.WindowsSelectorImpl@146bda14, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.286 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.286 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:52.286 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0} tryExecute EatWhatYouKill@11f99275/SelectorProducer@8560933/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:52.2864149+02:00 -13:18:52.286 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=0}@702f60bf offer EatWhatYouKill@11f99275/SelectorProducer@8560933/PRODUCING/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:52.2864149+02:00 -13:18:52.286 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=1} startReservedThread p=1 -13:18:52.286 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@8b04115 startThread=0 -13:18:52.286 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:52.2864149+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:52.286 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@702f60bf task=EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:52.2864149+02:00 -13:18:52.286 [qtp781595164-92] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@256fb62e{AC.ReadCB@5d2fafe1{HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.286 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=true/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:52.2864149+02:00 tryProduce true -13:18:52.286 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:52.286 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.286 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.286 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.287 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 2 keys -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 263 HeapByteBuffer@40573931[p=0,l=263,c=8192,r=263]={<<>>656-04a20...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.287 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@5e1e7972{s=0/1,p=1}@8b04115 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=0/1,p=1}] -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 263 HeapByteBuffer@40573931[p=0,l=263,c=8192,r=263]={<<>>656-04a20...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=263,c=8192,r=263]={<<>>656-04a20...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=263,c=8192,r=263]={<<>>656-04a20...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 63 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} parsed true HttpParser{s=CONTENT,0 of 63} -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=0} -13:18:52.287 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=1}@8b04115 started -13:18:52.287 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@8b04115 waiting -13:18:52.287 [qtp781595164-92] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=0} -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@365484f9{/__admin,null,AVAILABLE} -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} parse HeapByteBuffer@40573931[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>656-04a20...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@40573931[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>656-04a20...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} Content@2523692e{HeapByteBufferR@6353c074[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>656-04a20...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.288 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=0,[0]=null,s=STREAM] addContent Content@2523692e{HeapByteBufferR@6353c074[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>656-04a20...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.289 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:52.289 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:52.289 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:52.289 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:52.289 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:52.289 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,63 of 63},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parsed false HttpParser{s=END,63 of 63} -13:18:52.289 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@764afb05[c=63,q=1,[0]=EOF,s=STREAM] read 63 from Content@2523692e{HeapByteBufferR@6353c074[p=263,l=263,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>656-04a20...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.289 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,63 of 63},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:52.289 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@4593ca2[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@15e1a245[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@15e1a245[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6bccb114{null} -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=12} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@e6b6dd5] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@15e1a245[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@e6b6dd5] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@40573931[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@15e1a245[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.299 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:52.300 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,63 of 63},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=12} -13:18:52.300 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]" -13:18:52.300 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:52.300 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:52.300 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:52.300 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.300 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "38[\r][\n]" -13:18:52.300 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,63 of 63},g=HttpGenerator@5162fbcf{s=COMMITTED}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=13} -13:18:52.300 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:52.300 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:52.300 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 200 OK -13:18:52.300 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:52.300 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@e6b6dd5] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:52.301 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:52.301 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6bccb114{null} -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6bccb114{null} -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@303f0f2f] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.301 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@303f0f2f] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@303f0f2f] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c7085e7{IDLE}->null [HeapByteBuffer@58461432[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{WRITING}->null:IDLE-->WRITING -13:18:52.301 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:52.301 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "count" : 0,[\r][\n]" -13:18:52.301 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requestJournalDisabled" : false[\r][\n]" -13:18:52.301 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}[\r][\n]" -13:18:52.301 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:52.301 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=END,63 of 63},g=HttpGenerator@5162fbcf{s=COMPLETING}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=14} -13:18:52.301 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:52.301 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3c7085e7{WRITING}->null -13:18:52.301 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c7085e7{IDLE}->null:WRITING-->IDLE -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2e0883ca[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@303f0f2f] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.301 [qtp781595164-92] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@27e005aa{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@23637131 in null -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@6693b5e0{/,null,AVAILABLE} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=15} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.302 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@4a5d9b7d{STARTED}[9.4.28.v20200408] -13:18:52.302 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@4a5d9b7d{STOPPING}[9.4.28.v20200408] -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=15} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@4d92293c) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@60c8bcae{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=5,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=15} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@60c8bcae{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.302 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,63 of 63} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.302 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.302 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@1d4f6942{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.302 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@31c010fc on ManagedSelector@1d4f6942{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.302 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@1d4f6942{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.302 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken with none selected -13:18:52.302 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 0/0/2 selected -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.302 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 0 keys, 1 updates -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@40573931[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.302 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.302 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@31c010fc -13:18:52.302 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@1d4f6942{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:52.302 [qtp781595164-93] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=992/30000}{io=1/1,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.302 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=992/30000}{io=1/1,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.303 [qtp781595164-92] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=992/30000}{io=1/1,kio=1,kro=1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.303 [qtp781595164-92] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@256fb62e{AC.ReadCB@5d2fafe1{HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.303 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.303 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@e743e1 on ManagedSelector@1d4f6942{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:52.303 [qtp781595164-92] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.303 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@2097b4bb size 1 > capacity -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@274af9b8{AC.ReadCB@25e4a766{HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=992/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@25e4a766[p=HttpParser{s=START,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.303 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@2097b4bb in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=992/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@25e4a766[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@1d4f6942{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@407d6ba2 startThread=0 -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.303 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.304 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1ea5d514, L:/127.0.0.1:65023 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x1ea5d514, L:/127.0.0.1:65023 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@256fb62e{AC.ReadCB@5d2fafe1{HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=0/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@5d2fafe1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@5d2fafe1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:52.304 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@407d6ba2 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@1d4f6942{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@491f6820 startThread=0 -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 1 -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - wakeup on updates SelectorProducer@8560933 -13:18:52.304 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=993/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@25e4a766[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 waiting with 2 keys -13:18:52.304 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@f7c929d on ManagedSelector@1d4f6942{STOPPING} id=1 keys=1 selected=0 updates=1 -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken with none selected -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 woken up from select, 0/0/0 selected -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@146bda14 processing 0 keys, 2 updates -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 2 -13:18:52.304 [qtp781595164-98] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@25e4a766::NetworkTrafficSocketChannelEndPoint@77843f9a{/127.0.0.1:65023<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=993/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@25e4a766[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@73ca24af{s=START}]=>HttpChannelOverHttp@eab5ff9{s=HttpChannelState@1cd21e32{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.304 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@491f6820 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.304 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@407d6ba2 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@e743e1 -13:18:52.304 [qtp781595164-92] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@5d2fafe1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.304 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Ignoring key update for concurrently closed channel NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5d2fafe1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.304 [qtp781595164-92] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@5d2fafe1::NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5d2fafe1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.305 [qtp781595164-92] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@491f6820 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.305 [qtp781595164-93] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5d2fafe1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.305 [qtp781595164-93] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@2f324d03{/127.0.0.1:65021<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5d2fafe1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5162fbcf{s=START}]=>HttpChannelOverHttp@25ca2673{s=HttpChannelState@60c8bcae{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.305 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@f7c929d -13:18:52.305 [qtp781595164-93] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.305 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@702f60bf size 1 > capacity -13:18:52.305 [qtp781595164-93] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@702f60bf in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.305 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:52.3054096+02:00 -13:18:52.305 [qtp781595164-95] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp781595164-95-acceptor-1@65638fa0-NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.305 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@11f99275/SelectorProducer@8560933/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:52.3054096+02:00 -13:18:52.305 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@1d4f6942{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:52.305 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@472b777f{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:52.305 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@39224b26 on ManagedSelector@472b777f{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:52.305 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@472b777f{STOPPING} id=0 keys=1 selected=0 updates=1 -13:18:52.305 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken with none selected -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken up from select, 0/0/1 selected -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 processing 0 keys, 1 updates -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@39224b26 -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@472b777f{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=52/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=52/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=52/30000}{io=1/1,kio=1,kro=1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@267693a5{AC.ReadCB@17abc0d5{HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=52/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@17abc0d5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=52/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@17abc0d5[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@472b777f{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@2bba0d60 startThread=0 -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.306 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 waiting with 1 keys -13:18:52.307 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@2bba0d60 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.307 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xd4142ed4, L:/127.0.0.1:65022 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xd4142ed4, L:/127.0.0.1:65022 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:52.307 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@d9f5bec on ManagedSelector@472b777f{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:52.307 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@472b777f{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:52.307 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken with none selected -13:18:52.307 [qtp781595164-98] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=53/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@17abc0d5[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.307 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 woken up from select, 0/0/0 selected -13:18:52.307 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@74793139 processing 0 keys, 1 updates -13:18:52.307 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.307 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@d9f5bec -13:18:52.307 [qtp781595164-98] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@17abc0d5::NetworkTrafficSocketChannelEndPoint@58513f94{/127.0.0.1:65022<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=53/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@17abc0d5[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@46d7e02b{s=START}]=>HttpChannelOverHttp@5696caee{s=HttpChannelState@52a954e4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.307 [qtp781595164-98] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@2bba0d60 in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.307 [qtp781595164-99] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.307 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@1160f6ce size 1 > capacity -13:18:52.307 [qtp781595164-99] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@5e1e7972{s=1/1,p=0}@1160f6ce in QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.307 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:52.3074132+02:00 -13:18:52.307 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@5d488fc6/SelectorProducer@33e4dd16/IDLE/p=false/QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:52.3074132+02:00 -13:18:52.307 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@472b777f{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@1a1b53b8[HTTP/1.1] -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@1a1b53b8[HTTP/1.1] -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@5710c372{STARTED} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@5710c372{STOPPED} -13:18:52.308 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@71b0284a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@4a5d9b7d{STOPPING}[9.4.28.v20200408] -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@520eedf5{STARTED} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@520eedf5{STOPPING} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@520eedf5{STOPPED} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@23bd82ac{STARTED} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@23bd82ac{STOPPING} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@27e005aa{STARTED,min=32,inflate=-1} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@27e005aa{STOPPING,min=32,inflate=-1} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@6693b5e0{/,null,SHUTDOWN} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@6693b5e0{/,null,UNAVAILABLE} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@7daf20c9{STARTED} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@7daf20c9{STOPPING} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@7daf20c9{STOPPED} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@1011a8dc{STARTED} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@1011a8dc{STOPPING} -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-271047ef@271047ef==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-7b20c517@7b20c517==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-7b20c517@7b20c517==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-606530e8@606530e8==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-606530e8@606530e8==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-442319ed@8f2342d6==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-3fe49744@75a3d67f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-3fe49744@75a3d67f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.308 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@1011a8dc{STOPPED} -13:18:52.309 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@6693b5e0{/,null,UNAVAILABLE} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@6693b5e0{/,null,UNAVAILABLE} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@27e005aa{STOPPED,min=32,inflate=-1} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@365484f9{/__admin,null,SHUTDOWN} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@365484f9{/__admin,null,UNAVAILABLE} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@178c58fa{STARTED} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@178c58fa{STOPPING} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-27a10f7d@27a10f7d==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-521fd64c@8e68ed01==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-247fc4d2@6d1fd3af==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-247fc4d2@6d1fd3af==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-361eeda4@3483e868==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-361eeda4@3483e868==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@178c58fa{STOPPED} -13:18:52.309 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@365484f9{/__admin,null,UNAVAILABLE} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@365484f9{/__admin,null,UNAVAILABLE} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@23bd82ac{STOPPED} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp781595164]@2e96321c{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp781595164]@2e96321c{STOPPING,8<=8<=14,i=5,r=-1,q=0}[ReservedThreadExecutor@5e1e7972{s=1/1,p=0}] -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@5e1e7972{s=1/1,p=0} -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=0/1,p=0}@8b04115 offer STOP! -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@5e1e7972{s=-1/1,p=0} -13:18:52.309 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=-1/1,p=0}@8b04115 task=STOP! -13:18:52.309 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@5e1e7972{s=-1/1,p=0}@8b04115 Exited -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp781595164]@2e96321c{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:52.309 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@5e1e7972{s=-1/1,p=0}@8b04115 in QueuedThreadPool[qtp781595164]@2e96321c{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:52.309 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@4a5d9b7d{STOPPED}[9.4.28.v20200408] -13:18:52.309 [qtp781595164-97] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp781595164-97,5,main] exited for QueuedThreadPool[qtp781595164]@2e96321c{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -]]> - - diff --git a/src/test/resources/data/TEST-com.bi.edp.configuration_stack.adapter.client.forwarder.ForwarderClientTest.xml b/src/test/resources/data/TEST-com.bi.edp.configuration_stack.adapter.client.forwarder.ForwarderClientTest.xml deleted file mode 100644 index 63a20e68..00000000 --- a/src/test/resources/data/TEST-com.bi.edp.configuration_stack.adapter.client.forwarder.ForwarderClientTest.xml +++ /dev/null @@ -1,8871 +0,0 @@ - - - - - - - - - org.eclipse.jetty.servlets.CrossOriginFilter-221545b0] -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-7ea49cfc=org.eclipse.jetty.servlet.DefaultServlet-7ea49cfc@d96f97a7==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-5c011be5=org.eclipse.jetty.servlet.DefaultServlet-5c011be5@4c15636f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@33d0c255{STARTING} -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83938ms ServletHandler@33d0c255{STARTED} -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83939ms org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@22ae0717 -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83939ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-5c011be5@4c15636f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83939ms org.eclipse.jetty.servlet.DefaultServlet-5c011be5@4c15636f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-7ea49cfc@d96f97a7==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83939ms org.eclipse.jetty.servlet.DefaultServlet-7ea49cfc@d96f97a7==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.377 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83939ms o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@4d61717f{STOPPED,min=32,inflate=-1} -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@4d61717f{STARTING,min=32,inflate=-1} -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@769fbc24{/,null,UNAVAILABLE} -13:18:52.377 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@769fbc24{/,null,STARTING} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@2c1f7663{STOPPED} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-242f8e95[EMBEDDED:null] -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-242f8e95@6484bf5e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8[EMBEDDED:null] -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-60d461e9=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-60d461e9@60d461e9==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-443420da=org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-38d70040=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-38d70040@38d70040==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-60d461e9, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-38d70040, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-443420da] -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-242f8e95=org.eclipse.jetty.servlet.DefaultServlet-242f8e95@6484bf5e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@2c1f7663{STARTING} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83940ms ServletHandler@2c1f7663{STARTED} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@37afa511{STOPPED} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@37afa511{STARTING} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83940ms NotFoundHandler@37afa511{STARTED} -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-60d461e9@60d461e9==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83940ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-60d461e9@60d461e9==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@702346ca -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-38d70040@38d70040==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83940ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-38d70040@38d70040==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@253829fd -13:18:52.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83940ms org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@37edfe56 -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83940ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-242f8e95@6484bf5e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83941ms org.eclipse.jetty.servlet.DefaultServlet-242f8e95@6484bf5e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.379 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83941ms o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83941ms GzipHandler@4d61717f{STARTED,min=32,inflate=-1} -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83941ms HandlerCollection@ef98260{STARTED} -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@2863660f{STOPPED} -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@2863660f{STARTING} -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83941ms ErrorHandler@2863660f{STARTED} -13:18:52.379 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.380 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:52.380 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@45b4e635{STOPPED} -13:18:52.380 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83942ms ScheduledExecutorScheduler@45b4e635{STARTED} -13:18:52.380 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@54aceb1b[HTTP/1.1] -13:18:52.380 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83942ms HttpConnectionFactory@54aceb1b[HTTP/1.1] -13:18:52.380 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.380 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3804151+02:00 added {SelectorProducer@f56de7a,POJO} -13:18:52.381 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3804151+02:00 added {QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}],UNMANAGED} -13:18:52.381 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3814095+02:00 created -13:18:52.381 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@6bc569ac{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3814095+02:00,MANAGED} -13:18:52.381 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@6bc569ac{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:52.383 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3833983+02:00 added {SelectorProducer@18085b76,POJO} -13:18:52.383 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3833983+02:00 added {QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}],UNMANAGED} -13:18:52.383 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3833983+02:00 created -13:18:52.383 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@2114e303{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3833983+02:00,MANAGED} -13:18:52.383 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@2114e303{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:52.383 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@6bc569ac{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:52.384 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3833983+02:00 -13:18:52.384 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83945ms EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.3843998+02:00 -13:18:52.385 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@615c6684 startThread=0 -13:18:52.385 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@43529326 on ManagedSelector@6bc569ac{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:52.424 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.424 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@615c6684 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.425 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.4253954+02:00 tryProduce false -13:18:52.425 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.425 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@43529326 -13:18:52.425 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.425 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 waiting with 0 keys -13:18:52.425 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83987ms ManagedSelector@6bc569ac{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:52.425 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@2114e303{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:52.425 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.4253954+02:00 -13:18:52.425 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @83987ms EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.4253954+02:00 -13:18:52.427 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@195ba3d1 startThread=0 -13:18:52.427 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@1fd14702 on ManagedSelector@2114e303{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:52.476 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.476 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@195ba3d1 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.477 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.477383+02:00 tryProduce false -13:18:52.477 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.477 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@1fd14702 -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @84039ms ManagedSelector@2114e303{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @84039ms SelectorManager@NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@1dbb6a3a,POJO} -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@1dbb6a3a startThread=0 -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@4aa70108,POJO} -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@4aa70108 startThread=0 -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@ea676a6,POJO} -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@ea676a6 startThread=0 -13:18:52.478 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @84040ms NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:52.478 [Test worker] INFO org.eclipse.jetty.server.Server - Started @84040ms -13:18:52.478 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @84040ms Server@1f5c4676{STARTED}[9.4.28.v20200408] -13:18:52.479 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.480 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 0 keys -13:18:52.571 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.572 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.572 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:52.572 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:52.572 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "end of stream" -13:18:52.572 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection detected -13:18:52.572 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: Close connection -13:18:52.573 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:52.573 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:52.574 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:65029<->127.0.0.1:8080 -13:18:52.574 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:52.574 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:52.575 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:52.575 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:52.575 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 665 -13:18:52.575 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:52.575 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:52.575 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:52.575 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:52.575 [qtp1044854934-104] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.575 [qtp1044854934-104] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@1dbb6a3a in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 665[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "add91af6-cec2-498d-be2a-9ef483f16aae",[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/provision-adapters/jobs",[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "POST",[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : {[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "application/json"[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "{\"id\":\"2ec10139-2dfd-465c-8b35-b176fd9db069\",\"product\":\"08e3492b-1227-4699-8aae-29423c1d56c8\",\"configurationSubset\":\"ue-dev-build\",\"answers\":{\"var1\":\"TEST\"}}"[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " } ][\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 401[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "add91af6-cec2-498d-be2a-9ef483f16aae",[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:52.575 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:52.597 [qtp1044854934-103] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.597 [qtp1044854934-103] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@4aa70108 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.598 [qtp1044854934-103-acceptor-1@4aa70108-NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@3c14f40f on ManagedSelector@2114e303{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:52.598 [qtp1044854934-103-acceptor-1@4aa70108-NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2114e303{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:52.598 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:52.598 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/0 selected -13:18:52.599 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:52.599 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.599 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@3c14f40f -13:18:52.599 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@3c14f40f startThread=0 -13:18:52.599 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.599 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 1 keys -13:18:52.600 [qtp1044854934-105] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.600 [qtp1044854934-105] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@ea676a6 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.600 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.600 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@3c14f40f in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.600 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:52.601 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.601 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:52.601 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.602 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.602 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.602 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.602 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.602 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 on ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:52.602 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/1 selected -13:18:52.602 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 -13:18:52.602 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@3c14f40f in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}] -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 1 keys -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 1/1/1 selected -13:18:52.602 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 1 keys, 0 updates -13:18:52.603 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65029], selector=sun.nio.ch.WindowsSelectorImpl@7436f8a6, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.603 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.603 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:52.603 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=0} tryExecute EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.6033811+02:00 -13:18:52.603 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1} startReservedThread p=1 -13:18:52.603 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@7ece93d6 startThread=0 -13:18:52.603 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@7ece93d6 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}] -13:18:52.603 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=1}@7ece93d6 started -13:18:52.603 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@7ece93d6 waiting -13:18:52.603 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.6033811+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:52.603 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:52.603 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:52.604 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.604 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.604 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 1 keys -13:18:52.611 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:52.611 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:52.611 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 860 HeapByteBuffer@756f77d8[p=0,l=860,c=8192,r=860]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 860 HeapByteBuffer@756f77d8[p=0,l=860,c=8192,r=860]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=860,c=8192,r=860]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=860,c=8192,r=860]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:52.612 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 665 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 665},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 665} -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.613 [qtp1044854934-107] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@7ba88705 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63 -13:18:52.802 [qtp1044854934-107] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:52.802 [qtp1044854934-107] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:52.802 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:52.802 [qtp1044854934-107] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.803 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=191/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 665},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=190} parse HeapByteBuffer@756f77d8[p=195,l=860,c=8192,r=665]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "add91af6-cec...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.803 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@756f77d8[p=195,l=860,c=8192,r=665]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "add91af6-cec...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.803 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=190} Content@7f971ca8{HeapByteBufferR@3a958d3e[p=195,l=860,c=8192,r=665]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "add91af6-cec...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.803 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=0,[0]=null,s=STREAM] addContent Content@7f971ca8{HeapByteBufferR@3a958d3e[p=195,l=860,c=8192,r=665]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "add91af6-cec...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.803 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:52.803 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=190} -13:18:52.804 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:52.804 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=191} -13:18:52.804 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:52.804 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=192/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,665 of 665},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=191} parsed false HttpParser{s=END,665 of 665} -13:18:52.804 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=665,q=1,[0]=EOF,s=STREAM] read 665 from Content@7f971ca8{HeapByteBufferR@3a958d3e[p=860,l=860,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.804 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=192/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,665 of 665},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=191} -13:18:52.804 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@5aba7271[p=0,l=665,c=8192,r=665]={<<<{\r\n "id" : "add91af6-cec...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@39f337c1[p=0,l=665,c=32768,r=665]={<<<{\r\n "id" : "add91af6-cec...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@39f337c1[p=0,l=665,c=32768,r=665]={<<<{\r\n "id" : "add91af6-cec...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@1c1a390a{null} -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=218} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5ef44c6a] (null,[p=0,l=665,c=32768,r=665],false)@START -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@39f337c1[p=0,l=665,c=32768,r=665]={<<<{\r\n "id" : "add91af6-cec...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5ef44c6a] ([p=0,l=122,c=8192,r=122],[p=0,l=665,c=32768,r=665],false)@COMMITTED -13:18:52.831 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@756f77d8[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@39f337c1[p=0,l=665,c=32768,r=665]={<<<{\r\n "id" : "add91af6-cec...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.832 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:52.832 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:52.832 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:52.832 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:52.832 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:52.832 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.832 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "299[\r][\n]" -13:18:52.832 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=220/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,665 of 665},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=219} -13:18:52.832 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:52.832 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:52.832 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:52.832 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:52.832 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 665 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,665 of 665},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=219} -13:18:52.832 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=787 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:52.832 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "add91af6-cec2-498d-be2a-9ef483f16aae",[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/provision-adapters/jobs",[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "POST",[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : {[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "application/json"[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "bodyPatterns" : [ {[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "{\"id\":\"2ec10139-2dfd-465c-8b35-b176fd9db069\",\"product\":\"08e3492b-1227-4699-8aae-29423c1d56c8\",\"configurationSubset\":\"ue-dev-build\",\"answers\":{\"var1\":\"TEST\"}}"[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " } ][\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 401[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "add91af6-cec2-498d-be2a-9ef483f16aae",[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:52.833 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5ef44c6a] ([p=122,l=122,c=8192,r=0],[p=665,l=665,c=32768,r=0],false)@COMMITTED -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@1c1a390a{null} -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@1c1a390a{null} -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@330681fa] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@330681fa] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@330681fa] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@4009a65c[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.834 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:52.834 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.834 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:52.834 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.834 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:52.834 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:52.835 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,665 of 665},g=HttpGenerator@4211309{s=COMPLETING}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=222} -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@330681fa] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@3ce2252b in null -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=222} -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=222} -13:18:52.835 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@b66e488) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=223} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=665 -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,665 of 665} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.836 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.837 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.837 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.837 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 on ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:52.837 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:52.837 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:52.837 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/1 selected -13:18:52.837 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:52.837 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.837 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.837 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 -13:18:52.837 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.837 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:52.837 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:52.837 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.837 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.837 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 1 keys -13:18:52.837 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.837 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:52.839 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:52.839 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:52.839 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:52.839 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:52.839 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 678 -13:18:52.839 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:52.839 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:52.839 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:52.839 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 678[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "0a8b0d32-ca44-4aca-bfdf-6bdc622197a5",[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "POST",[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : {[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "application/json"[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " } ][\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 200,[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "0a8b0d32-ca44-4aca-bfdf-6bdc622197a5",[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "Started",[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "newScenarioState" : "logged"[\r][\n]" -13:18:52.839 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:52.839 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 1/1/1 selected -13:18:52.839 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 1 keys, 0 updates -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65029], selector=sun.nio.ch.WindowsSelectorImpl@7436f8a6, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0} tryExecute EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:52.840334+02:00 -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}@7ece93d6 offer EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:52.840334+02:00 -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1} startReservedThread p=1 -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@3bcc026b startThread=0 -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:52.840334+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.840 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 873 HeapByteBuffer@756f77d8[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 873 HeapByteBuffer@756f77d8[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 678 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 678} -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.841 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parse HeapByteBuffer@756f77d8[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "0a8b0d32-ca4...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@756f77d8[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "0a8b0d32-ca4...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} Content@78fc2e7c{HeapByteBufferR@a3d1abb[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "0a8b0d32-ca4...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=0,[0]=null,s=STREAM] addContent Content@78fc2e7c{HeapByteBufferR@a3d1abb[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "0a8b0d32-ca4...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:52.842 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:52.843 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} parsed false HttpParser{s=END,678 of 678} -13:18:52.843 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=678,q=1,[0]=EOF,s=STREAM] read 678 from Content@78fc2e7c{HeapByteBufferR@a3d1abb[p=873,l=873,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.843 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:52.843 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.843 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@7ece93d6 task=EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:52.8433356+02:00 -13:18:52.844 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:52.844338+02:00 tryProduce true -13:18:52.844 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:52.844 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.844 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=3} -13:18:52.844 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 1 keys -13:18:52.845 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@3bcc026b in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}] -13:18:52.845 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=1}@3bcc026b started -13:18:52.846 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@3bcc026b waiting -13:18:52.865 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@20ff85cd[p=0,l=678,c=8192,r=678]={<<<{\r\n "id" : "0a8b0d32-ca4...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:52.865 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@39f337c1[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "0a8b0d32-ca4...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.865 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@39f337c1[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "0a8b0d32-ca4...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@1c1a390a{null} -13:18:52.865 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=24} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:52.865 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1be306fb] (null,[p=0,l=678,c=32768,r=678],false)@START -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@39f337c1[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "0a8b0d32-ca4...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1be306fb] ([p=0,l=122,c=8192,r=122],[p=0,l=678,c=32768,r=678],false)@COMMITTED -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@756f77d8[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@39f337c1[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "0a8b0d32-ca4...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:52.866 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:52.866 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:52.866 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:52.866 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:52.866 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.866 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "2A6[\r][\n]" -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=25/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=25} -13:18:52.866 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:52.866 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:52.866 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:52.866 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 678 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=25} -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=800 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:52.866 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1be306fb] ([p=122,l=122,c=8192,r=0],[p=678,l=678,c=32768,r=0],false)@COMMITTED -13:18:52.866 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@1c1a390a{null} -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@1c1a390a{null} -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5fadc27e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5fadc27e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "0a8b0d32-ca44-4aca-bfdf-6bdc622197a5",[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/login",[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "POST",[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : {[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "application/json"[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "bodyPatterns" : [ {[\r][\n]" -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5fadc27e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " } ][\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 200,[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : "application/json"[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@4009a65c[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "0a8b0d32-ca44-4aca-bfdf-6bdc622197a5",[\r][\n]" -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "Started",[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "newScenarioState" : "logged"[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:52.867 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4211309{s=COMPLETING}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=26} -13:18:52.867 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:52.867 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5fadc27e] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:52.867 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@3ce2252b in null -13:18:52.867 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=26} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=27} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@30887486) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=27} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=678 -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,678 of 678} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:52.868 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.869 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.869 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.869 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.869 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 on ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:52.869 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:52.869 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.869 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:52.869 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@195ba3d1 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:52.869 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/1 selected -13:18:52.869 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:52.869 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.869 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 -13:18:52.869 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.869 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.869 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 1 keys -13:18:52.879 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.879 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.879 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:52.879 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:52.881 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:52.881 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:52.881 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:52.881 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:52.881 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 863 -13:18:52.881 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:52.881 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:52.881 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:52.881 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 863[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "8ca86b10-267d-4d32-8557-fe561df02a41",[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/provision-adapters/jobs",[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "POST",[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Authorization" : {[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "{\"id\":\"2ec10139-2dfd-465c-8b35-b176fd9db069\",\"product\":\"08e3492b-1227-4699-8aae-29423c1d56c8\",\"configurationSubset\":\"ue-dev-build\",\"answers\":{\"var1\":\"TEST\"}}"[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " } ][\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 200,[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "body" : "{\"id\":\"f9b4d64a-8dad-4aa0-93b1-7efb8f6c52c2\",\"componentInstance\":null,\"status\":null,\"metadata\":null}",[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "8ca86b10-267d-4d32-8557-fe561df02a41",[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "logged"[\r][\n]" -13:18:52.881 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:52.882 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 1/1/1 selected -13:18:52.882 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 1 keys, 0 updates -13:18:52.882 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65029], selector=sun.nio.ch.WindowsSelectorImpl@7436f8a6, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.882 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.882 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=13/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:52.883 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0} tryExecute EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:52.8823342+02:00 -13:18:52.883 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}@3bcc026b offer EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:52.8833322+02:00 -13:18:52.884 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1} startReservedThread p=1 -13:18:52.884 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@10af921d startThread=0 -13:18:52.884 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:52.8843305+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=15/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:52.884 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=15/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.884 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=15/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.884 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@3bcc026b task=EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:52.8843305+02:00 -13:18:52.884 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@10af921d in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}] -13:18:52.884 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=1}@10af921d started -13:18:52.884 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:52.8843305+02:00 tryProduce true -13:18:52.885 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:52.885 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 1058 HeapByteBuffer@756f77d8[p=0,l=1058,c=8192,r=1058]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.885 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@10af921d waiting -13:18:52.885 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.885 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 1 keys -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 1058 HeapByteBuffer@756f77d8[p=0,l=1058,c=8192,r=1058]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=1058,c=8192,r=1058]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=1058,c=8192,r=1058]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:52.885 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 863 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 863},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} parsed true HttpParser{s=CONTENT,0 of 863} -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:52.886 [qtp1044854934-106] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 863},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parse HeapByteBuffer@756f77d8[p=195,l=1058,c=8192,r=863]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8ca86b10-267...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@756f77d8[p=195,l=1058,c=8192,r=863]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8ca86b10-267...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} Content@1c9a725a{HeapByteBufferR@bd40952[p=195,l=1058,c=8192,r=863]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8ca86b10-267...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=0,[0]=null,s=STREAM] addContent Content@1c9a725a{HeapByteBufferR@bd40952[p=195,l=1058,c=8192,r=863]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8ca86b10-267...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,863 of 863},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} parsed false HttpParser{s=END,863 of 863} -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=863,q=1,[0]=EOF,s=STREAM] read 863 from Content@1c9a725a{HeapByteBufferR@bd40952[p=1058,l=1058,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,863 of 863},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:18:52.887 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.910 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@591eaa4b[p=0,l=863,c=8192,r=863]={<<<{\r\n "id" : "8ca86b10-267...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@39f337c1[p=0,l=863,c=32768,r=863]={<<<{\r\n "id" : "8ca86b10-267...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@39f337c1[p=0,l=863,c=32768,r=863]={<<<{\r\n "id" : "8ca86b10-267...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@1c1a390a{null} -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=26} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@72844179] (null,[p=0,l=863,c=32768,r=863],false)@START -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@39f337c1[p=0,l=863,c=32768,r=863]={<<<{\r\n "id" : "8ca86b10-267...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@72844179] ([p=0,l=122,c=8192,r=122],[p=0,l=863,c=32768,r=863],false)@COMMITTED -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@756f77d8[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@39f337c1[p=0,l=863,c=32768,r=863]={<<<{\r\n "id" : "8ca86b10-267...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=26/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,863 of 863},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=26} -13:18:52.911 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 863 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,863 of 863},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=26} -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=985 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "35F[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "8ca86b10-267d-4d32-8557-fe561df02a41",[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/provision-adapters/jobs",[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "POST",[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Authorization" : {[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@72844179] ([p=122,l=122,c=8192,r=0],[p=863,l=863,c=32768,r=0],false)@COMMITTED -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "bodyPatterns" : [ {[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "{\"id\":\"2ec10139-2dfd-465c-8b35-b176fd9db069\",\"product\":\"08e3492b-1227-4699-8aae-29423c1d56c8\",\"configurationSubset\":\"ue-dev-build\",\"answers\":{\"var1\":\"TEST\"}}"[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " } ][\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 200,[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "body" : "{\"id\":\"f9b4d64a-8dad-4aa0-93b1-7efb8f6c52c2\",\"componentInstance\":null,\"status\":null,\"metadata\":null}",[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : "application/json"[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "8ca86b10-267d-4d32-8557-fe561df02a41",[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "logged"[\r][\n]" -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@1c1a390a{null} -13:18:52.912 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@1c1a390a{null} -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2fc1d937] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2fc1d937] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2fc1d937] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@4009a65c[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,863 of 863},g=HttpGenerator@4211309{s=COMPLETING}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=27} -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2fc1d937] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:52.912 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:52.912 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:52.912 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:52.912 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.912 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@3ce2252b in null -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=28} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=28} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@db6281) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=28} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=863 -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,863 of 863} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:52.913 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.914 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.914 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:52.914 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.914 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.914 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 on ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:52.914 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:52.914 [qtp1044854934-106] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.914 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@7ece93d6 size 1 > capacity -13:18:52.914 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@7ece93d6 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:52.914 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.914 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:52.914 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:52.914 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:52.914 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:52.914 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:52.914 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:52.915 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/1 selected -13:18:52.915 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:52.915 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.915 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 -13:18:52.915 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.915 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.915 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 1 keys -13:18:52.926 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [61fb7cb4] HTTP POST http://localhost:8080/api/v0/components/provision-adapters/jobs -13:18:52.930 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:52.930 [reactor-http-nio-3] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x808d49cd] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:52.932 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:52.932 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:52.932 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:52.932 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:52.933 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:52.933 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:52.933 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs, method=POST} -13:18:52.933 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:52.952 [qtp1044854934-103-acceptor-1@4aa70108-NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@32d31dfd on ManagedSelector@6bc569ac{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:52.952 [qtp1044854934-103-acceptor-1@4aa70108-NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6bc569ac{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:52.953 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken with none selected -13:18:52.953 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken up from select, 0/0/0 selected -13:18:52.953 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 processing 0 keys, 1 updates -13:18:52.953 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.953 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@32d31dfd -13:18:52.953 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@32d31dfd startThread=0 -13:18:52.953 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.953 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 waiting with 1 keys -13:18:52.957 [reactor-http-nio-3] DEBUG org.springframework.http.codec.json.Jackson2JsonEncoder - [61fb7cb4] Encoding [ComponentInstanceRequest(id=2ec10139-2dfd-465c-8b35-b176fd9db069, productId=08e3492b-1227-4699-8aae- (truncated)...] -13:18:52.967 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:52.968 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@32d31dfd in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:52.968 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:52.969 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.969 [qtp1044854934-102] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:52.969 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.969 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.969 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.969 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@16536671{AC.ReadCB@2d02abad{HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.969 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.969 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@267b8467 on ManagedSelector@6bc569ac{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:52.969 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6bc569ac{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:52.969 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken with none selected -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken up from select, 0/0/1 selected -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 processing 0 keys, 1 updates -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@267b8467 -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 waiting with 1 keys -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken up from select, 1/1/1 selected -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 processing 1 keys, 0 updates -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65030], selector=sun.nio.ch.WindowsSelectorImpl@1fe41c74, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0} tryExecute EatWhatYouKill@6529d103/SelectorProducer@f56de7a/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.9703158+02:00 -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}@10af921d offer EatWhatYouKill@6529d103/SelectorProducer@f56de7a/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.9703158+02:00 -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1} startReservedThread p=1 -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@151c7704 startThread=0 -13:18:52.970 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:52.9703158+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@16536671{AC.ReadCB@2d02abad{HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 369 HeapByteBuffer@756f77d8[p=0,l=369,c=8192,r=369]={<<>> "Auth...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 369 HeapByteBuffer@756f77d8[p=0,l=369,c=8192,r=369]={<<>> "Auth...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=369,c=8192,r=369]={<<>> "Auth...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=369,c=8192,r=369]={<<>> "Auth...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:52.971 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -POST //localhost:8080/api/v0/components/provision-adapters/jobs HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Authorization: Bearer -Content-Length: 157 - - -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=CONTENT,0 of 157},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} parsed true HttpParser{s=CONTENT,0 of 157} -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@501efbc3 in null -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:52.972 [qtp1044854934-101] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@6fa64a08 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8 -13:18:52.973 [qtp1044854934-101] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:52.973 [qtp1044854934-101] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:52.973 [qtp1044854934-101] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=CONTENT,0 of 157},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=3} parse HeapByteBuffer@756f77d8[p=212,l=369,c=8192,r=157]={POST /api...157\r\n\r\n<<<{"id":"2ec10139-2dfd-465c...swers":{"var1":"TEST"}}>>> "Auth...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@756f77d8[p=212,l=369,c=8192,r=157]={POST /api...157\r\n\r\n<<<{"id":"2ec10139-2dfd-465c...swers":{"var1":"TEST"}}>>> "Auth...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=3} Content@6104ca35{HeapByteBufferR@17562546[p=212,l=369,c=8192,r=157]={POST /api...157\r\n\r\n<<<{"id":"2ec10139-2dfd-465c...swers":{"var1":"TEST"}}>>> "Auth...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@3031048c[c=0,q=0,[0]=null,s=STREAM] addContent Content@6104ca35{HeapByteBufferR@17562546[p=212,l=369,c=8192,r=157]={POST /api...157\r\n\r\n<<<{"id":"2ec10139-2dfd-465c...swers":{"var1":"TEST"}}>>> "Auth...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=3} -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=3} -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@3031048c[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=END,157 of 157},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=3} parsed false HttpParser{s=END,157 of 157} -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@3031048c[c=157,q=1,[0]=EOF,s=STREAM] read 157 from Content@6104ca35{HeapByteBufferR@17562546[p=369,l=369,c=8192,r=0]={POST /api...TEST"}}<<<>>> "Auth...\x00\x00\x00\x00\x00\x00\x00}} -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=END,157 of 157},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=3} -13:18:52.974 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:52.978 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@6d1aee88 exclude by status 401 -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@2a88d47c{null} -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=8} -401 null HTTP/1.1 -Matched-Stub-Id: add91af6-cec2-498d-be2a-9ef483f16aae - - -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@347fd81c] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: add91af6-cec2-498d-be2a-9ef483f16aae - - -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@347fd81c] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@eab1eb5{IDLE}->null [HeapByteBuffer@756f77d8[p=0,l=145,c=8192,r=145]={<<>>: applica...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@eab1eb5{WRITING}->null:IDLE-->WRITING -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=8/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=END,157 of 157},g=HttpGenerator@6b34285c{s=COMMITTED}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=8} -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@eab1eb5{WRITING}->null -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@eab1eb5{IDLE}->null:WRITING-->IDLE -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@347fd81c] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@2a88d47c{null} -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@2a88d47c{null} -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@626c1028] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@626c1028] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.979 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@626c1028] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@eab1eb5{IDLE}->null [HeapByteBuffer@4009a65c[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@eab1eb5{WRITING}->null:IDLE-->WRITING -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=END,157 of 157},g=HttpGenerator@6b34285c{s=COMPLETING}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=9} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@eab1eb5{WRITING}->null -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@eab1eb5{IDLE}->null:WRITING-->IDLE -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@626c1028] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=9} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@5eddc8b4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=9} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@7be45543) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@5eddc8b4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@5eddc8b4{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@5eddc8b4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=9} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs written=0 -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@5eddc8b4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,157 of 157} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.980 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@16536671{AC.ReadCB@2d02abad{HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:52.981 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 waiting with 1 keys -13:18:52.982 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=add91af6-cec2-498d-be2a-9ef483f16aae, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:52.982 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:52.982 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [61fb7cb4] Response 401 UNAUTHORIZED -13:18:53.015 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@151c7704 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}] -13:18:53.015 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=1}@151c7704 started -13:18:53.015 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@151c7704 waiting -13:18:53.048 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@10af921d task=EatWhatYouKill@6529d103/SelectorProducer@f56de7a/PRODUCING/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:53.0483045+02:00 -13:18:53.048 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6529d103/SelectorProducer@f56de7a/PRODUCING/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:53.0483045+02:00 tryProduce true -13:18:53.048 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@10af921d size 1 > capacity -13:18:53.048 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@10af921d in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:53.051 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=70/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.052 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@32d31dfd in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:53.053 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager is shutting down -13:18:53.053 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager shut down -13:18:53.054 [reactor-http-nio-3] DEBUG reactor.netty.channel.FluxReceive - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:53.054 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:53.056 [reactor-http-nio-3] INFO com.bi.edp.configuration_stack.adapter.client.forwarder.ForwarderClient - ForwarderClient unauthorized, trying to log in -13:18:53.060 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [548ec03c] HTTP POST http://localhost:8080/api/v0/components/login -13:18:53.061 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e] Created a new pooled channel, now 2 active connections and 0 inactive connections -13:18:53.061 [reactor-http-nio-3] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x1582dd5e] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:53.062 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:53.062 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:53.062 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:53.062 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:53.062 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:53.062 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Channel cleaned, now 1 active connections and 1 inactive connections -13:18:53.063 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:53.063 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 1 inactive connections -13:18:53.064 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:53.064 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:53.064 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:53.064 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:53.064 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:53.064 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:53.065 [reactor-http-nio-3] DEBUG org.springframework.core.codec.CharSequenceEncoder - [548ec03c] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:53.068 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:53.068 [qtp1044854934-103-acceptor-1@4aa70108-NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@36ec9f7f on ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:53.069 [qtp1044854934-103-acceptor-1@4aa70108-NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2114e303{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:53.069 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:53.069 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/1 selected -13:18:53.069 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:53.069 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:53.069 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@36ec9f7f -13:18:53.069 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@36ec9f7f startThread=0 -13:18:53.069 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:53.069 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 2 keys -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@36ec9f7f in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2eaa9be4{AC.ReadCB@1046840e{HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.070 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@414044cb on ManagedSelector@2114e303{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:53.071 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2114e303{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/2 selected -13:18:53.071 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:53.071 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@36ec9f7f in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@414044cb -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 2 keys -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 1/1/2 selected -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 1 keys, 0 updates -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65031], selector=sun.nio.ch.WindowsSelectorImpl@7436f8a6, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.071 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0} tryExecute EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:53.0713119+02:00 -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}@151c7704 offer EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:53.0723063+02:00 -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1} startReservedThread p=1 -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@1812e457 startThread=0 -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:53.0723063+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@2eaa9be4{AC.ReadCB@1046840e{HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@756f77d8[p=0,l=220,c=8192,r=220]={<<>>ec10139-2...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@756f77d8[p=0,l=220,c=8192,r=220]={<<>>ec10139-2...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=220,c=8192,r=220]={<<>>ec10139-2...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=220,c=8192,r=220]={<<>>ec10139-2...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:53.072 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:53.073 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@1c2d738d in null -13:18:53.074 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:53.074 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:53.074 [qtp1044854934-108] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:53.074 [qtp1044854934-108] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:53.074 [qtp1044854934-108] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:53.074 [qtp1044854934-108] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parse HeapByteBuffer@756f77d8[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ec10139-2...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@756f77d8[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ec10139-2...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} Content@592fee6c{HeapByteBufferR@67831744[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ec10139-2...\x00\x00\x00\x00\x00\x00\x00}} -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@68bc77bf[c=0,q=0,[0]=null,s=STREAM] addContent Content@592fee6c{HeapByteBufferR@67831744[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>ec10139-2...\x00\x00\x00\x00\x00\x00\x00}} -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@68bc77bf[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=END,51 of 51},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parsed false HttpParser{s=END,51 of 51} -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@68bc77bf[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@592fee6c{HeapByteBufferR@67831744[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>ec10139-2...\x00\x00\x00\x00\x00\x00\x00}} -13:18:53.075 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=END,51 of 51},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:53.076 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:53.079 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@1ffad03e[p=0,l=21,c=8192,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:53.079 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@39001123[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.079 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/login)@1c2d738d -13:18:53.079 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@46461870 exclude no deflater -13:18:53.079 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@39001123[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@4dcc9e88{null} -13:18:53.079 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: 0a8b0d32-ca44-4aca-bfdf-6bdc622197a5 -Vary: Accept-Encoding, User-Agent - - -13:18:53.079 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4fedc2f[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d4e4c9a] (null,[p=0,l=21,c=32768,r=21],false)@START -13:18:53.079 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@39001123[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.079 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: 0a8b0d32-ca44-4aca-bfdf-6bdc622197a5 -Vary: Accept-Encoding, User-Agent - - -13:18:53.080 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:53.080 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4fedc2f[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d4e4c9a] ([p=0,l=206,c=8192,r=206],[p=0,l=21,c=32768,r=21],false)@COMMITTED -13:18:53.080 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4bbd46db{IDLE}->null [HeapByteBuffer@756f77d8[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@39001123[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:53.080 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bbd46db{WRITING}->null:IDLE-->WRITING -13:18:53.080 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=7/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=END,51 of 51},g=HttpGenerator@598d518c{s=COMMITTED}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=7} -13:18:53.080 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 21 NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=END,51 of 51},g=HttpGenerator@598d518c{s=COMMITTED}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=7} -13:18:53.080 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=227 remaining=0 WriteFlusher@4bbd46db{WRITING}->null -13:18:53.080 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bbd46db{IDLE}->null:WRITING-->IDLE -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4fedc2f[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3d4e4c9a] ([p=206,l=206,c=8192,r=0],[p=21,l=21,c=32768,r=0],false)@COMMITTED -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@4dcc9e88{null} -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@4dcc9e88{null} -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@4fedc2f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@622cb9fa] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@4fedc2f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@622cb9fa] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4fedc2f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@622cb9fa] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4bbd46db{IDLE}->null [HeapByteBuffer@4009a65c[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bbd46db{WRITING}->null:IDLE-->WRITING -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=END,51 of 51},g=HttpGenerator@598d518c{s=COMPLETING}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@4bbd46db{WRITING}->null -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4bbd46db{IDLE}->null:WRITING-->IDLE -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4fedc2f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@622cb9fa] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:53.081 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=0a8b0d32-ca44-4aca-bfdf-6bdc622197a5, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:53.081 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2c3877a5{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@2c3877a5{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:53.081 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=8} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@10410e34) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:53.082 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [548ec03c] Response 200 OK -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@2c3877a5{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2c3877a5{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@2c3877a5{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=9} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=21 -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@2c3877a5{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,51 of 51} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:53.082 [reactor-http-nio-3] DEBUG reactor.netty.channel.FluxReceive - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:53.082 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.083 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.083 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2eaa9be4{AC.ReadCB@1046840e{HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:53.083 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.083 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:53.083 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:53.083 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:53.083 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:53.083 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 2 keys -13:18:53.083 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:53.083 [reactor-http-nio-3] DEBUG org.springframework.core.codec.StringDecoder - [548ec03c] Decoded "{"token":"someToken"}" -13:18:53.085 [reactor-http-nio-3] INFO com.bi.edp.configuration_stack.adapter.client.forwarder.ForwarderClient - Forwarder client logged successfully -13:18:53.085 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:53.085 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:53.085 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:53.085 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:53.085 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:53.085 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@151c7704 task=EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:53.0853008+02:00 -13:18:53.085 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:53.085 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@1812e457 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}] -13:18:53.085 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=1}@1812e457 started -13:18:53.085 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@1812e457 waiting -13:18:53.086 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:53.0853008+02:00 tryProduce true -13:18:53.086 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@151c7704 size 1 > capacity -13:18:53.086 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@151c7704 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.073 [parallel-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [61fb7cb4] HTTP POST http://localhost:8080/api/v0/components/provision-adapters/jobs -13:18:54.075 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 1 inactive connections -13:18:54.076 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:54.076 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:54.076 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs, method=POST} -13:18:54.076 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:54.077 [reactor-http-nio-3] DEBUG org.springframework.http.codec.json.Jackson2JsonEncoder - [61fb7cb4] Encoding [ComponentInstanceRequest(id=2ec10139-2dfd-465c-8b35-b176fd9db069, productId=08e3492b-1227-4699-8aae- (truncated)...] -13:18:54.079 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken up from select, 1/1/1 selected -13:18:54.079 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 processing 1 keys, 0 updates -13:18:54.079 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65030], selector=sun.nio.ch.WindowsSelectorImpl@1fe41c74, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1098/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.079 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:54.079 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1098/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.079 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1098/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:54.080 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0} tryExecute EatWhatYouKill@6529d103/SelectorProducer@f56de7a/REPRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:54.0803997+02:00 -13:18:54.080 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}@1812e457 offer EatWhatYouKill@6529d103/SelectorProducer@f56de7a/REPRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:54.0803997+02:00 -13:18:54.080 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1} startReservedThread p=1 -13:18:54.080 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@3191cd1b startThread=0 -13:18:54.080 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@3191cd1b in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}] -13:18:54.080 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@1812e457 task=EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:54.0803997+02:00 -13:18:54.080 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:54.0803997+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1099/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:54.080 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:54.0803997+02:00 tryProduce true -13:18:54.080 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=1}@3191cd1b started -13:18:54.080 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:54.080 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@16536671{AC.ReadCB@2d02abad{HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1099/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.080 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@3191cd1b waiting -13:18:54.080 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.080 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1099/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.081 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 378 HeapByteBuffer@756f77d8[p=0,l=378,c=8192,r=378]={<<>>orization...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.081 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1099/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.081 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 waiting with 1 keys -13:18:54.084 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 378 HeapByteBuffer@756f77d8[p=0,l=378,c=8192,r=378]={<<>>orization...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=378,c=8192,r=378]={<<>>orization...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=378,c=8192,r=378]={<<>>orization...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:54.085 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -POST //localhost:8080/api/v0/components/provision-adapters/jobs HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Authorization: Bearer someToken -Content-Length: 157 - - -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=CONTENT,0 of 157},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} parsed true HttpParser{s=CONTENT,0 of 157} -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@501efbc3 in null -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.086 [qtp1044854934-101] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=CONTENT,0 of 157},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} parse HeapByteBuffer@756f77d8[p=221,l=378,c=8192,r=157]={POST /api...157\r\n\r\n<<<{"id":"2ec10139-2dfd-465c...swers":{"var1":"TEST"}}>>>orization...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@756f77d8[p=221,l=378,c=8192,r=157]={POST /api...157\r\n\r\n<<<{"id":"2ec10139-2dfd-465c...swers":{"var1":"TEST"}}>>>orization...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} Content@6719232a{HeapByteBufferR@65f682b1[p=221,l=378,c=8192,r=157]={POST /api...157\r\n\r\n<<<{"id":"2ec10139-2dfd-465c...swers":{"var1":"TEST"}}>>>orization...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@3031048c[c=0,q=0,[0]=null,s=STREAM] addContent Content@6719232a{HeapByteBufferR@65f682b1[p=221,l=378,c=8192,r=157]={POST /api...157\r\n\r\n<<<{"id":"2ec10139-2dfd-465c...swers":{"var1":"TEST"}}>>>orization...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@3031048c[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=END,157 of 157},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} parsed false HttpParser{s=END,157 of 157} -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@3031048c[c=157,q=1,[0]=EOF,s=STREAM] read 157 from Content@6719232a{HeapByteBufferR@65f682b1[p=378,l=378,c=8192,r=0]={POST /api...TEST"}}<<<>>>orization...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=END,157 of 157},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:18:54.087 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@3c619d01[p=0,l=100,c=8192,r=100]={<<<{"id":"f9b4d64a-8dad-4aa0...":null,"metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@39001123[p=0,l=100,c=32768,r=100]={<<<{"id":"f9b4d64a-8dad-4aa0...":null,"metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@501efbc3 -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@3277683 exclude no deflater -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@39001123[p=0,l=100,c=32768,r=100]={<<<{"id":"f9b4d64a-8dad-4aa0...":null,"metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@2a88d47c{null} -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=5} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: 8ca86b10-267d-4d32-8557-fe561df02a41 -Vary: Accept-Encoding, User-Agent - - -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2d0915be] (null,[p=0,l=100,c=32768,r=100],false)@START -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@39001123[p=0,l=100,c=32768,r=100]={<<<{"id":"f9b4d64a-8dad-4aa0...":null,"metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: 8ca86b10-267d-4d32-8557-fe561df02a41 -Vary: Accept-Encoding, User-Agent - - -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2d0915be] ([p=0,l=206,c=8192,r=206],[p=0,l=100,c=32768,r=100],false)@COMMITTED -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@eab1eb5{IDLE}->null [HeapByteBuffer@756f77d8[p=0,l=206,c=8192,r=206]={<<>>length: 1...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@39001123[p=0,l=100,c=32768,r=100]={<<<{"id":"f9b4d64a-8dad-4aa0...":null,"metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@eab1eb5{WRITING}->null:IDLE-->WRITING -13:18:54.090 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=9/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=END,157 of 157},g=HttpGenerator@6b34285c{s=COMMITTED}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=5} -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 100 NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=END,157 of 157},g=HttpGenerator@6b34285c{s=COMMITTED}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=6} -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=306 remaining=0 WriteFlusher@eab1eb5{WRITING}->null -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@eab1eb5{IDLE}->null:WRITING-->IDLE -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2d0915be] ([p=206,l=206,c=8192,r=0],[p=100,l=100,c=32768,r=0],false)@COMMITTED -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@2a88d47c{null} -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@2a88d47c{null} -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7cbbe9a4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7cbbe9a4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.091 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=8ca86b10-267d-4d32-8557-fe561df02a41, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7cbbe9a4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@eab1eb5{IDLE}->null [HeapByteBuffer@4009a65c[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.091 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:54.091 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@eab1eb5{WRITING}->null:IDLE-->WRITING -13:18:54.092 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [61fb7cb4] Response 200 OK -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=END,157 of 157},g=HttpGenerator@6b34285c{s=COMPLETING}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=7} -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@eab1eb5{WRITING}->null -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@eab1eb5{IDLE}->null:WRITING-->IDLE -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@c52a87e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7cbbe9a4] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=7} -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@5eddc8b4{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@5eddc8b4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=7} -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@4c02eaa7) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@5eddc8b4{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.092 [reactor-http-nio-3] DEBUG reactor.netty.channel.FluxReceive - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:54.092 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@5eddc8b4{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@5eddc8b4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=8} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs written=100 -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@5eddc8b4{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,157 of 157} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.093 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.093 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:54.094 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.094 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.094 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@16536671{AC.ReadCB@2d02abad{HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.094 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.094 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@267b8467 on ManagedSelector@6bc569ac{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:54.094 [qtp1044854934-101] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6bc569ac{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:54.094 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken with none selected -13:18:54.094 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken up from select, 0/0/1 selected -13:18:54.094 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 processing 0 keys, 1 updates -13:18:54.094 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.094 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@267b8467 -13:18:54.094 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.094 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.094 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 waiting with 1 keys -13:18:54.094 [qtp1044854934-101] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.095 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@615c6684 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.095 [reactor-http-nio-3] DEBUG org.springframework.http.codec.json.Jackson2JsonDecoder - [61fb7cb4] Decoded [ProvisioningJobResponse(id=f9b4d64a-8dad-4aa0-93b1-7efb8f6c52c2, componentInstanceId=null, status=nu (truncated)...] -13:18:54.099 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:54.099 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:54.099 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:54.099 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:54.099 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:54.099 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:54.104 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.104 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.104 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:54.104 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:54.106 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:54.106 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:54.106 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:54.106 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/requests/count HTTP/1.1 -13:18:54.106 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 89 -13:18:54.106 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:54.106 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:54.106 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:54.106 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 89[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/provision-adapters/jobs/{jobId}",[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:54.106 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:54.106 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 1/1/2 selected -13:18:54.106 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 1 keys, 0 updates -13:18:54.107 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65029], selector=sun.nio.ch.WindowsSelectorImpl@7436f8a6, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1193/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.107 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1193/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.107 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1193/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:54.107 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0} tryExecute EatWhatYouKill@338225cc/SelectorProducer@18085b76/REPRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:54.1074017+02:00 -13:18:54.107 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}@3191cd1b offer EatWhatYouKill@338225cc/SelectorProducer@18085b76/REPRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:54.1074017+02:00 -13:18:54.107 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1} startReservedThread p=1 -13:18:54.107 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@5fa4ba3a startThread=0 -13:18:54.107 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:54.1074017+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1193/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:54.107 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@3191cd1b task=EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:54.1074017+02:00 -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1194/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.108 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@5fa4ba3a in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}] -13:18:54.108 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=1}@5fa4ba3a started -13:18:54.108 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@5fa4ba3a waiting -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1194/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 289 HeapByteBuffer@756f77d8[p=0,l=289,c=8192,r=289]={<<>>7-4699-8a...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 289 HeapByteBuffer@756f77d8[p=0,l=289,c=8192,r=289]={<<>>7-4699-8a...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=289,c=8192,r=289]={<<>>7-4699-8a...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=289,c=8192,r=289]={<<>>7-4699-8a...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:54.108 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:54.1084054+02:00 tryProduce true -13:18:54.108 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 89 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:54.109 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:54.109 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 89},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} parsed true HttpParser{s=CONTENT,0 of 89} -13:18:54.109 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 89},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.109 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 2 keys -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.109 [qtp1044854934-108] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 89},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parse HeapByteBuffer@756f77d8[p=200,l=289,c=8192,r=89]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>7-4699-8a...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@756f77d8[p=200,l=289,c=8192,r=89]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>7-4699-8a...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} Content@7e0eb48b{HeapByteBufferR@79ea21d9[p=200,l=289,c=8192,r=89]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>7-4699-8a...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=0,[0]=null,s=STREAM] addContent Content@7e0eb48b{HeapByteBufferR@79ea21d9[p=200,l=289,c=8192,r=89]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>7-4699-8a...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,89 of 89},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parsed false HttpParser{s=END,89 of 89} -13:18:54.110 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=89,q=1,[0]=EOF,s=STREAM] read 89 from Content@7e0eb48b{HeapByteBufferR@79ea21d9[p=289,l=289,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>7-4699-8a...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.111 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,89 of 89},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} -13:18:54.111 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@61c2a07e[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@39f337c1[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@39f337c1[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@1c1a390a{null} -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=15} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1b4da316] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@39f337c1[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1b4da316] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@756f77d8[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@39f337c1[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.123 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "38[\r][\n]" -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,89 of 89},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=16} -13:18:54.124 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 200 OK -13:18:54.124 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:54.124 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:54.124 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,89 of 89},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=16} -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1b4da316] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:54.124 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@1c1a390a{null} -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@1c1a390a{null} -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@106ce618] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@106ce618] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "count" : 0,[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requestJournalDisabled" : false[\r][\n]" -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@106ce618] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@4009a65c[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.124 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:54.124 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,89 of 89},g=HttpGenerator@4211309{s=COMPLETING}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=16} -13:18:54.124 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:54.125 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.125 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:54.125 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:54.125 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@106ce618] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:54.125 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.125 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@3ce2252b in null -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=18} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=18} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@3820f925) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=18} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.126 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,89 of 89} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:54.126 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.126 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:54.126 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.126 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 on ManagedSelector@2114e303{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:54.127 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2114e303{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/2 selected -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 2 keys -13:18:54.128 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:54.128 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:54.128 [qtp1044854934-108] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.128 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:54.128 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@3bcc026b size 1 > capacity -13:18:54.128 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@3bcc026b in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.128 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/requests/count HTTP/1.1 -13:18:54.128 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 63 -13:18:54.128 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:54.128 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:54.128 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:54.128 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 63[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:54.128 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 1/1/2 selected -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 1 keys, 0 updates -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65029], selector=sun.nio.ch.WindowsSelectorImpl@7436f8a6, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.128 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.129 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:54.129 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0} tryExecute EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:54.1293985+02:00 -13:18:54.129 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}@5fa4ba3a offer EatWhatYouKill@338225cc/SelectorProducer@18085b76/PRODUCING/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:54.1293985+02:00 -13:18:54.129 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1} startReservedThread p=1 -13:18:54.129 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@6582de19 startThread=0 -13:18:54.129 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:54.1293985+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:54.129 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.129 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.129 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 263 HeapByteBuffer@756f77d8[p=0,l=263,c=8192,r=263]={<<>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 263 HeapByteBuffer@756f77d8[p=0,l=263,c=8192,r=263]={<<>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=263,c=8192,r=263]={<<>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=263,c=8192,r=263]={<<>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 63 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} parsed true HttpParser{s=CONTENT,0 of 63} -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=0} -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=0} -13:18:54.130 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,AVAILABLE} -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.131 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@5fa4ba3a task=EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:54.1313911+02:00 -13:18:54.131 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=true/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:54.1313911+02:00 tryProduce true -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} parse HeapByteBuffer@756f77d8[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@756f77d8[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.131 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}@6582de19 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=0/1,p=1}] -13:18:54.131 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=1}@6582de19 started -13:18:54.131 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@6582de19 waiting -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} Content@56b0f214{HeapByteBufferR@2cbf269d[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=0,[0]=null,s=STREAM] addContent Content@56b0f214{HeapByteBufferR@2cbf269d[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} parsed false HttpParser{s=END,63 of 63} -13:18:54.131 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@344afc03[c=63,q=1,[0]=EOF,s=STREAM] read 63 from Content@56b0f214{HeapByteBufferR@2cbf269d[p=263,l=263,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.132 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:54.132 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.131 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:54.132 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.132 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:54.132 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 2 keys -13:18:54.135 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@6f9a49dd[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:54.135 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@39f337c1[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.135 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@39f337c1[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@1c1a390a{null} -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=5} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1c1b3021] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@39f337c1[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1c1b3021] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@756f77d8[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@39f337c1[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:54.136 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]" -13:18:54.136 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:54.136 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:54.136 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:54.136 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.136 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "38[\r][\n]" -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=6} -13:18:54.136 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 200 OK -13:18:54.136 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:54.136 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:54.136 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4211309{s=COMMITTED}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=6} -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:54.136 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1c1b3021] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:54.136 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@1c1a390a{null} -13:18:54.137 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:54.137 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "count" : 0,[\r][\n]" -13:18:54.137 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requestJournalDisabled" : false[\r][\n]" -13:18:54.137 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@1c1a390a{null} -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d6a41e4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d6a41e4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d6a41e4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7e99254a{IDLE}->null [HeapByteBuffer@4009a65c[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{WRITING}->null:IDLE-->WRITING -13:18:54.137 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.137 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:54.137 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4211309{s=COMPLETING}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=7} -13:18:54.137 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:54.137 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@7e99254a{WRITING}->null -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7e99254a{IDLE}->null:WRITING-->IDLE -13:18:54.137 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5754950b[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d6a41e4] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d61717f{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@3ce2252b in null -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@769fbc24{/,null,AVAILABLE} -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=7} -13:18:54.137 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.138 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@1f5c4676{STARTED}[9.4.28.v20200408] -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=8} -13:18:54.138 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@1f5c4676{STOPPING}[9.4.28.v20200408] -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@18b40d1a) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@355e074f{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@355e074f{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=5,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=8} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:54.138 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@355e074f{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,63 of 63} -13:18:54.138 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:54.138 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@2114e303{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.138 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@3196f624 on ManagedSelector@2114e303{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:54.138 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2114e303{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.138 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.138 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/2 selected -13:18:54.138 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:54.138 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.138 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@3196f624 -13:18:54.138 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@2114e303{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@756f77d8[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.138 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.138 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=0/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@10d0e12a{AC.ReadCB@6845abd8{HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=0/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@6845abd8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 on ManagedSelector@2114e303{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=0/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@6845abd8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=0/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@6845abd8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@2114e303{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@3191cd1b size 1 > capacity -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@2cbbdc23 startThread=0 -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@3191cd1b in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@2cbbdc23 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1056/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.139 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=0/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@6845abd8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1056/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.139 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=1056/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@2eaa9be4{AC.ReadCB@1046840e{HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=1057/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@1046840e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1057/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@1046840e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@2114e303{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7c64df44 startThread=0 -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 1 -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - wakeup on updates SelectorProducer@18085b76 -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 2 keys -13:18:54.140 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x1582dd5e, L:/127.0.0.1:65031 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x1582dd5e, L:/127.0.0.1:65031 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/0 selected -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.140 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5571f800 -13:18:54.140 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@6845abd8::NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=0/30000}{io=0/1,kio=-1,kro=-1}->HttpConnection@6845abd8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.140 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@2cbbdc23 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.140 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7c64df44 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Ignoring key update for concurrently closed channel NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6845abd8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.141 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@209643ec on ManagedSelector@2114e303{STOPPING} id=1 keys=0 selected=0 updates=0 -13:18:54.141 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1058/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@1046840e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6845abd8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.141 [qtp1044854934-107] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@1046840e::NetworkTrafficSocketChannelEndPoint@ce8bd4f{/127.0.0.1:65031<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1058/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@1046840e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@598d518c{s=START}]=>HttpChannelOverHttp@1ded1c8{s=HttpChannelState@2c3877a5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@7aa4ec50{/127.0.0.1:65029<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6845abd8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4211309{s=START}]=>HttpChannelOverHttp@705c8720{s=HttpChannelState@355e074f{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.141 [qtp1044854934-107] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7c64df44 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 1 -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - wakeup on updates SelectorProducer@18085b76 -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 waiting with 0 keys -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken with none selected -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 woken up from select, 0/0/0 selected -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@7436f8a6 processing 0 keys, 1 updates -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@209643ec -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@5fa4ba3a size 1 > capacity -13:18:54.141 [qtp1044854934-106] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@5fa4ba3a in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.141 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:54.141392+02:00 -13:18:54.142 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@338225cc/SelectorProducer@18085b76/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:54.141392+02:00 -13:18:54.142 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@2114e303{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:54.142 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@6bc569ac{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:54.142 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@3f70c5b on ManagedSelector@6bc569ac{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:54.142 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6bc569ac{STOPPING} id=0 keys=1 selected=0 updates=1 -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken with none selected -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken up from select, 0/0/1 selected -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 processing 0 keys, 1 updates -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@3f70c5b -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@6bc569ac{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=48/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=48/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=48/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.142 [qtp1044854934-103] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1044854934-103-acceptor-1@4aa70108-NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.142 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@16536671{AC.ReadCB@2d02abad{HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=48/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@2d02abad[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.143 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:54.143 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x808d49cd, L:/127.0.0.1:65030 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x808d49cd, L:/127.0.0.1:65030 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:54.143 [qtp1044854934-102] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:54.143 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=49/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@2d02abad[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:54.143 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@6bc569ac{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:54.143 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1e9c1cc6 startThread=0 -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.144 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1e9c1cc6 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 waiting with 1 keys -13:18:54.144 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@1976f2fa on ManagedSelector@6bc569ac{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:54.144 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@6bc569ac{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:54.144 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=49/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@2d02abad[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken with none selected -13:18:54.144 [qtp1044854934-108] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@2d02abad::NetworkTrafficSocketChannelEndPoint@6c855eb7{/127.0.0.1:65030<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=49/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@2d02abad[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6b34285c{s=START}]=>HttpChannelOverHttp@6fd25902{s=HttpChannelState@5eddc8b4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 woken up from select, 0/0/0 selected -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1fe41c74 processing 0 keys, 1 updates -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.144 [qtp1044854934-108] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1e9c1cc6 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@1976f2fa -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@1812e457 size 1 > capacity -13:18:54.144 [qtp1044854934-102] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}@1812e457 in QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.144 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:54.1443889+02:00 -13:18:54.144 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@6529d103/SelectorProducer@f56de7a/IDLE/p=false/QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:54.1443889+02:00 -13:18:54.144 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@6bc569ac{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:54.144 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@54aceb1b[HTTP/1.1] -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@54aceb1b[HTTP/1.1] -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@45b4e635{STARTED} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@45b4e635{STOPPED} -13:18:54.145 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@1f5c4676{STOPPING}[9.4.28.v20200408] -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@2863660f{STARTED} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@2863660f{STOPPING} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@2863660f{STOPPED} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@ef98260{STARTED} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@ef98260{STOPPING} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@4d61717f{STARTED,min=32,inflate=-1} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@4d61717f{STOPPING,min=32,inflate=-1} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@769fbc24{/,null,SHUTDOWN} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@769fbc24{/,null,UNAVAILABLE} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@37afa511{STARTED} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@37afa511{STOPPING} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@37afa511{STOPPED} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@2c1f7663{STARTED} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@2c1f7663{STOPPING} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-443420da@443420da==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-38d70040@38d70040==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-38d70040@38d70040==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-60d461e9@60d461e9==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-60d461e9@60d461e9==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-2f5a68a8@1c018047==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-242f8e95@6484bf5e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-242f8e95@6484bf5e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@2c1f7663{STOPPED} -13:18:54.145 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@769fbc24{/,null,UNAVAILABLE} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@769fbc24{/,null,UNAVAILABLE} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@4d61717f{STOPPED,min=32,inflate=-1} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,SHUTDOWN} -13:18:54.145 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,UNAVAILABLE} -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@33d0c255{STARTED} -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@33d0c255{STOPPING} -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-221545b0@221545b0==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1762ef63@fd0fff4e==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-7ea49cfc@d96f97a7==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-7ea49cfc@d96f97a7==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-5c011be5@4c15636f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-5c011be5@4c15636f==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@33d0c255{STOPPED} -13:18:54.146 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,UNAVAILABLE} -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@5adf1b12{/__admin,null,UNAVAILABLE} -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@ef98260{STOPPED} -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp1044854934]@3e473896{STARTED,8<=8<=14,i=5,r=1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp1044854934]@3e473896{STOPPING,8<=8<=14,i=5,r=-1,q=0}[ReservedThreadExecutor@6a4b1be1{s=1/1,p=0}] -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@6a4b1be1{s=1/1,p=0} -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=0/1,p=0}@6582de19 offer STOP! -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@6a4b1be1{s=-1/1,p=0} -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp1044854934]@3e473896{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:54.146 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@1f5c4676{STOPPED}[9.4.28.v20200408] -13:18:54.147 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=-1/1,p=0}@6582de19 task=STOP! -13:18:54.147 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@6a4b1be1{s=-1/1,p=0}@6582de19 Exited -13:18:54.147 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@6a4b1be1{s=-1/1,p=0}@6582de19 in QueuedThreadPool[qtp1044854934]@3e473896{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:54.147 [qtp1044854934-101] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1044854934-101,5,main] exited for QueuedThreadPool[qtp1044854934]@3e473896{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:54.151 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@338febd{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:54.151 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@52548ac1[HTTP/1.1] added {HttpConfiguration@35958f8c{32768/8192,8192/8192,https://:0,[]},POJO} -13:18:54.151 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{null, ()}{0.0.0.0:0} added {Server@338febd{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:18:54.151 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:54.151 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@315e4d37{STOPPED},AUTO} -13:18:54.151 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@472adb5f,POJO} -13:18:54.152 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@52548ac1[HTTP/1.1],AUTO} -13:18:54.152 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@52548ac1[HTTP/1.1] -13:18:54.152 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:18:54.152 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@338febd{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:18:54.152 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@338febd{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,UNAVAILABLE},MANAGED} -13:18:54.152 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@1705700c -13:18:54.152 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,UNAVAILABLE} added {ServletHandler@5471a02e{STOPPED},MANAGED} -13:18:54.153 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@338febd{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@6e64e885{/,null,UNAVAILABLE},MANAGED} -13:18:54.153 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@43e094ab -13:18:54.153 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@6e64e885{/,null,UNAVAILABLE} added {ServletHandler@1e482510{STOPPED},MANAGED} -13:18:54.153 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@6e64e885{/,null,UNAVAILABLE} added {NotFoundHandler@59402e4b{STOPPED},MANAGED} -13:18:54.153 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@582f7383{STOPPED} added {o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,UNAVAILABLE},AUTO} -13:18:54.154 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:18:54.154 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STOPPED,min=32,inflate=-1} mime types IncludeExclude@70e80cc9{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@21af4110{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@6e64e885{/,null,UNAVAILABLE},MANAGED} -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@582f7383{STOPPED} added {GzipHandler@21af4110{STOPPED,min=32,inflate=-1},AUTO} -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@338febd{STOPPED}[9.4.28.v20200408] added {HandlerCollection@582f7383{STOPPED},MANAGED} -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@338febd{STOPPED}[9.4.28.v20200408] -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@338febd{STARTING}[9.4.28.v20200408] added {ErrorHandler@59b9fd65{STOPPED},AUTO} -13:18:54.155 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@338febd{STARTING}[9.4.28.v20200408] -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0} -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp853429147]@32de4b9b{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] added {ReservedThreadExecutor@7a292eba{s=0/1,p=0},AUTO} -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@7a292eba{s=0/1,p=0} -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85717ms ReservedThreadExecutor@7a292eba{s=0/1,p=0} -13:18:54.155 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-110,5,main] -13:18:54.156 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-111,5,main] -13:18:54.156 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-112,5,main] -13:18:54.156 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-113,5,main] -13:18:54.156 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-114,5,main] -13:18:54.156 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-115,5,main] -13:18:54.157 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-116,5,main] -13:18:54.157 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-117,5,main] -13:18:54.157 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85719ms QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.157 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@582f7383{STOPPED} -13:18:54.157 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@582f7383{STARTING} -13:18:54.157 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,UNAVAILABLE} -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,STARTING} -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@5471a02e{STOPPED} -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-4dec18aa[EMBEDDED:null] -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-4dec18aa@764b43f4==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-451069dc[EMBEDDED:null] -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-451069dc@647dfe01==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b[EMBEDDED:null] -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf=org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf] -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-451069dc=org.eclipse.jetty.servlet.DefaultServlet-451069dc@647dfe01==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-4dec18aa=org.eclipse.jetty.servlet.DefaultServlet-4dec18aa@764b43f4==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@5471a02e{STARTING} -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85720ms ServletHandler@5471a02e{STARTED} -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85720ms org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@3cc7378d -13:18:54.158 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85721ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-451069dc@647dfe01==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85721ms org.eclipse.jetty.servlet.DefaultServlet-451069dc@647dfe01==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-4dec18aa@764b43f4==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85721ms org.eclipse.jetty.servlet.DefaultServlet-4dec18aa@764b43f4==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.159 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85721ms o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@21af4110{STOPPED,min=32,inflate=-1} -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@21af4110{STARTING,min=32,inflate=-1} -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@6e64e885{/,null,UNAVAILABLE} -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@6e64e885{/,null,STARTING} -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@1e482510{STOPPED} -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-57ab5e54[EMBEDDED:null] -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-57ab5e54@8ad50151==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4[EMBEDDED:null] -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:54.159 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-bab57a3=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-bab57a3@bab57a3==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-c527a6=org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6fff0d6=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6fff0d6@6fff0d6==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true} -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6fff0d6, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-bab57a3, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-c527a6] -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-57ab5e54=org.eclipse.jetty.servlet.DefaultServlet-57ab5e54@8ad50151==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@1e482510{STARTING} -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85722ms ServletHandler@1e482510{STARTED} -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@59402e4b{STOPPED} -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@59402e4b{STARTING} -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85722ms NotFoundHandler@59402e4b{STARTED} -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6fff0d6@6fff0d6==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85722ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6fff0d6@6fff0d6==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@2200ab5f -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-bab57a3@bab57a3==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85722ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-bab57a3@bab57a3==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@44601e51 -13:18:54.160 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85723ms org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@3200f5dd -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85723ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-57ab5e54@8ad50151==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85723ms org.eclipse.jetty.servlet.DefaultServlet-57ab5e54@8ad50151==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.161 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85723ms o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85723ms GzipHandler@21af4110{STARTED,min=32,inflate=-1} -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85723ms HandlerCollection@582f7383{STARTED} -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@59b9fd65{STOPPED} -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@59b9fd65{STARTING} -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85723ms ErrorHandler@59b9fd65{STARTED} -13:18:54.161 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.162 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:54.162 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@315e4d37{STOPPED} -13:18:54.162 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85724ms ScheduledExecutorScheduler@315e4d37{STARTED} -13:18:54.162 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@52548ac1[HTTP/1.1] -13:18:54.162 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85724ms HttpConnectionFactory@52548ac1[HTTP/1.1] -13:18:54.162 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.162 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.1623897+02:00 added {SelectorProducer@1083d8ac,POJO} -13:18:54.163 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.1633915+02:00 added {QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}],UNMANAGED} -13:18:54.163 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.1633915+02:00 created -13:18:54.163 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@5455ce7b{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.1633915+02:00,MANAGED} -13:18:54.163 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@5455ce7b{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:54.387 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.387 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.387 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3873555+02:00 added {SelectorProducer@20cb10e8,POJO} -13:18:54.387 [qtp853429147-114] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.388 [qtp853429147-113] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.387 [qtp853429147-115] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.388 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3873555+02:00 added {QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}],UNMANAGED} -13:18:54.388 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.388 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3883579+02:00 created -13:18:54.388 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@2e03eae5{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3883579+02:00,MANAGED} -13:18:54.388 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.388 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.388 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@2e03eae5{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:54.388 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@5455ce7b{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:54.388 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3883579+02:00 -13:18:54.388 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85950ms EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3883579+02:00 -13:18:54.389 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@545fcf48 startThread=0 -13:18:54.390 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@463acd1d on ManagedSelector@5455ce7b{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:54.390 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@545fcf48 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.390 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3903578+02:00 tryProduce false -13:18:54.390 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.390 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@463acd1d -13:18:54.390 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.390 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 waiting with 0 keys -13:18:54.390 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85952ms ManagedSelector@5455ce7b{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:54.390 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@2e03eae5{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:54.390 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3903578+02:00 -13:18:54.390 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85952ms EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3903578+02:00 -13:18:54.392 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@3e0ed962 startThread=0 -13:18:54.392 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@feb4884 on ManagedSelector@2e03eae5{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:54.393 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@3e0ed962 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.393 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.3933634+02:00 tryProduce false -13:18:54.393 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.393 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@feb4884 -13:18:54.393 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.393 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 0 keys -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85955ms ManagedSelector@2e03eae5{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85955ms SelectorManager@NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@25e4f3be,POJO} -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@25e4f3be startThread=0 -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@3526903a,POJO} -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@3526903a startThread=0 -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@7dab9a35,POJO} -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@7dab9a35 startThread=0 -13:18:54.393 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85955ms NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:54.393 [Test worker] INFO org.eclipse.jetty.server.Server - Started @85955ms -13:18:54.393 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @85955ms Server@338febd{STARTED}[9.4.28.v20200408] -13:18:54.397 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.397 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.398 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:54.398 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:54.398 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "end of stream" -13:18:54.398 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection detected -13:18:54.398 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: Close connection -13:18:54.399 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:54.400 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:54.400 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:65036<->127.0.0.1:8080 -13:18:54.400 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:54.400 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:54.400 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:54.401 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:54.401 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 366 -13:18:54.401 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:54.401 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:54.401 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:54.401 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 366[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "8182e000-de79-4133-9739-53ffeddc63f0",[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c",[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 401[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "8182e000-de79-4133-9739-53ffeddc63f0",[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "Started"[\r][\n]" -13:18:54.401 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:54.401 [qtp853429147-114] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@25e4f3be in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.402 [qtp853429147-113] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@3526903a in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.402 [qtp853429147-115] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@7dab9a35 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.403 [qtp853429147-113-acceptor-1@3526903a-NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@52a3290e on ManagedSelector@2e03eae5{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:54.403 [qtp853429147-113-acceptor-1@3526903a-NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:54.403 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:54.403 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/0 selected -13:18:54.403 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:54.403 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.403 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@52a3290e -13:18:54.403 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@52a3290e startThread=0 -13:18:54.403 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.403 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 1 keys -13:18:54.403 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@52a3290e in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.403 [qtp853429147-111] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f on ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:54.404 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:54.404 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/1 selected -13:18:54.404 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.404 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.404 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f -13:18:54.404 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@52a3290e in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}] -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 1 keys -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 1/1/1 selected -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 1 keys, 0 updates -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65036], selector=sun.nio.ch.WindowsSelectorImpl@1d61dea3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0} tryExecute EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.4053534+02:00 -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1} startReservedThread p=1 -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7a292eba{s=0/1,p=1}@1799b5d3 startThread=0 -13:18:54.405 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7a292eba{s=0/1,p=1}@1799b5d3 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}] -13:18:54.405 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@1799b5d3 started -13:18:54.405 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@1799b5d3 waiting -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.4053534+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.405 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.405 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.406 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 1 keys -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 561 HeapByteBuffer@b72e34d[p=0,l=561,c=8192,r=561]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 561 HeapByteBuffer@b72e34d[p=0,l=561,c=8192,r=561]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=561,c=8192,r=561]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=561,c=8192,r=561]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:54.406 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 366 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 366},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 366} -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.407 [qtp853429147-112] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@5b50c53 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b -13:18:54.513 [qtp853429147-112] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:54.513 [qtp853429147-112] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.513 [qtp853429147-112] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=107/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 366},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=107} parse HeapByteBuffer@b72e34d[p=195,l=561,c=8192,r=366]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8182e000-de7...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@b72e34d[p=195,l=561,c=8192,r=366]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8182e000-de7...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=107} Content@18a883d{HeapByteBufferR@44880668[p=195,l=561,c=8192,r=366]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8182e000-de7...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=0,[0]=null,s=STREAM] addContent Content@18a883d{HeapByteBufferR@44880668[p=195,l=561,c=8192,r=366]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "8182e000-de7...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=107} -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=107} -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=108/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,366 of 366},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=107} parsed false HttpParser{s=END,366 of 366} -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=366,q=1,[0]=EOF,s=STREAM] read 366 from Content@18a883d{HeapByteBufferR@44880668[p=561,l=561,c=8192,r=0]={POST /__a...ted"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=108/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,366 of 366},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=107} -13:18:54.514 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@7586a5e7[p=0,l=366,c=8192,r=366]={<<<{\r\n "id" : "8182e000-de7...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@2018100a[p=0,l=366,c=32768,r=366]={<<<{\r\n "id" : "8182e000-de7...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@2018100a[p=0,l=366,c=32768,r=366]={<<<{\r\n "id" : "8182e000-de7...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@24a7f927{null} -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=134} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5be45a92] (null,[p=0,l=366,c=32768,r=366],false)@START -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@2018100a[p=0,l=366,c=32768,r=366]={<<<{\r\n "id" : "8182e000-de7...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5be45a92] ([p=0,l=122,c=8192,r=122],[p=0,l=366,c=32768,r=366],false)@COMMITTED -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@b72e34d[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@2018100a[p=0,l=366,c=32768,r=366]={<<<{\r\n "id" : "8182e000-de7...ioState" : "Started"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.541 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "16E[\r][\n]" -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=135/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,366 of 366},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=135} -13:18:54.542 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:54.542 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:54.542 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:54.542 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 366 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,366 of 366},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=135} -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=488 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5be45a92] ([p=122,l=122,c=8192,r=0],[p=366,l=366,c=32768,r=0],false)@COMMITTED -13:18:54.542 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@24a7f927{null} -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@24a7f927{null} -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@20e92121] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.542 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@20e92121] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "8182e000-de79-4133-9739-53ffeddc63f0",[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c",[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "GET"[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 401[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "8182e000-de79-4133-9739-53ffeddc63f0",[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "Started"[\r][\n]" -13:18:54.542 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@20e92121] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@50786100[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:54.543 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.543 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:54.543 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.543 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,366 of 366},g=HttpGenerator@1aab1830{s=COMPLETING}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=136} -13:18:54.543 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:54.543 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@20e92121] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@29b19157 in null -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=136} -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=136} -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@763fec7c) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:54.543 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=137} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=366 -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,366 of 366} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.544 [qtp853429147-112] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.545 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.545 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f on ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:54.545 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:54.545 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:54.545 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/1 selected -13:18:54.545 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:54.545 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.545 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f -13:18:54.545 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.545 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.545 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 1 keys -13:18:54.545 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.545 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.547 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.547 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.547 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:54.547 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:54.549 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:54.549 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:54.549 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:54.549 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:54.549 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 678 -13:18:54.549 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:54.549 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:54.549 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:54.549 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 678[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "7dc3e678-e7ee-4d90-b520-ac4e94a1e9c9",[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "POST",[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : {[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "application/json"[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "bodyPatterns" : [ {[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " } ][\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 200,[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "7dc3e678-e7ee-4d90-b520-ac4e94a1e9c9",[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "Started",[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "newScenarioState" : "logged"[\r][\n]" -13:18:54.549 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:54.550 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 1/1/1 selected -13:18:54.550 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 1 keys, 0 updates -13:18:54.550 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65036], selector=sun.nio.ch.WindowsSelectorImpl@1d61dea3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.550 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.550 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:54.551 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0} tryExecute EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:54.5513344+02:00 -13:18:54.551 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0}@1799b5d3 offer EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:54.5513344+02:00 -13:18:54.552 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1} startReservedThread p=1 -13:18:54.552 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7a292eba{s=0/1,p=1}@529b3944 startThread=0 -13:18:54.553 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7a292eba{s=0/1,p=1}@529b3944 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}] -13:18:54.553 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1}@1799b5d3 task=EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:54.553361+02:00 -13:18:54.553 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@529b3944 started -13:18:54.553 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:54.5523691+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=8/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:54.553 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@529b3944 waiting -13:18:54.553 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:54.553361+02:00 tryProduce true -13:18:54.553 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:54.553 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.553 [qtp853429147-116] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=8/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.553 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.553 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 1 keys -13:18:54.553 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.563 [qtp1044854934-105] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1044854934-105-acceptor-2@ea676a6-NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1044854934]@3e473896{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:54.564 [qtp1044854934-105] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1044854934-105,5,main] exited for QueuedThreadPool[qtp1044854934]@3e473896{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 873 HeapByteBuffer@b72e34d[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 873 HeapByteBuffer@b72e34d[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:54.574 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:54.575 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:54.575 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:54.575 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:54.575 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:54.575 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:54.575 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:54.575 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:54.575 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:54.575 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 678 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 678} -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.576 [qtp853429147-116] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parse HeapByteBuffer@b72e34d[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "7dc3e678-e7e...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@b72e34d[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "7dc3e678-e7e...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} Content@419c6172{HeapByteBufferR@63838ff5[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "7dc3e678-e7e...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=0,[0]=null,s=STREAM] addContent Content@419c6172{HeapByteBufferR@63838ff5[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "7dc3e678-e7e...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,678 of 678},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parsed false HttpParser{s=END,678 of 678} -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=678,q=1,[0]=EOF,s=STREAM] read 678 from Content@419c6172{HeapByteBufferR@63838ff5[p=873,l=873,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,678 of 678},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:54.577 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.605 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@36fa181e[p=0,l=678,c=8192,r=678]={<<<{\r\n "id" : "7dc3e678-e7e...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:54.605 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@2018100a[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "7dc3e678-e7e...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.605 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@2018100a[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "7dc3e678-e7e...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@24a7f927{null} -13:18:54.606 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=30} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:54.606 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2bd0ef59] (null,[p=0,l=678,c=32768,r=678],false)@START -13:18:54.606 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@2018100a[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "7dc3e678-e7e...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.606 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:54.606 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:54.606 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2bd0ef59] ([p=0,l=122,c=8192,r=122],[p=0,l=678,c=32768,r=678],false)@COMMITTED -13:18:54.606 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@b72e34d[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@2018100a[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "7dc3e678-e7e...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.606 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:54.606 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:54.606 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:54.606 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:54.606 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:54.606 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.606 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "2A6[\r][\n]" -13:18:54.606 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=32/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,678 of 678},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=30} -13:18:54.606 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:54.606 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:54.606 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:54.606 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:54.606 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "7dc3e678-e7ee-4d90-b520-ac4e94a1e9c9",[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/login",[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "POST",[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : {[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "application/json"[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "bodyPatterns" : [ {[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " } ][\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 200,[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : "application/json"[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "7dc3e678-e7ee-4d90-b520-ac4e94a1e9c9",[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "Started",[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "newScenarioState" : "logged"[\r][\n]" -13:18:54.607 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:54.607 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 678 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,678 of 678},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=31} -13:18:54.607 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=800 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:54.607 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:54.607 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2bd0ef59] ([p=122,l=122,c=8192,r=0],[p=678,l=678,c=32768,r=0],false)@COMMITTED -13:18:54.607 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.607 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@24a7f927{null} -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@24a7f927{null} -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@57561f30] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@57561f30] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@57561f30] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@50786100[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:54.608 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.608 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:54.608 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,678 of 678},g=HttpGenerator@1aab1830{s=COMPLETING}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=32} -13:18:54.608 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:54.608 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:54.608 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@57561f30] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:54.608 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@29b19157 in null -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=33} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=33} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@25786f2a) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=33} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=678 -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,678 of 678} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.609 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f on ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:54.610 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.610 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/1 selected -13:18:54.610 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@3e0ed962 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.610 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:54.610 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.610 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f -13:18:54.611 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.611 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.611 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 1 keys -13:18:54.619 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.620 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.620 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:54.620 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:54.621 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:54.621 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:54.621 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:54.621 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:54.621 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 705 -13:18:54.621 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:54.621 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:54.621 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:54.621 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 705[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "07ecc0d2-7af8-40fc-bc53-65f8f8a1c55f",[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c",[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET",[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Authorization" : {[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 200,[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "body" : "{\"id\":\"4886639d-5d96-440b-b467-0b386be7969c\",\"componentInstance\":\"97feb42f-5368-48b6-9399-705a0ab1a7ab\",\"status\":\"NEW\",\"metadata\":null}",[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "headers" : {[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "Content-Type" : "application/json"[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " }[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "07ecc0d2-7af8-40fc-bc53-65f8f8a1c55f",[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "requiredScenarioState" : "logged"[\r][\n]" -13:18:54.621 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:54.621 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 1/1/1 selected -13:18:54.621 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 1 keys, 0 updates -13:18:54.622 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65036], selector=sun.nio.ch.WindowsSelectorImpl@1d61dea3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=11/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.622 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=11/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.622 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=11/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:54.622 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0} tryExecute EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:54.6223235+02:00 -13:18:54.622 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0}@529b3944 offer EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:54.6223235+02:00 -13:18:54.622 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1} startReservedThread p=1 -13:18:54.622 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7a292eba{s=0/1,p=1}@7d5f4549 startThread=0 -13:18:54.622 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7a292eba{s=0/1,p=1}@7d5f4549 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}] -13:18:54.622 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@7d5f4549 started -13:18:54.622 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@7d5f4549 waiting -13:18:54.622 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:54.6223235+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=12/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:54.622 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1}@529b3944 task=EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:54.6223235+02:00 -13:18:54.622 [qtp853429147-110] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=12/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.622 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:54.6223235+02:00 tryProduce true -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=12/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.623 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:54.623 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 900 HeapByteBuffer@b72e34d[p=0,l=900,c=8192,r=900]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 900 HeapByteBuffer@b72e34d[p=0,l=900,c=8192,r=900]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.623 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.623 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 1 keys -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=900,c=8192,r=900]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=900,c=8192,r=900]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:54.623 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 705 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 705},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 705} -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.624 [qtp853429147-110] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 705},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parse HeapByteBuffer@b72e34d[p=195,l=900,c=8192,r=705]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "07ecc0d2-7af...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@b72e34d[p=195,l=900,c=8192,r=705]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "07ecc0d2-7af...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} Content@7398b492{HeapByteBufferR@77a72e39[p=195,l=900,c=8192,r=705]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "07ecc0d2-7af...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=0,[0]=null,s=STREAM] addContent Content@7398b492{HeapByteBufferR@77a72e39[p=195,l=900,c=8192,r=705]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "07ecc0d2-7af...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,705 of 705},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parsed false HttpParser{s=END,705 of 705} -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=705,q=1,[0]=EOF,s=STREAM] read 705 from Content@7398b492{HeapByteBufferR@77a72e39[p=900,l=900,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,705 of 705},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:54.625 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.648 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@35dcea5[p=0,l=705,c=8192,r=705]={<<<{\r\n "id" : "07ecc0d2-7af...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:54.648 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@2018100a[p=0,l=705,c=32768,r=705]={<<<{\r\n "id" : "07ecc0d2-7af...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.648 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@2018100a[p=0,l=705,c=32768,r=705]={<<<{\r\n "id" : "07ecc0d2-7af...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@24a7f927{null} -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=25} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d45fe11] (null,[p=0,l=705,c=32768,r=705],false)@START -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@2018100a[p=0,l=705,c=32768,r=705]={<<<{\r\n "id" : "07ecc0d2-7af...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d45fe11] ([p=0,l=122,c=8192,r=122],[p=0,l=705,c=32768,r=705],false)@COMMITTED -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@b72e34d[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@2018100a[p=0,l=705,c=32768,r=705]={<<<{\r\n "id" : "07ecc0d2-7af...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=26/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,705 of 705},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=25} -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 705 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,705 of 705},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=25} -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=827 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:54.649 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4d45fe11] ([p=122,l=122,c=8192,r=0],[p=705,l=705,c=32768,r=0],false)@COMMITTED -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@24a7f927{null} -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@24a7f927{null} -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "2C1[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "07ecc0d2-7af8-40fc-bc53-65f8f8a1c55f",[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c",[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "GET",[\r][\n]" -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@528a41e6] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@528a41e6] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Authorization" : {[\r][\n]" -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@528a41e6] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "equalTo" : "Bearer someToken"[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@50786100[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 200,[\r][\n]" -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "body" : "{\"id\":\"4886639d-5d96-440b-b467-0b386be7969c\",\"componentInstance\":\"97feb42f-5368-48b6-9399-705a0ab1a7ab\",\"status\":\"NEW\",\"metadata\":null}",[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "headers" : {[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "Content-Type" : "application/json"[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " }[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "07ecc0d2-7af8-40fc-bc53-65f8f8a1c55f",[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requiredScenarioState" : "logged"[\r][\n]" -13:18:54.650 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,705 of 705},g=HttpGenerator@1aab1830{s=COMPLETING}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=26} -13:18:54.650 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:54.650 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:54.650 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:54.650 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@528a41e6] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:54.650 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@29b19157 in null -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=27} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=27} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@59d38116) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=27} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=705 -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.651 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,705 of 705} -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:54.651 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.652 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.652 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.652 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.652 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:54.652 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:54.652 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:54.652 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:54.652 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.652 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:54.653 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.653 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.653 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:54.653 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.653 [qtp853429147-110] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.653 [qtp853429147-110] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.653 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.653 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f on ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:54.653 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:54.653 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:54.654 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/1 selected -13:18:54.654 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:54.654 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.654 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f -13:18:54.654 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.654 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.654 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 1 keys -13:18:54.655 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.655 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@1799b5d3 size 1 > capacity -13:18:54.656 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@7a292eba{s=1/1,p=0}@1799b5d3 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.664 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [38be82] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c -13:18:54.763 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:54.763 [reactor-http-nio-4] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xec8c3365] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:54.815 [qtp1044854934-104] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1044854934-104-acceptor-0@1dbb6a3a-NetworkTrafficServerConnector@382678b1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1044854934]@3e473896{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:54.815 [qtp1044854934-104] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1044854934-104,5,main] exited for QueuedThreadPool[qtp1044854934]@3e473896{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:54.863 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:54.863 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:54.863 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:54.863 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:54.863 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:54.864 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:54.864 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, method=GET} -13:18:54.864 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:54.865 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:54.867 [qtp853429147-113-acceptor-1@3526903a-NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@5c64dd2a on ManagedSelector@5455ce7b{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:54.867 [qtp853429147-113-acceptor-1@3526903a-NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5455ce7b{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:54.868 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken with none selected -13:18:54.868 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken up from select, 0/0/0 selected -13:18:54.868 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 processing 0 keys, 1 updates -13:18:54.868 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.868 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@5c64dd2a -13:18:54.868 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@5c64dd2a startThread=0 -13:18:54.868 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.868 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 waiting with 1 keys -13:18:54.868 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@5c64dd2a in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.868 [qtp853429147-116] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:54.868 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.869 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:54.869 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.869 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.869 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.869 [qtp853429147-116] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@763b5934{AC.ReadCB@6e8d2e3a{HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.869 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.869 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@2e00b540 on ManagedSelector@5455ce7b{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:54.869 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5455ce7b{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken with none selected -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken up from select, 0/0/1 selected -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 processing 0 keys, 1 updates -13:18:54.870 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@2e00b540 -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.870 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@5c64dd2a in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 waiting with 1 keys -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken up from select, 1/1/1 selected -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 processing 1 keys, 0 updates -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65037], selector=sun.nio.ch.WindowsSelectorImpl@69ec93f7, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:54.870 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0} tryExecute EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.8702867+02:00 -13:18:54.871 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0}@7d5f4549 offer EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.8702867+02:00 -13:18:54.871 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1} startReservedThread p=1 -13:18:54.871 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7a292eba{s=0/1,p=1}@6314f887 startThread=0 -13:18:54.871 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:54.8712867+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:54.871 [qtp853429147-117] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@763b5934{AC.ReadCB@6e8d2e3a{HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.871 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.871 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 195 HeapByteBuffer@b72e34d[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 195 HeapByteBuffer@b72e34d[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:54.872 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c on HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=1} -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=1} -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=1} -13:18:54.873 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1}@7d5f4549 task=EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:54.8732905+02:00 -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c on HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=1} -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.873 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:54.8732905+02:00 tryProduce true -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c)@26166a81 in null -13:18:54.873 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7a292eba{s=0/1,p=1}@6314f887 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}] -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:54.873 [qtp853429147-117] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@2b68269f for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4 -13:18:54.908 [qtp853429147-117] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:54.908 [qtp853429147-117] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=37/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=37} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=37/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=37} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=37} -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=37} -13:18:54.909 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@17faadf8[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:54.873 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:54.914 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.914 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=42/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=42} -13:18:54.914 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 waiting with 1 keys -13:18:54.873 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@6314f887 started -13:18:54.919 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=47/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=47} parsed false HttpParser{s=END,0 of -1} -13:18:54.919 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=47/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=47} -13:18:54.919 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@6314f887 waiting -13:18:54.919 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.924 [qtp853429147-117] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@536ebf40 exclude by status 401 -13:18:54.924 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@463995ce{null} -13:18:54.925 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c on HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=52} -401 null HTTP/1.1 -Matched-Stub-Id: 8182e000-de79-4133-9739-53ffeddc63f0 - - -13:18:54.925 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ed8f24c] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:54.925 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=401,h=1,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:54.925 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 8182e000-de79-4133-9739-53ffeddc63f0 - - -13:18:54.925 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:54.925 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ed8f24c] ([p=0,l=145,c=8192,r=145],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:54.925 [qtp853429147-117] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@486ad468{IDLE}->null [HeapByteBuffer@b72e34d[p=0,l=145,c=8192,r=145]={<<>>host:8080...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.925 [qtp853429147-117] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@486ad468{WRITING}->null:IDLE-->WRITING -13:18:54.925 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 145 NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=54/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=COMMITTED}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=53} -13:18:54.926 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Matched-Stub-Id=8182e000-de79-4133-9739-53ffeddc63f0, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:54.926 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:54.926 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [38be82] Response 401 UNAUTHORIZED -13:18:54.926 [qtp853429147-117] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=145 remaining=0 WriteFlusher@486ad468{WRITING}->null -13:18:54.926 [qtp853429147-117] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@486ad468{IDLE}->null:WRITING-->IDLE -13:18:54.926 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=HTTP/1.1{s=401,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ed8f24c] ([p=145,l=145,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:54.926 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.926 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@463995ce{null} -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@463995ce{null} -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4277af4e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4277af4e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4277af4e] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@486ad468{IDLE}->null [HeapByteBuffer@50786100[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@486ad468{WRITING}->null:IDLE-->WRITING -13:18:54.927 [reactor-http-nio-4] DEBUG reactor.netty.channel.FluxReceive - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 5 NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=COMPLETING}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=55} -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=5 remaining=0 WriteFlusher@486ad468{WRITING}->null -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@486ad468{IDLE}->null:WRITING-->IDLE -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4277af4e] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=55} -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@8ea1132{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=55} -13:18:54.927 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@16d69d17) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@8ea1132{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@8ea1132{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@8ea1132{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=56} -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c written=0 -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@8ea1132{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.928 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.928 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@763b5934{AC.ReadCB@6e8d2e3a{HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.929 [reactor-http-nio-4] INFO com.bi.edp.configuration_stack.adapter.client.forwarder.ForwarderClient - ForwarderClient unauthorized, trying to log in -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@2e00b540 on ManagedSelector@5455ce7b{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5455ce7b{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.929 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@545fcf48 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.931 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [247993a3] HTTP POST http://localhost:8080/api/v0/components/login -13:18:54.932 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2] Created a new pooled channel, now 2 active connections and 0 inactive connections -13:18:54.932 [reactor-http-nio-4] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xe2094bb2] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:54.932 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:54.932 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:54.933 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:54.933 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:54.933 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:54.933 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Channel cleaned, now 1 active connections and 1 inactive connections -13:18:54.934 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:54.934 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 1 inactive connections -13:18:54.934 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:54.935 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:54.935 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:54.935 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:54.935 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/login, method=POST} -13:18:54.936 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:54.936 [reactor-http-nio-4] DEBUG org.springframework.core.codec.CharSequenceEncoder - [247993a3] Writing "{"password":"123456","username":"catalogClientApi"}" -13:18:54.938 [qtp853429147-113-acceptor-1@3526903a-NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@585b427e on ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:54.938 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:54.938 [qtp853429147-113-acceptor-1@3526903a-NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:54.938 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:54.938 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/1 selected -13:18:54.938 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:54.938 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.938 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@585b427e -13:18:54.938 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@585b427e startThread=0 -13:18:54.938 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.938 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 2 keys -13:18:54.938 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@585b427e in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.939 [qtp853429147-116] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:54.940 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.940 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}-> -13:18:54.940 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.940 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.940 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.940 [qtp853429147-116] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@1cf0ba25{AC.ReadCB@1e2ead4{HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.940 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.941 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@2925415e on ManagedSelector@2e03eae5{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:54.941 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/2 selected -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@2925415e -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 2 keys -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 1/1/2 selected -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 1 keys, 0 updates -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65038], selector=sun.nio.ch.WindowsSelectorImpl@1d61dea3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.941 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.941 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@585b427e in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:54.941 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0} tryExecute EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:54.9412809+02:00 -13:18:54.942 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0}@6314f887 offer EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:54.9422864+02:00 -13:18:54.942 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1} startReservedThread p=1 -13:18:54.942 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7a292eba{s=0/1,p=1}@72ea7b9 startThread=0 -13:18:54.942 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:18:54.9422864+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:54.942 [qtp853429147-111] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@1cf0ba25{AC.ReadCB@1e2ead4{HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.942 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7a292eba{s=0/1,p=1}@72ea7b9 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}] -13:18:54.942 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@72ea7b9 started -13:18:54.942 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@72ea7b9 waiting -13:18:54.942 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1}@6314f887 task=EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:54.9422864+02:00 -13:18:54.942 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.942 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:54.9422864+02:00 tryProduce true -13:18:54.942 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:54.942 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.942 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 220 HeapByteBuffer@b72e34d[p=0,l=220,c=8192,r=220]={<<>>8-40fc-bc...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.942 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.942 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 2 keys -13:18:54.942 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 220 HeapByteBuffer@b72e34d[p=0,l=220,c=8192,r=220]={<<>>8-40fc-bc...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=220,c=8192,r=220]={<<>>8-40fc-bc...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=220,c=8192,r=220]={<<>>8-40fc-bc...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/login on HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -POST //localhost:8080/api/v0/components/login HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Content-Length: 51 - - -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} parsed true HttpParser{s=CONTENT,0 of 51} -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/login HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:54.943 [qtp853429147-111] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/login on HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=0} -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/login)@2fe77ea1 in null -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/login @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/login @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/login|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=CONTENT,0 of 51},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=1} parse HeapByteBuffer@b72e34d[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>8-40fc-bc...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.944 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@b72e34d[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>8-40fc-bc...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} Content@4fabd663{HeapByteBufferR@38b77172[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>8-40fc-bc...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@4ad61ab2[c=0,q=0,[0]=null,s=STREAM] addContent Content@4fabd663{HeapByteBufferR@38b77172[p=169,l=220,c=8192,r=51]={POST /api... 51\r\n\r\n<<<{"password":"123456","use...me":"catalogClientApi"}>>>8-40fc-bc...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@4ad61ab2[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=END,51 of 51},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} parsed false HttpParser{s=END,51 of 51} -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@4ad61ab2[c=51,q=1,[0]=EOF,s=STREAM] read 51 from Content@4fabd663{HeapByteBufferR@38b77172[p=220,l=220,c=8192,r=0]={POST /api...ntApi"}<<<>>>8-40fc-bc...\x00\x00\x00\x00\x00\x00\x00}} -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=END,51 of 51},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=2} -13:18:54.945 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:54.949 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@5e50673f[p=0,l=21,c=8192,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:54.949 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@4f59ba58[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.949 [qtp853429147-111] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/login)@2fe77ea1 -13:18:54.949 [qtp853429147-111] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@4c666e20 exclude no deflater -13:18:54.949 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@4f59ba58[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@361fee94{null} -13:18:54.949 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/login on HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=6} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: 7dc3e678-e7ee-4d90-b520-ac4e94a1e9c9 -Vary: Accept-Encoding, User-Agent - - -13:18:54.950 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@6bab1ef7[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@69a2f2a0] (null,[p=0,l=21,c=32768,r=21],false)@START -13:18:54.950 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@4f59ba58[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.950 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: 7dc3e678-e7ee-4d90-b520-ac4e94a1e9c9 -Vary: Accept-Encoding, User-Agent - - -13:18:54.950 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:54.950 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6bab1ef7[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@69a2f2a0] ([p=0,l=206,c=8192,r=206],[p=0,l=21,c=32768,r=21],false)@COMMITTED -13:18:54.950 [qtp853429147-111] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@16ca86da{IDLE}->null [HeapByteBuffer@b72e34d[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@4f59ba58[p=0,l=21,c=32768,r=21]={<<<{"token":"someToken"}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.950 [qtp853429147-111] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@16ca86da{WRITING}->null:IDLE-->WRITING -13:18:54.950 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=END,51 of 51},g=HttpGenerator@757f013e{s=COMMITTED}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=7} -13:18:54.951 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=7dc3e678-e7ee-4d90-b520-ac4e94a1e9c9, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:54.951 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:54.952 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [247993a3] Response 200 OK -13:18:54.952 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 21 NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=END,51 of 51},g=HttpGenerator@757f013e{s=COMMITTED}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=9} -13:18:54.952 [qtp853429147-111] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=227 remaining=0 WriteFlusher@16ca86da{WRITING}->null -13:18:54.952 [qtp853429147-111] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@16ca86da{IDLE}->null:WRITING-->IDLE -13:18:54.952 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@6bab1ef7[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@69a2f2a0] ([p=206,l=206,c=8192,r=0],[p=21,l=21,c=32768,r=0],false)@COMMITTED -13:18:54.952 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.952 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@361fee94{null} -13:18:54.952 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@361fee94{null} -13:18:54.952 [reactor-http-nio-4] DEBUG reactor.netty.channel.FluxReceive - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:54.952 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@6bab1ef7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5f68a1d9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.953 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@6bab1ef7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5f68a1d9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.953 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6bab1ef7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5f68a1d9] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:54.953 [qtp853429147-111] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@16ca86da{IDLE}->null [HeapByteBuffer@50786100[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:54.953 [qtp853429147-111] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@16ca86da{WRITING}->null:IDLE-->WRITING -13:18:54.953 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=END,51 of 51},g=HttpGenerator@757f013e{s=COMPLETING}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=10} -13:18:54.953 [qtp853429147-111] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@16ca86da{WRITING}->null -13:18:54.953 [qtp853429147-111] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@16ca86da{IDLE}->null:WRITING-->IDLE -13:18:54.953 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@6bab1ef7[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5f68a1d9] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:54.953 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=11} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2a63e06d{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@2a63e06d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/login,age=11} -13:18:54.954 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@6c874065) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@2a63e06d{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2a63e06d{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@2a63e06d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/login,age=11} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/login written=21 -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@2a63e06d{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:54.954 [reactor-http-nio-4] DEBUG org.springframework.core.codec.StringDecoder - [247993a3] Decoded "{"token":"someToken"}" -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,51 of 51} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:54.954 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.955 [qtp853429147-111] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.955 [qtp853429147-111] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@1cf0ba25{AC.ReadCB@1e2ead4{HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:54.955 [reactor-http-nio-4] INFO com.bi.edp.configuration_stack.adapter.client.forwarder.ForwarderClient - Forwarder client logged successfully -13:18:54.955 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.955 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@2925415e on ManagedSelector@2e03eae5{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:54.955 [qtp853429147-111] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:54.955 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:54.955 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:54.955 [qtp853429147-111] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:54.955 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:54.955 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@529b3944 size 1 > capacity -13:18:54.955 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/2 selected -13:18:54.955 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@7a292eba{s=1/1,p=0}@529b3944 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:54.955 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:54.955 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:54.955 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.955 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@2925415e -13:18:54.955 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/login, connection=PooledConnection{channel=[id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:54.955 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:54.955 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.955 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.955 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 2 keys -13:18:54.955 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:54.991 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken with none selected -13:18:54.991 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken up from select, 0/0/1 selected -13:18:54.991 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 processing 0 keys, 1 updates -13:18:54.991 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:54.991 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@2e00b540 -13:18:54.991 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=62/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:54.992 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:54.992 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 waiting with 1 keys -13:18:55.174 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager is shutting down -13:18:55.174 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager shut down -13:18:56.215 [parallel-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [38be82] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c -13:18:56.217 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Channel acquired, now 1 active connections and 1 inactive connections -13:18:56.217 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:56.217 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:56.217 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, method=GET} -13:18:56.217 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:56.218 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken up from select, 1/1/1 selected -13:18:56.219 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 processing 1 keys, 0 updates -13:18:56.219 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65037], selector=sun.nio.ch.WindowsSelectorImpl@69ec93f7, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1289/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.219 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1290/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.219 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1290/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:56.219 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0} tryExecute EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:56.2190992+02:00 -13:18:56.219 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0}@72ea7b9 offer EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:56.2190992+02:00 -13:18:56.220 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1} startReservedThread p=1 -13:18:56.220 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7a292eba{s=0/1,p=1}@1fb63bb3 startThread=0 -13:18:56.220 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:56.2201048+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1290/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:56.220 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:56.220 [qtp853429147-112] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@763b5934{AC.ReadCB@6e8d2e3a{HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1291/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.220 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1291/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:56.220 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 204 HeapByteBuffer@b72e34d[p=0,l=204,c=8192,r=204]={<<>>\r\nlogClie...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.220 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 204 HeapByteBuffer@b72e34d[p=0,l=204,c=8192,r=204]={<<>>\r\nlogClie...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=204,c=8192,r=204]={<<>>\r\nlogClie...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=204,c=8192,r=204]={<<>>\r\nlogClie...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:56.221 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1}@72ea7b9 task=EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:56.2211026+02:00 -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> IN_VALUE -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: ReactorNetty/0.9.7.RELEASE --> FIELD -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:56.221 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:56.2211026+02:00 tryProduce true -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:56.221 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7a292eba{s=0/1,p=1}@1fb63bb3 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}] -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:56.221 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@1fb63bb3 started -13:18:56.221 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@1fb63bb3 waiting -13:18:56.221 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c on HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer someToken - - -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=0} -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=0} -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=0} -13:18:56.221 [qtp853429147-112] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c on HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=0} -13:18:56.222 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:56.222 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c)@26166a81 in null -13:18:56.222 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:56.222 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:56.222 [qtp853429147-112] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.222 [qtp853429147-112] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.222 [qtp853429147-112] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:56.222 [qtp853429147-112] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=2} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=2} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:56.221 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=2} -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:56.223 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CONTENT_END,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=2} -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=2} -13:18:56.223 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 waiting with 1 keys -13:18:56.223 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@17faadf8[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:56.224 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=3} parsed false HttpParser{s=END,0 of -1} -13:18:56.224 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=3} -13:18:56.224 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:56.225 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@c553924[p=0,l=135,c=8192,r=135]={<<<{"id":"4886639d-5d96-440b...:"NEW","metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:56.226 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush HeapByteBuffer@4f59ba58[p=0,l=135,c=32768,r=135]={<<<{"id":"4886639d-5d96-440b...:"NEW","metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.226 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c)@26166a81 -13:18:56.226 [qtp853429147-112] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@294b2ad0 exclude no deflater -13:18:56.226 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@4f59ba58[p=0,l=135,c=32768,r=135]={<<<{"id":"4886639d-5d96-440b...:"NEW","metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@463995ce{null} -13:18:56.226 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c on HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=5} -200 null HTTP/1.1 -Content-Type: application/json -Matched-Stub-Id: 07ecc0d2-7af8-40fc-bc53-65f8f8a1c55f -Vary: Accept-Encoding, User-Agent - - -13:18:56.254 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@201e7f89] (null,[p=0,l=135,c=32768,r=135],false)@START -13:18:56.254 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=3,cl=-1} last=false content=HeapByteBuffer@4f59ba58[p=0,l=135,c=32768,r=135]={<<<{"id":"4886639d-5d96-440b...:"NEW","metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.254 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json -Matched-Stub-Id: 07ecc0d2-7af8-40fc-bc53-65f8f8a1c55f -Vary: Accept-Encoding, User-Agent - - -13:18:56.254 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:56.254 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@201e7f89] ([p=0,l=206,c=8192,r=206],[p=0,l=135,c=32768,r=135],false)@COMMITTED -13:18:56.254 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@486ad468{IDLE}->null [HeapByteBuffer@b72e34d[p=0,l=206,c=8192,r=206]={<<>>logClient...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@4f59ba58[p=0,l=135,c=32768,r=135]={<<<{"id":"4886639d-5d96-440b...:"NEW","metadata":null}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:56.254 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@486ad468{WRITING}->null:IDLE-->WRITING -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 206 NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=34/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=COMMITTED}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=34} -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 135 NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=COMMITTED}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=34} -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=341 remaining=0 WriteFlusher@486ad468{WRITING}->null -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@486ad468{IDLE}->null:WRITING-->IDLE -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=HTTP/1.1{s=200,h=3,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@201e7f89] ([p=206,l=206,c=8192,r=0],[p=135,l=135,c=32768,r=0],false)@COMMITTED -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:56.255 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Received response (auto-read:false) : [Content-Type=application/json, Matched-Stub-Id=07ecc0d2-7af8-40fc-bc53-65f8f8a1c55f, Vary=Accept-Encoding, User-Agent, Transfer-Encoding=chunked, Server=Jetty(9.4.28.v20200408)] -13:18:56.255 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [response_received]) -13:18:56.255 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [38be82] Response 200 OK -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@463995ce{null} -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@463995ce{null} -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@e5bb39a] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:56.255 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@e5bb39a] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:56.256 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@e5bb39a] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:56.256 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@486ad468{IDLE}->null [HeapByteBuffer@50786100[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:56.256 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@486ad468{WRITING}->null:IDLE-->WRITING -13:18:56.256 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=END,0 of -1},g=HttpGenerator@804fda9{s=COMPLETING}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=35} -13:18:56.256 [reactor-http-nio-4] DEBUG reactor.netty.channel.FluxReceive - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Subscribing inbound receiver [pending: 0, cancelled:false, inboundDone: false] -13:18:56.256 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@486ad468{WRITING}->null -13:18:56.256 [qtp853429147-112] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@486ad468{IDLE}->null:WRITING-->IDLE -13:18:56.256 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2c8f1f48[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@e5bb39a] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:56.257 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientOperations - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Received last HTTP packet -13:18:56.257 [reactor-http-nio-4] DEBUG org.springframework.http.codec.json.Jackson2JsonDecoder - [38be82] Decoded [ProvisioningJobResponse(id=4886639d-5d96-440b-b467-0b386be7969c, componentInstanceId=97feb42f-5368-4 (truncated)...] -13:18:56.257 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:56.257 [qtp853429147-112] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=36} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@8ea1132{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@8ea1132{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=37} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@2b62376c) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@8ea1132{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@8ea1132{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@8ea1132{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c,age=37} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c written=135 -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@8ea1132{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.258 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@763b5934{AC.ReadCB@6e8d2e3a{HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@2e00b540 on ManagedSelector@5455ce7b{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5455ce7b{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:56.259 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken with none selected -13:18:56.259 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken up from select, 0/0/1 selected -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:56.259 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 processing 0 keys, 1 updates -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@7d5f4549 size 1 > capacity -13:18:56.259 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.259 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@2e00b540 -13:18:56.259 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.259 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.259 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 waiting with 1 keys -13:18:56.259 [qtp853429147-112] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@7a292eba{s=1/1,p=0}@7d5f4549 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.307 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [response_completed]) -13:18:56.308 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Removed handler: ReadTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:56.308 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Removed handler: WriteTimeoutHandler, pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:56.308 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/4886639d-5d96-440b-b467-0b386be7969c, connection=PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:56.308 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Releasing channel -13:18:56.308 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 - R:localhost/127.0.0.1:8080] Channel cleaned, now 0 active connections and 2 inactive connections -13:18:56.309 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:56.309 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:56.309 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:56.309 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:56.311 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:56.311 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:56.311 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:56.311 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/requests/count HTTP/1.1 -13:18:56.311 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 89 -13:18:56.311 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:56.311 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:56.311 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:56.311 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 89[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/provision-adapters/jobs/{jobId}",[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:56.311 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:56.311 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 1/1/2 selected -13:18:56.311 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 1 keys, 0 updates -13:18:56.311 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65036], selector=sun.nio.ch.WindowsSelectorImpl@1d61dea3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1658/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.312 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1658/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.312 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1658/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:56.312 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0} tryExecute EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:56.312089+02:00 -13:18:56.312 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0}@1fb63bb3 offer EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:56.312089+02:00 -13:18:56.312 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1} startReservedThread p=1 -13:18:56.312 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7a292eba{s=0/1,p=1}@3416546f startThread=0 -13:18:56.312 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:18:56.312089+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1659/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:56.312 [qtp853429147-110] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1659/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.312 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7a292eba{s=0/1,p=1}@3416546f in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}] -13:18:56.312 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@3416546f started -13:18:56.313 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@3416546f waiting -13:18:56.312 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1}@1fb63bb3 task=EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:56.312089+02:00 -13:18:56.312 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1659/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 289 HeapByteBuffer@b72e34d[p=0,l=289,c=8192,r=289]={<<>>ponents/p...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.313 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:56.3130978+02:00 tryProduce true -13:18:56.313 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 289 HeapByteBuffer@b72e34d[p=0,l=289,c=8192,r=289]={<<>>ponents/p...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=289,c=8192,r=289]={<<>>ponents/p...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=289,c=8192,r=289]={<<>>ponents/p...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:56.313 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:56.313 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:56.313 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 89},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -13:18:56.314 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 2 keys -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 89 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 89},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} parsed true HttpParser{s=CONTENT,0 of 89} -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 89},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} parse HeapByteBuffer@b72e34d[p=200,l=289,c=8192,r=89]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>ponents/p...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:56.314 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@b72e34d[p=200,l=289,c=8192,r=89]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>ponents/p...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} Content@5641918a{HeapByteBufferR@56c47fd5[p=200,l=289,c=8192,r=89]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>ponents/p...\x00\x00\x00\x00\x00\x00\x00}} -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=0,[0]=null,s=STREAM] addContent Content@5641918a{HeapByteBufferR@56c47fd5[p=200,l=289,c=8192,r=89]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>ponents/p...\x00\x00\x00\x00\x00\x00\x00}} -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,89 of 89},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parsed false HttpParser{s=END,89 of 89} -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=89,q=1,[0]=EOF,s=STREAM] read 89 from Content@5641918a{HeapByteBufferR@56c47fd5[p=289,l=289,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>ponents/p...\x00\x00\x00\x00\x00\x00\x00}} -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,89 of 89},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:56.315 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@135a8f2a[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@2018100a[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@2018100a[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@24a7f927{null} -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=5} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@15690402] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@2018100a[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@15690402] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@b72e34d[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@2018100a[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:56.318 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:56.319 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]" -13:18:56.319 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:56.319 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:56.319 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:56.319 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:56.319 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "38[\r][\n]" -13:18:56.319 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 200 OK -13:18:56.319 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:56.319 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:56.319 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:56.319 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:56.319 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,89 of 89},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=6} -13:18:56.320 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:56.320 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "count" : 0,[\r][\n]" -13:18:56.320 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requestJournalDisabled" : false[\r][\n]" -13:18:56.320 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,89 of 89},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=7} -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@15690402] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@24a7f927{null} -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@24a7f927{null} -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4f7e0ae4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4f7e0ae4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4f7e0ae4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@50786100[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:56.320 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:56.321 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:56.321 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:56.321 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,89 of 89},g=HttpGenerator@1aab1830{s=COMPLETING}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=8} -13:18:56.321 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:56.321 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4f7e0ae4] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:56.321 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@29b19157 in null -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=8} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=8} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@3ab1fe09) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=4,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=8} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,89 of 89} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.321 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.322 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f on ManagedSelector@2e03eae5{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0}@6314f887 size 1 > capacity -13:18:56.322 [qtp853429147-110] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@7a292eba{s=1/1,p=0}@6314f887 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.322 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:56.323 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:56.323 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:56.323 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:56.323 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/2 selected -13:18:56.323 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:56.323 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.323 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@4be5692f -13:18:56.323 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.323 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.323 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 2 keys -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[read] I/O error: Read timed out" -13:18:56.324 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:18:56.324 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:56.324 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:56.324 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/requests/count HTTP/1.1 -13:18:56.324 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 63 -13:18:56.324 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:56.324 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:56.324 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:56.324 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 63[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:56.324 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:56.324 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 1/1/2 selected -13:18:56.324 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 1 keys, 0 updates -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65036], selector=sun.nio.ch.WindowsSelectorImpl@1d61dea3, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=0} tryExecute EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:56.3250919+02:00 -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0}@3416546f offer EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/PRODUCING/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:56.3250919+02:00 -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=1} startReservedThread p=1 -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7a292eba{s=0/1,p=1}@3f07bae4 startThread=0 -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=4]@2020-09-25T13:18:56.3250919+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.325 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 263 HeapByteBuffer@b72e34d[p=0,l=263,c=8192,r=263]={<<>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} filled 263 HeapByteBuffer@b72e34d[p=0,l=263,c=8192,r=263]={<<>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=263,c=8192,r=263]={<<>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=263,c=8192,r=263]={<<>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 63 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} parsed true HttpParser{s=CONTENT,0 of 63} -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:56.326 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=0} -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,AVAILABLE} -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} parse HeapByteBuffer@b72e34d[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@b72e34d[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} Content@32fc2acb{HeapByteBufferR@2bc49f23[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00}} -13:18:56.327 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=0,[0]=null,s=STREAM] addContent Content@32fc2acb{HeapByteBufferR@2bc49f23[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00}} -13:18:56.328 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:56.328 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:56.328 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:56.328 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:56.328 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:56.328 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,63 of 63},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} parsed false HttpParser{s=END,63 of 63} -13:18:56.328 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@58fced3f[c=63,q=1,[0]=EOF,s=STREAM] read 63 from Content@32fc2acb{HeapByteBufferR@2bc49f23[p=263,l=263,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>}",\r\n "m...\x00\x00\x00\x00\x00\x00\x00}} -13:18:56.328 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,63 of 63},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=2} -13:18:56.328 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@28e804b4[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@2018100a[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@2018100a[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@24a7f927{null} -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=5} -200 null HTTP/1.1 -Content-Type: application/json - - -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2aba4bd7] (null,[p=0,l=56,c=32768,r=56],false)@START -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@2018100a[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2aba4bd7] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@b72e34d[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@2018100a[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:56.331 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,63 of 63},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=5} -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,63 of 63},g=HttpGenerator@1aab1830{s=COMMITTED}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=6} -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2aba4bd7] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@24a7f927{null} -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@24a7f927{null} -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@79c38639] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@79c38639] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@79c38639] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3b1c99a4{IDLE}->null [HeapByteBuffer@50786100[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{WRITING}->null:IDLE-->WRITING -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=END,63 of 63},g=HttpGenerator@1aab1830{s=COMPLETING}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=5,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=6} -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@3b1c99a4{WRITING}->null -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3b1c99a4{IDLE}->null:WRITING-->IDLE -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@1b8d6d99[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@79c38639] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:56.332 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@21af4110{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@29b19157 in null -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@6e64e885{/,null,AVAILABLE} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=7} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=5,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=7} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@76f133a5) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@2bca9660{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2bca9660{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=5,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=7} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@2bca9660{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,63 of 63} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:56.333 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@b72e34d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.334 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 2 keys -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 200 OK[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "38[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "count" : 0,[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "requestJournalDisabled" : false[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:56.334 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:56.335 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 200 OK -13:18:56.335 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:56.335 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:56.335 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:56.335 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:56.335 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:56.335 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:56.335 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:56.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@338febd{STARTED}[9.4.28.v20200408] -13:18:56.336 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@338febd{STOPPING}[9.4.28.v20200408] -13:18:56.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.336 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@2e03eae5{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:56.336 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@534421c2 on ManagedSelector@2e03eae5{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:56.337 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STOPPING} id=1 keys=2 selected=0 updates=1 -13:18:56.338 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:56.338 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/2 selected -13:18:56.338 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:56.338 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.338 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@534421c2 -13:18:56.338 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@2e03eae5{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:56.338 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1383/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.338 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1383/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=1383/30000}{io=1/1,kio=1,kro=1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@1cf0ba25{AC.ReadCB@1e2ead4{HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=1384/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@1e2ead4[p=HttpParser{s=START,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1384/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@1e2ead4[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@2e03eae5{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1e54546b startThread=0 -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.339 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=5/30000}{io=1/1,kio=1,kro=1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.340 [qtp853429147-116] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@34e39045{AC.ReadCB@4c6840a2{HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=5/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4c6840a2[p=HttpParser{s=START,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.340 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:56.340 [qtp853429147-116] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:56.340 [qtp853429147-116] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=5/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4c6840a2[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:56.340 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@2e03eae5{STOPPING} id=1 keys=2 selected=0 updates=0 -13:18:56.340 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@66c84085 startThread=1 -13:18:56.340 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-119,5,main] -13:18:56.340 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.340 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xe2094bb2, L:/127.0.0.1:65038 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xe2094bb2, L:/127.0.0.1:65038 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:56.340 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 waiting with 2 keys -13:18:56.340 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@24733d8 on ManagedSelector@2e03eae5{STOPPING} id=1 keys=0 selected=0 updates=0 -13:18:56.340 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2e03eae5{STOPPING} id=1 keys=0 selected=0 updates=1 -13:18:56.341 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken with none selected -13:18:56.341 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 woken up from select, 0/0/0 selected -13:18:56.341 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1d61dea3 processing 0 keys, 1 updates -13:18:56.341 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.341 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@24733d8 -13:18:56.341 [qtp853429147-116] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.341 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@1fb63bb3 waiting -13:18:56.341 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=9<=14,i=0,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=1}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:56.3410809+02:00 -13:18:56.341 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=9<=14,i=0,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=1}][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:56.3410809+02:00 -13:18:56.341 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@2e03eae5{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:56.341 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@5455ce7b{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:56.341 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@6f2ec19a on ManagedSelector@5455ce7b{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:56.341 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5455ce7b{STOPPING} id=0 keys=1 selected=0 updates=1 -13:18:56.341 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken with none selected -13:18:56.341 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken up from select, 0/0/1 selected -13:18:56.341 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 processing 0 keys, 1 updates -13:18:56.341 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.341 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@6f2ec19a -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@5455ce7b{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=82/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=82/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=82/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@763b5934{AC.ReadCB@6e8d2e3a{HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=83/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6e8d2e3a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=83/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@5455ce7b{STOPPING} id=0 keys=1 selected=0 updates=0 -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@3f354713 startThread=1 -13:18:56.342 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp853429147-120,5,main] -13:18:56.343 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.343 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 waiting with 1 keys -13:18:56.344 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xec8c3365, L:/127.0.0.1:65037 ! R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xec8c3365, L:/127.0.0.1:65037 ! R:localhost/127.0.0.1:8080]}, [disconnecting]) -13:18:56.344 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@1316f121 on ManagedSelector@5455ce7b{STOPPING} id=0 keys=0 selected=0 updates=0 -13:18:56.344 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@5455ce7b{STOPPING} id=0 keys=0 selected=0 updates=1 -13:18:56.344 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken with none selected -13:18:56.344 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 woken up from select, 0/0/0 selected -13:18:56.344 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@69ec93f7 processing 0 keys, 1 updates -13:18:56.344 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.344 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@1316f121 -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@72ea7b9 size 1 > capacity -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@7a292eba{s=1/1,p=1}@72ea7b9 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=0,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=1}] -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7a292eba{s=1/1,p=1}@3f07bae4 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=1}] -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=1/1,p=1}@3f07bae4 size 1 > capacity -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@7a292eba{s=1/1,p=0}@3f07bae4 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1e54546b in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1390/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@1e2ead4[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@1e2ead4::NetworkTrafficSocketChannelEndPoint@29fbb244{/127.0.0.1:65038<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1390/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@1e2ead4[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@757f013e{s=START}]=>HttpChannelOverHttp@63deb67{s=HttpChannelState@2a63e06d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1e54546b in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@66c84085 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=11/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4c6840a2[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@4c6840a2::NetworkTrafficSocketChannelEndPoint@64307ead{/127.0.0.1:65036<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=11/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@4c6840a2[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@1aab1830{s=START}]=>HttpChannelOverHttp@6ec815dd{s=HttpChannelState@2bca9660{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=5,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@66c84085 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.345 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@3f354713 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=4,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.346 [qtp853429147-117] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=86/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.346 [qtp853429147-117] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@6e8d2e3a::NetworkTrafficSocketChannelEndPoint@43a4a973{/127.0.0.1:65037<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=86/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@6e8d2e3a[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@804fda9{s=START}]=>HttpChannelOverHttp@6f222c79{s=HttpChannelState@8ea1132{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.346 [qtp853429147-117] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@3f354713 in QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=4,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=5,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:56.3460838+02:00 -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@377ed74f/SelectorProducer@1083d8ac/IDLE/p=false/QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=5,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:18:56.3460838+02:00 -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@5455ce7b{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@52548ac1[HTTP/1.1] -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@52548ac1[HTTP/1.1] -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@315e4d37{STARTED} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@315e4d37{STOPPED} -13:18:56.346 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@338febd{STOPPING}[9.4.28.v20200408] -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@59b9fd65{STARTED} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@59b9fd65{STOPPING} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@59b9fd65{STOPPED} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@582f7383{STARTED} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@582f7383{STOPPING} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@21af4110{STARTED,min=32,inflate=-1} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@21af4110{STOPPING,min=32,inflate=-1} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@6e64e885{/,null,SHUTDOWN} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@6e64e885{/,null,UNAVAILABLE} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@59402e4b{STARTED} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@59402e4b{STOPPING} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@59402e4b{STOPPED} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@1e482510{STARTED} -13:18:56.346 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@1e482510{STOPPING} -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-c527a6@c527a6==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-bab57a3@bab57a3==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-bab57a3@bab57a3==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6fff0d6@6fff0d6==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6fff0d6@6fff0d6==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-1e42b4e4@7b02e0a1==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-57ab5e54@8ad50151==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-57ab5e54@8ad50151==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.347 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@1e482510{STOPPED} -13:18:56.347 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@6e64e885{/,null,UNAVAILABLE} -13:18:56.398 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@6e64e885{/,null,UNAVAILABLE} -13:18:56.398 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@21af4110{STOPPED,min=32,inflate=-1} -13:18:56.398 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,SHUTDOWN} -13:18:56.398 [qtp853429147-120] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=5,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.398 [qtp853429147-119] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=5,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.398 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,UNAVAILABLE} -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@5471a02e{STARTED} -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@5471a02e{STOPPING} -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-28fc3acf@28fc3acf==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-71d5940b@7d861f86==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-4dec18aa@764b43f4==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-4dec18aa@764b43f4==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-451069dc@647dfe01==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-451069dc@647dfe01==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@5471a02e{STOPPED} -13:18:56.399 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,UNAVAILABLE} -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@5e5ac5d9{/__admin,null,UNAVAILABLE} -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@582f7383{STOPPED} -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp853429147]@32de4b9b{STARTED,8<=10<=14,i=5,r=1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp853429147]@32de4b9b{STOPPING,8<=10<=14,i=5,r=-1,q=0}[ReservedThreadExecutor@7a292eba{s=1/1,p=0}] -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@7a292eba{s=1/1,p=0} -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=0/1,p=0}@1fb63bb3 offer STOP! -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@7a292eba{s=-1/1,p=0} -13:18:56.399 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=-1/1,p=0}@1fb63bb3 task=STOP! -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.399 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=-1/1,p=0}@1fb63bb3 Exited -13:18:56.399 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@338febd{STOPPED}[9.4.28.v20200408] -13:18:56.399 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@7a292eba{s=-1/1,p=0}@1fb63bb3 in QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.399 [qtp853429147-116] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp853429147-116,5,main] exited for QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.403 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@2823e022{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:56.403 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@2aa43901[HTTP/1.1] added {HttpConfiguration@3c322614{32768/8192,8192/8192,https://:0,[]},POJO} -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{null, ()}{0.0.0.0:0} added {Server@2823e022{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@70a2b06{STOPPED},AUTO} -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@c6d76d7,POJO} -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@2aa43901[HTTP/1.1],AUTO} -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@2aa43901[HTTP/1.1] -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@2823e022{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@2823e022{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,UNAVAILABLE},MANAGED} -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@6eec4160 -13:18:56.404 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,UNAVAILABLE} added {ServletHandler@38e805a0{STOPPED},MANAGED} -13:18:56.405 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@2823e022{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@62fe5902{/,null,UNAVAILABLE},MANAGED} -13:18:56.405 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@7cc72933 -13:18:56.405 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@62fe5902{/,null,UNAVAILABLE} added {ServletHandler@339c62d8{STOPPED},MANAGED} -13:18:56.405 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@62fe5902{/,null,UNAVAILABLE} added {NotFoundHandler@3f618bae{STOPPED},MANAGED} -13:18:56.405 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@7f21ff59{STOPPED} added {o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,UNAVAILABLE},AUTO} -13:18:56.406 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STOPPED,min=32,inflate=-1} mime types IncludeExclude@2f645ffa{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@4d098ee1{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@62fe5902{/,null,UNAVAILABLE},MANAGED} -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@7f21ff59{STOPPED} added {GzipHandler@4d098ee1{STOPPED,min=32,inflate=-1},AUTO} -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@2823e022{STOPPED}[9.4.28.v20200408] added {HandlerCollection@7f21ff59{STOPPED},MANAGED} -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@2823e022{STOPPED}[9.4.28.v20200408] -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@2823e022{STARTING}[9.4.28.v20200408] added {ErrorHandler@12fb91e6{STOPPED},AUTO} -13:18:56.407 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@2823e022{STARTING}[9.4.28.v20200408] -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=0} -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] added {ReservedThreadExecutor@62506fd7{s=0/1,p=0},AUTO} -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@62506fd7{s=0/1,p=0} -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87969ms ReservedThreadExecutor@62506fd7{s=0/1,p=0} -13:18:56.407 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1834758074-121,5,main] -13:18:56.408 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1834758074-122,5,main] -13:18:56.408 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1834758074-123,5,main] -13:18:56.408 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1834758074-124,5,main] -13:18:56.408 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1834758074-125,5,main] -13:18:56.409 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1834758074-126,5,main] -13:18:56.409 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1834758074-127,5,main] -13:18:56.409 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1834758074-128,5,main] -13:18:56.409 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87971ms QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.409 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@7f21ff59{STOPPED} -13:18:56.409 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@7f21ff59{STARTING} -13:18:56.409 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,UNAVAILABLE} -13:18:56.409 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,STARTING} -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@38e805a0{STOPPED} -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-69bef335[EMBEDDED:null] -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-69bef335@5e774e14==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-5f5417a4[EMBEDDED:null] -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-5f5417a4@f379f4e8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823[EMBEDDED:null] -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823@9907e3b2==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-1de8942c=org.eclipse.jetty.servlets.CrossOriginFilter-1de8942c@1de8942c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-1de8942c] -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-5f5417a4=org.eclipse.jetty.servlet.DefaultServlet-5f5417a4@f379f4e8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-69bef335=org.eclipse.jetty.servlet.DefaultServlet-69bef335@5e774e14==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823@9907e3b2==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true} -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@38e805a0{STARTING} -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87972ms ServletHandler@38e805a0{STARTED} -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-1de8942c@1de8942c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87972ms org.eclipse.jetty.servlets.CrossOriginFilter-1de8942c@1de8942c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@20d0238a -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823@9907e3b2==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87972ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823@9907e3b2==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-5f5417a4@f379f4e8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87972ms org.eclipse.jetty.servlet.DefaultServlet-5f5417a4@f379f4e8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-69bef335@5e774e14==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.410 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87972ms org.eclipse.jetty.servlet.DefaultServlet-69bef335@5e774e14==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.410 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,AVAILABLE} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87973ms o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,AVAILABLE} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@4d098ee1{STOPPED,min=32,inflate=-1} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@4d098ee1{STARTING,min=32,inflate=-1} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@62fe5902{/,null,UNAVAILABLE} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@62fe5902{/,null,STARTING} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@339c62d8{STOPPED} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-6a0cd973[EMBEDDED:null] -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-6a0cd973@4d01406e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79[EMBEDDED:null] -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-63703fed=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-63703fed@63703fed==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6f3ba438=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6f3ba438@6f3ba438==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189=org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6f3ba438, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-63703fed, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189] -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-6a0cd973=org.eclipse.jetty.servlet.DefaultServlet-6a0cd973@4d01406e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@339c62d8{STARTING} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87973ms ServletHandler@339c62d8{STARTED} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@3f618bae{STOPPED} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@3f618bae{STARTING} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87973ms NotFoundHandler@3f618bae{STARTED} -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6f3ba438@6f3ba438==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87973ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6f3ba438@6f3ba438==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@67e85b8c -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-63703fed@63703fed==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87973ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-63703fed@63703fed==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@cf9da7c -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87973ms org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:18:56.411 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@1f41a60b -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87974ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-6a0cd973@4d01406e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87974ms org.eclipse.jetty.servlet.DefaultServlet-6a0cd973@4d01406e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:18:56.412 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87974ms o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87974ms GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87974ms HandlerCollection@7f21ff59{STARTED} -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@12fb91e6{STOPPED} -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@12fb91e6{STARTING} -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87974ms ErrorHandler@12fb91e6{STARTED} -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:18:56.412 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@70a2b06{STOPPED} -13:18:56.413 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87975ms ScheduledExecutorScheduler@70a2b06{STARTED} -13:18:56.413 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@2aa43901[HTTP/1.1] -13:18:56.413 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87975ms HttpConnectionFactory@2aa43901[HTTP/1.1] -13:18:56.413 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.413 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4130749+02:00 added {SelectorProducer@1b3d1278,POJO} -13:18:56.413 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4130749+02:00 added {QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}],UNMANAGED} -13:18:56.413 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4130749+02:00 created -13:18:56.413 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@59551159{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4130749+02:00,MANAGED} -13:18:56.414 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@59551159{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:18:56.414 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4140758+02:00 added {SelectorProducer@15142a30,POJO} -13:18:56.414 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4140758+02:00 added {QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}],UNMANAGED} -13:18:56.414 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4140758+02:00 created -13:18:56.414 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@66c94438{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4140758+02:00,MANAGED} -13:18:56.414 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@66c94438{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:18:56.414 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@59551159{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:18:56.414 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4140758+02:00 -13:18:56.414 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @87976ms EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.4140758+02:00 -13:18:56.416 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@17675e61 startThread=0 -13:18:56.416 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@6802e3be on ManagedSelector@59551159{STARTING} id=0 keys=0 selected=0 updates=0 -13:18:56.470 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=-1/1,p=0}@3416546f task=EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:56.4690625+02:00 -13:18:56.470 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@61ce6731/SelectorProducer@20cb10e8/IDLE/p=true/QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY][pc=0,pic=0,pec=1,epc=5]@2020-09-25T13:18:56.4700684+02:00 tryProduce true -13:18:56.470 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7a292eba{s=-1/1,p=0}@3416546f Exited -13:18:56.470 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@7a292eba{s=-1/1,p=0}@3416546f in QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.470 [qtp853429147-111] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp853429147-111,5,main] exited for QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.506 [qtp853429147-113] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp853429147-113-acceptor-1@3526903a-NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.506 [qtp853429147-113] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp853429147-113,5,main] exited for QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.506 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.506 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@17675e61 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.506 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.5066072+02:00 tryProduce false -13:18:56.506 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.506 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@6802e3be -13:18:56.506 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.506 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 0 keys -13:18:56.506 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @88069ms ManagedSelector@59551159{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:56.506 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@66c94438{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:18:56.506 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.5066072+02:00 -13:18:56.507 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @88069ms EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.5076116+02:00 -13:18:56.508 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@5c731124 startThread=0 -13:18:56.508 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@70376616 on ManagedSelector@66c94438{STARTING} id=1 keys=0 selected=0 updates=0 -13:18:56.517 [qtp853429147-115] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp853429147-115-acceptor-2@7dab9a35-NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.517 [qtp853429147-115] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp853429147-115,5,main] exited for QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.517 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.518 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@5c731124 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.518 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.5186109+02:00 tryProduce false -13:18:56.518 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.518 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@70376616 -13:18:56.518 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @88080ms ManagedSelector@66c94438{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:56.518 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.518 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 0 keys -13:18:56.518 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @88081ms SelectorManager@NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.518 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@5d0eaa27,POJO} -13:18:56.518 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@5d0eaa27 startThread=0 -13:18:56.518 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@22eebd2b,POJO} -13:18:56.518 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@22eebd2b startThread=0 -13:18:56.518 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@66507263,POJO} -13:18:56.519 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@66507263 startThread=0 -13:18:56.519 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.519 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @88081ms NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:18:56.519 [Test worker] INFO org.eclipse.jetty.server.Server - Started @88081ms -13:18:56.519 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @88081ms Server@2823e022{STARTED}[9.4.28.v20200408] -13:18:56.521 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:56.521 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 5][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:56.521 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 30000 -13:18:56.521 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:18:56.521 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "end of stream" -13:18:56.521 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection detected -13:18:56.521 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: Close connection -13:18:56.521 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:18:56.522 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:18:56.522 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:65043<->127.0.0.1:8080 -13:18:56.522 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:18:56.522 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:18:56.522 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:18:56.523 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> POST /__admin/mappings HTTP/1.1 -13:18:56.523 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Length: 328 -13:18:56.523 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Content-Type: text/plain; charset=UTF-8 -13:18:56.523 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Host: localhost:8080 -13:18:56.523 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> Connection: Keep-Alive -13:18:56.523 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Length: 328[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Host: localhost:8080[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "Connection: Keep-Alive[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "{[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "id" : "946928c0-4aeb-417b-83ff-08c138e23c1a",[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "request" : {[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "url" : "/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9",[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "method" : "GET"[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "response" : {[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "status" : 200,[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "fixedDelayMilliseconds" : 2100[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " },[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> " "uuid" : "946928c0-4aeb-417b-83ff-08c138e23c1a"[\r][\n]" -13:18:56.523 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 >> "}" -13:18:56.552 [qtp853429147-114] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp853429147-114-acceptor-0@25e4f3be-NetworkTrafficServerConnector@75579836{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.552 [qtp853429147-114] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp853429147-114,5,main] exited for QueuedThreadPool[qtp853429147]@32de4b9b{STOPPED,8<=0<=14,i=5,r=-1,q=0}[NO_TRY] -13:18:56.564 [qtp1834758074-123] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.564 [qtp1834758074-123] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@5d0eaa27 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.600 [qtp1834758074-124] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.600 [qtp1834758074-124] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@22eebd2b in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.603 [qtp1834758074-125] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.603 [qtp1834758074-125] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@66507263 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.604 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@4579e9d on ManagedSelector@66c94438{STARTED} id=1 keys=0 selected=0 updates=0 -13:18:56.604 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@66c94438{STARTED} id=1 keys=0 selected=0 updates=1 -13:18:56.604 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:18:56.604 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/0 selected -13:18:56.604 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 1 updates -13:18:56.604 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.604 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@4579e9d -13:18:56.604 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@4579e9d startThread=0 -13:18:56.604 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.604 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 1 keys -13:18:56.637 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.637 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@4579e9d in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.637 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:56.638 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:56.638 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:56.638 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.638 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.638 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.639 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@4a3a2513{AC.ReadCB@32bbb866{HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:56.639 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.639 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@41aabc84 on ManagedSelector@66c94438{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:56.639 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@66c94438{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:56.639 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:18:56.639 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/1 selected -13:18:56.639 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 1 updates -13:18:56.639 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:56.639 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@41aabc84 -13:18:56.639 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.639 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:56.639 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.639 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 1 keys -13:18:56.639 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 1/1/1 selected -13:18:56.640 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 1 keys, 0 updates -13:18:56.640 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@4579e9d in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}] -13:18:56.640 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65043], selector=sun.nio.ch.WindowsSelectorImpl@51086512, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.640 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:56.640 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:56.640 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=0} tryExecute EatWhatYouKill@4b368586/SelectorProducer@15142a30/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.6405912+02:00 -13:18:56.640 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=1} startReservedThread p=1 -13:18:56.640 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@62506fd7{s=0/1,p=1}@5bf00e62 startThread=0 -13:18:56.640 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@62506fd7{s=0/1,p=1}@5bf00e62 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}] -13:18:56.640 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=1}@5bf00e62 started -13:18:56.640 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@5bf00e62 waiting -13:18:57.420 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager is shutting down -13:18:57.420 [Finalizer] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection manager shut down -13:18:57.421 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4b368586/SelectorProducer@15142a30/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:56.6405912+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:57.421 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:57.421 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=782/30000}{io=1/0,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:18:57.421 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:57.421 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:57.421 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=782/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.422 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 1 keys -13:18:57.422 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:57.422 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=782/30000}{io=1/0,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:57.422 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@4a3a2513{AC.ReadCB@32bbb866{HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=783/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:57.422 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=783/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:57.422 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 523 HeapByteBuffer@6d50e55e[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.422 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 523 HeapByteBuffer@6d50e55e[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.422 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6d50e55e[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:57.422 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6d50e55e[p=0,l=523,c=8192,r=523]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.422 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:57.423 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 328 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} parsed true HttpParser{s=CONTENT,0 of 328} -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,AVAILABLE} -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,AVAILABLE} -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823@9907e3b2==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-1de8942c@1de8942c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823@9907e3b2==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:57.424 [qtp1834758074-128] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@63971684 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823 -13:18:57.427 [qtp1834758074-128] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:18:57.427 [qtp1834758074-128] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-1de8942c@1de8942c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:57.427 [qtp1834758074-128] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823@9907e3b2==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:57.428 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=CONTENT,0 of 328},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} parse HeapByteBuffer@6d50e55e[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "946928c0-4ae...b-83ff-08c138e23c1a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:57.428 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6d50e55e[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "946928c0-4ae...b-83ff-08c138e23c1a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.428 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} Content@67a88e2e{HeapByteBufferR@22aa1cbf[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "946928c0-4ae...b-83ff-08c138e23c1a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:57.428 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@483a67a1[c=0,q=0,[0]=null,s=STREAM] addContent Content@67a88e2e{HeapByteBufferR@22aa1cbf[p=195,l=523,c=8192,r=328]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "946928c0-4ae...b-83ff-08c138e23c1a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:57.428 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:57.428 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} -13:18:57.428 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:57.428 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=5} -13:18:57.428 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@483a67a1[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:18:57.429 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=END,328 of 328},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=6} parsed false HttpParser{s=END,328 of 328} -13:18:57.429 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@483a67a1[c=328,q=1,[0]=EOF,s=STREAM] read 328 from Content@67a88e2e{HeapByteBufferR@22aa1cbf[p=523,l=523,c=8192,r=0]={POST /__a...c1a"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:18:57.429 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=END,328 of 328},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=6} -13:18:57.429 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@13427b14[p=0,l=328,c=8192,r=328]={<<<{\r\n "id" : "946928c0-4ae...b-83ff-08c138e23c1a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@30385eac[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "946928c0-4ae...b-83ff-08c138e23c1a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@30385eac[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "946928c0-4ae...b-83ff-08c138e23c1a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@4285e3f0{null} -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=29} -201 null HTTP/1.1 -Content-Type: application/json - - -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5919836e[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5983d982] (null,[p=0,l=328,c=32768,r=328],false)@START -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@30385eac[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "946928c0-4ae...b-83ff-08c138e23c1a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5919836e[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5983d982] ([p=0,l=122,c=8192,r=122],[p=0,l=328,c=32768,r=328],false)@COMMITTED -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2b3c3120{IDLE}->null [HeapByteBuffer@6d50e55e[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@30385eac[p=0,l=328,c=32768,r=328]={<<<{\r\n "id" : "946928c0-4ae...b-83ff-08c138e23c1a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:57.452 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2b3c3120{WRITING}->null:IDLE-->WRITING -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "HTTP/1.1 201 Created[\r][\n]" -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Content-Type: application/json[\r][\n]" -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Transfer-Encoding: chunked[\r][\n]" -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "148[\r][\n]" -13:18:57.454 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=31/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=END,328 of 328},g=HttpGenerator@10ee8008{s=COMMITTED}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=31} -13:18:57.454 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << HTTP/1.1 201 Created -13:18:57.454 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Content-Type: application/json -13:18:57.454 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Transfer-Encoding: chunked -13:18:57.454 [Test worker] DEBUG org.apache.http.headers - http-outgoing-5 << Server: Jetty(9.4.28.v20200408) -13:18:57.454 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "{[\r][\n]" -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "id" : "946928c0-4aeb-417b-83ff-08c138e23c1a",[\r][\n]" -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "request" : {[\r][\n]" -13:18:57.454 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "url" : "/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9",[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "method" : "GET"[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "response" : {[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "status" : 200,[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "fixedDelayMilliseconds" : 2100[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " },[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << " "uuid" : "946928c0-4aeb-417b-83ff-08c138e23c1a"[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "}" -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 328 NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=END,328 of 328},g=HttpGenerator@10ee8008{s=COMMITTED}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=32} -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=450 remaining=0 WriteFlusher@2b3c3120{WRITING}->null -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2b3c3120{IDLE}->null:WRITING-->IDLE -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5919836e[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@5983d982] ([p=122,l=122,c=8192,r=0],[p=328,l=328,c=32768,r=0],false)@COMMITTED -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@4285e3f0{null} -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@4285e3f0{null} -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5919836e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46cbddd4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5919836e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46cbddd4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5919836e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46cbddd4] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2b3c3120{IDLE}->null [HeapByteBuffer@53dc3490[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:57.455 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2b3c3120{WRITING}->null:IDLE-->WRITING -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "0[\r][\n]" -13:18:57.455 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "[\r][\n]" -13:18:57.456 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 5][route: {}->http://localhost:8080] can be kept alive indefinitely -13:18:57.456 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: set socket timeout to 0 -13:18:57.456 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 5][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:18:57.457 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=END,328 of 328},g=HttpGenerator@10ee8008{s=COMPLETING}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=33} -13:18:57.457 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@2b3c3120{WRITING}->null -13:18:57.457 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2b3c3120{IDLE}->null:WRITING-->IDLE -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5919836e[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46cbddd4] (null,[p=0,l=0,c=0,r=0],true)@END -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@1454a8a0 in null -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=35} -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@218543cb{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@218543cb{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=35} -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@5eab2e3b) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@218543cb{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@218543cb{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:57.458 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@218543cb{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:57.459 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=36} -13:18:57.459 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=328 -13:18:57.459 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@218543cb{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:18:57.459 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,328 of 328} -13:18:57.459 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:18:57.459 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [2d9caf69] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 -13:18:57.460 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.462 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.462 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf8814f06] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:57.462 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.462 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.462 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:57.462 [reactor-http-nio-1] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xf8814f06] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:57.465 [qtp1834758074-128] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.465 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:18:57.466 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.466 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.466 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@4a3a2513{AC.ReadCB@32bbb866{HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:57.466 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.466 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@41aabc84 on ManagedSelector@66c94438{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:57.466 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@66c94438{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:57.466 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:18:57.466 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/1 selected -13:18:57.466 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 1 updates -13:18:57.466 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:57.466 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@41aabc84 -13:18:57.466 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.466 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:57.466 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 1 keys -13:18:57.466 [qtp1834758074-128] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:57.467 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:57.492 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:57.493 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:57.493 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:57.493 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:57.494 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:57.494 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:57.494 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, method=GET} -13:18:57.495 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:57.499 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:57.500 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@a906067 on ManagedSelector@59551159{STARTED} id=0 keys=0 selected=0 updates=0 -13:18:57.500 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@59551159{STARTED} id=0 keys=0 selected=0 updates=1 -13:18:57.500 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken with none selected -13:18:57.500 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 0/0/0 selected -13:18:57.500 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 0 keys, 1 updates -13:18:57.501 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:57.501 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@a906067 -13:18:57.501 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@a906067 startThread=0 -13:18:57.501 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:57.501 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 1 keys -13:18:57.526 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@a906067 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:57.527 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:57.527 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:57.527 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:57.528 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.528 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.528 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.528 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@4d3d06cc{AC.ReadCB@7c8b1e4f{HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:57.528 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.528 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@3879e926 on ManagedSelector@59551159{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:57.528 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@59551159{STARTED} id=0 keys=1 selected=0 updates=1 -13:18:57.528 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken with none selected -13:18:57.528 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 0/0/1 selected -13:18:57.528 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 0 keys, 1 updates -13:18:57.528 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@3879e926 -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 1 keys -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 1/1/1 selected -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 1 keys, 0 updates -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65044], selector=sun.nio.ch.WindowsSelectorImpl@40883a69, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0} tryExecute EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:57.5294655+02:00 -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=0}@5bf00e62 offer EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:57.5294655+02:00 -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=1} startReservedThread p=1 -13:18:57.529 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@62506fd7{s=0/1,p=1}@4a705119 startThread=0 -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:18:57.5294655+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@4d3d06cc{AC.ReadCB@7c8b1e4f{HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 195 HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 195 HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:57.530 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,AVAILABLE} -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9)@f72c633 in null -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:18:57.531 [qtp1834758074-121] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@e28fec6 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79 -13:18:57.532 [qtp1834758074-121] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:18:57.532 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:18:57.532 [qtp1834758074-121] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:57.532 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@a906067 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}] -13:18:57.532 [qtp1834758074-121] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:57.532 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@62506fd7{s=0/1,p=1}@4a705119 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}] -13:18:57.532 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=1}@4a705119 started -13:18:57.532 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@4a705119 waiting -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} parse HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@3eb74c87[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} parsed false HttpParser{s=END,0 of -1} -13:18:57.533 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:18:57.534 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:57.539 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@5bf00e62 task=EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:57.5394661+02:00 -13:18:57.540 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:18:57.5394661+02:00 tryProduce true -13:18:57.540 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:57.540 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:57.541 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=10/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=10} -13:18:57.541 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 1 keys -13:18:59.494 [reactor-http-nio-1] WARN reactor.netty.http.client.HttpClientConnect - [id: 0xf8814f06, L:/127.0.0.1:65044 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:18:59.495 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [2d9caf69] Cancel signal (to close connection) -13:18:59.496 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf8814f06, L:/127.0.0.1:65044 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:18:59.497 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xf8814f06, L:/127.0.0.1:65044 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0xf8814f06, L:/127.0.0.1:65044 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:59.497 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0xf8814f06, L:/127.0.0.1:65044 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0xf8814f06, L:/127.0.0.1:65044 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:59.497 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf8814f06, L:/127.0.0.1:65044 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0xf8814f06, L:/127.0.0.1:65044 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:18:59.639 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9)@f72c633 -13:18:59.639 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@76072ad1 exclude no deflater -13:18:59.639 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@6f5d397c{null} -13:18:59.640 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2108} -200 null HTTP/1.1 -Matched-Stub-Id: 946928c0-4aeb-417b-83ff-08c138e23c1a -Vary: Accept-Encoding, User-Agent - - -13:18:59.640 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@264a249f[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@221d97a5] (null,[p=0,l=0,c=0,r=0],false)@START -13:18:59.640 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:18:59.640 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 946928c0-4aeb-417b-83ff-08c138e23c1a -Vary: Accept-Encoding, User-Agent - - -13:18:59.640 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:18:59.640 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@264a249f[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@221d97a5] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:59.640 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@6d036095{IDLE}->null [HeapByteBuffer@6d50e55e[p=0,l=170,c=8192,r=170]={<<>>uthorizat...\x00\x00\x00\x00\x00\x00\x00}] -13:18:59.640 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d036095{WRITING}->null:IDLE-->WRITING -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2111/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@4025af08{s=COMMITTED}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2110} -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@6d036095{WRITING}->null -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d036095{IDLE}->null:WRITING-->IDLE -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@264a249f[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@221d97a5] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6f5d397c{null} -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6f5d397c{null} -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@264a249f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6b132290] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@264a249f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6b132290] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@264a249f[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6b132290] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@6d036095{IDLE}->null [HeapByteBuffer@53dc3490[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:18:59.641 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d036095{WRITING}->null:IDLE-->WRITING -13:18:59.643 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:59.643 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@6d036095{FAILED}->null:WRITING-->FAILED -13:18:59.643 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:18:59.644 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@4025af08{s=COMPLETING}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2113} {} -13:18:59.644 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@4025af08{s=COMPLETING}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2113} -13:18:59.644 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@4025af08{s=COMPLETING}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2113} -13:18:59.644 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7c8b1e4f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@4025af08{s=COMPLETING}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2113} -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@4d3d06cc{null} -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@59551159{STARTED} id=0 keys=1 selected=0 updates=0 -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1c8a8db1 startThread=0 -13:18:59.645 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken with none selected -13:18:59.645 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 0/0/0 selected -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:18:59.645 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 0 keys, 0 updates -13:18:59.645 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:59.645 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:59.645 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 0 keys -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2114} -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3989871a{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3989871a{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2114} -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@52e4913a) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:18:59.645 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@3989871a{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@3989871a{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3989871a{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2115} -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 written=0 -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@3989871a{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,0 of -1} -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=5/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@7c8b1e4f[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@17675e61 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1c8a8db1 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:59.646 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=5/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@7c8b1e4f[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.647 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@7c8b1e4f::NetworkTrafficSocketChannelEndPoint@3371ec6a{/127.0.0.1:65044<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=5/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@7c8b1e4f[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@4025af08{s=START}]=>HttpChannelOverHttp@3db61474{s=HttpChannelState@3989871a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.647 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1c8a8db1 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:59.719 [parallel-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [2d9caf69] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 -13:18:59.722 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2456f7d8] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:18:59.723 [reactor-http-nio-2] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x2456f7d8] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:18:59.724 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@eaff5ed on ManagedSelector@66c94438{STARTED} id=1 keys=1 selected=0 updates=0 -13:18:59.724 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:18:59.724 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@66c94438{STARTED} id=1 keys=1 selected=0 updates=1 -13:18:59.724 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:18:59.724 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080]}, [connected]) -13:18:59.724 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:18:59.724 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/1 selected -13:18:59.724 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 1 updates -13:18:59.724 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:59.724 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@eaff5ed -13:18:59.724 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:18:59.725 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@eaff5ed startThread=0 -13:18:59.725 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:59.725 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 2 keys -13:18:59.725 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:59.725 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:18:59.725 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, method=GET} -13:18:59.725 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:18:59.726 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:18:59.728 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@eaff5ed in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:59.728 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:18:59.728 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:59.728 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:18:59.728 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.729 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.729 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.729 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@37f37a87{AC.ReadCB@68d43241{HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:59.729 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.729 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@5135d91f on ManagedSelector@66c94438{STARTED} id=1 keys=2 selected=0 updates=0 -13:18:59.729 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@66c94438{STARTED} id=1 keys=2 selected=0 updates=1 -13:18:59.729 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:18:59.729 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/2 selected -13:18:59.729 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 1 updates -13:18:59.729 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.729 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:18:59.729 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@5135d91f -13:18:59.729 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@eaff5ed in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:18:59.729 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.729 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:59.729 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 2 keys -13:18:59.729 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 1/1/2 selected -13:18:59.730 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 1 keys, 0 updates -13:18:59.730 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65045], selector=sun.nio.ch.WindowsSelectorImpl@51086512, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.730 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:18:59.730 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:18:59.730 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0} tryExecute EatWhatYouKill@4b368586/SelectorProducer@15142a30/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:59.7307131+02:00 -13:18:59.730 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=0}@4a705119 offer EatWhatYouKill@4b368586/SelectorProducer@15142a30/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:59.7307131+02:00 -13:18:59.731 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=1} startReservedThread p=1 -13:18:59.731 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@62506fd7{s=0/1,p=1}@cc05d41 startThread=0 -13:18:59.731 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:18:59.7317037+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:18:59.731 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@37f37a87{AC.ReadCB@68d43241{HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:18:59.731 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:18:59.731 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 195 HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:18:59.731 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 195 HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=START,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:18:59.732 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=1}@4a705119 task=EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:59.73271+02:00 -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:18:59.732 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:18:59.73271+02:00 tryProduce true -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:18:59.732 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} parsed true HttpParser{s=CONTENT,0 of -1} -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} -13:18:59.733 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@62506fd7{s=0/1,p=1}@cc05d41 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}] -13:18:59.733 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=1}@cc05d41 started -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,AVAILABLE} -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9)@2f268013 in null -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:18:59.733 [qtp1834758074-122] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:18:59.734 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:59.734 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:59.734 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:59.734 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} parse HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:18:59.734 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:18:59.734 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:18:59.734 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:18:59.734 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:18:59.735 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:18:59.735 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@74fe188b[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:18:59.733 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@cc05d41 waiting -13:18:59.739 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=END,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=7} parsed false HttpParser{s=END,0 of -1} -13:18:59.746 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=14/30000}{io=1/0,kio=1,kro=1}->HttpConnection@68d43241[p=HttpParser{s=END,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=13} -13:18:59.746 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:18:59.733 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:18:59.751 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:18:59.751 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=19/30000}{io=0/0,kio=0,kro=1}->HttpConnection@68d43241[p=HttpParser{s=END,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=19} -13:18:59.751 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 2 keys -13:19:01.727 [reactor-http-nio-2] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x2456f7d8, L:/127.0.0.1:65045 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:19:01.727 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [2d9caf69] Cancel signal (to close connection) -13:19:01.728 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2456f7d8, L:/127.0.0.1:65045 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:19:01.728 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x2456f7d8, L:/127.0.0.1:65045 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x2456f7d8, L:/127.0.0.1:65045 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:01.728 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0x2456f7d8, L:/127.0.0.1:65045 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x2456f7d8, L:/127.0.0.1:65045 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:01.729 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2456f7d8, L:/127.0.0.1:65045 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0x2456f7d8, L:/127.0.0.1:65045 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9)@2f268013 -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@7edd6437 exclude no deflater -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@707914f8{null} -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2119} -200 null HTTP/1.1 -Matched-Stub-Id: 946928c0-4aeb-417b-83ff-08c138e23c1a -Vary: Accept-Encoding, User-Agent - - -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@6b4434fc[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ffa535f] (null,[p=0,l=0,c=0,r=0],false)@START -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 946928c0-4aeb-417b-83ff-08c138e23c1a -Vary: Accept-Encoding, User-Agent - - -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6b4434fc[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ffa535f] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7a937e4b{IDLE}->null [HeapByteBuffer@6d50e55e[p=0,l=170,c=8192,r=170]={<<>>uthorizat...\x00\x00\x00\x00\x00\x00\x00}] -13:19:01.851 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7a937e4b{WRITING}->null:IDLE-->WRITING -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2120/30000}{io=0/0,kio=0,kro=1}->HttpConnection@68d43241[p=HttpParser{s=END,0 of -1},g=HttpGenerator@666e17fc{s=COMMITTED}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2120} -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@7a937e4b{WRITING}->null -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7a937e4b{IDLE}->null:WRITING-->IDLE -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@6b4434fc[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6ffa535f] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@707914f8{null} -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@707914f8{null} -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@6b4434fc[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@42756b35] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@6b4434fc[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@42756b35] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6b4434fc[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@42756b35] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@7a937e4b{IDLE}->null [HeapByteBuffer@53dc3490[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:01.852 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7a937e4b{WRITING}->null:IDLE-->WRITING -13:19:01.853 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:19:01.854 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@7a937e4b{FAILED}->null:WRITING-->FAILED -13:19:01.854 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@68d43241[p=HttpParser{s=END,0 of -1},g=HttpGenerator@666e17fc{s=COMPLETING}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2123} {} -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@68d43241[p=HttpParser{s=END,0 of -1},g=HttpGenerator@666e17fc{s=COMPLETING}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2123} -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@68d43241[p=HttpParser{s=END,0 of -1},g=HttpGenerator@666e17fc{s=COMPLETING}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2123} -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@68d43241[p=HttpParser{s=END,0 of -1},g=HttpGenerator@666e17fc{s=COMPLETING}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2123} -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@37f37a87{null} -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@66c94438{STARTED} id=1 keys=2 selected=0 updates=0 -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@85c4453 startThread=0 -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:01.855 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:19:01.855 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/1 selected -13:19:01.855 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 0 updates -13:19:01.855 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:01.855 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:01.855 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 1 keys -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2123} -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@1e4f0df3{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@1e4f0df3{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:01.855 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@85c4453 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:01.855 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2123} -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@35818eac) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@1e4f0df3{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@1e4f0df3{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@1e4f0df3{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2124} -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 written=0 -13:19:01.856 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=3/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@68d43241[p=HttpParser{s=END,0 of -1},g=HttpGenerator@666e17fc{s=COMPLETING}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2124} -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@1e4f0df3{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,0 of -1} -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:01.856 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=4/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@68d43241[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:01.856 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@85c4453 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@68d43241::NetworkTrafficSocketChannelEndPoint@2495443b{/127.0.0.1:65045<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=4/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@68d43241[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@666e17fc{s=START}]=>HttpChannelOverHttp@56e0f59b{s=HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@1e4f0df3{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:01.856 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@5c731124 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:02.151 [parallel-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [2d9caf69] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 -13:19:02.152 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2298e163] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:19:02.153 [reactor-http-nio-3] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x2298e163] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:02.154 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:19:02.154 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:19:02.154 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080]}, [connected]) -13:19:02.155 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:19:02.155 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:02.155 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:02.155 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, method=GET} -13:19:02.155 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:19:02.156 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:19:02.157 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@4bad6a5c on ManagedSelector@59551159{STARTED} id=0 keys=0 selected=0 updates=0 -13:19:02.158 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@59551159{STARTED} id=0 keys=0 selected=0 updates=1 -13:19:02.158 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken with none selected -13:19:02.158 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 0/0/0 selected -13:19:02.158 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 0 keys, 1 updates -13:19:02.158 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:02.158 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@4bad6a5c -13:19:02.158 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@4bad6a5c startThread=0 -13:19:02.158 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:02.158 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 1 keys -13:19:02.158 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@4bad6a5c in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:02.158 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:19:02.159 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:02.159 [qtp1834758074-121] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:19:02.160 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:02.160 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:02.160 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:02.160 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@7234955c{AC.ReadCB@5d742624{HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:02.160 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:02.160 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@6725d100 on ManagedSelector@59551159{STARTED} id=0 keys=1 selected=0 updates=0 -13:19:02.160 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@59551159{STARTED} id=0 keys=1 selected=0 updates=1 -13:19:02.160 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken with none selected -13:19:02.160 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 0/0/1 selected -13:19:02.160 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 0 keys, 1 updates -13:19:02.160 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:02.160 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@6725d100 -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 1 keys -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 1/1/1 selected -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 1 keys, 0 updates -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65046], selector=sun.nio.ch.WindowsSelectorImpl@40883a69, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0} tryExecute EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:19:02.1613624+02:00 -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=0}@cc05d41 offer EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:19:02.1613624+02:00 -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=1} startReservedThread p=1 -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@62506fd7{s=0/1,p=1}@4a377f50 startThread=0 -13:19:02.161 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:19:02.1613624+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@7234955c{AC.ReadCB@5d742624{HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 195 HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 195 HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:02.162 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=0} -GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,AVAILABLE} -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9)@513ec9b8 in null -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:02.163 [qtp1834758074-126] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} parse HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@45e40187[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:19:02.164 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=END,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} parsed false HttpParser{s=END,0 of -1} -13:19:02.165 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=END,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:19:02.165 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:02.169 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d742624[p=HttpParser{s=END,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=7} -13:19:02.169 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@4bad6a5c in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}] -13:19:02.169 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@62506fd7{s=0/1,p=1}@4a377f50 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}] -13:19:02.169 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=1}@4a377f50 started -13:19:02.169 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@4a377f50 waiting -13:19:02.170 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@cc05d41 task=EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:19:02.1703712+02:00 -13:19:02.170 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:19:02.1703712+02:00 tryProduce true -13:19:02.170 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:02.170 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:02.171 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d742624[p=HttpParser{s=END,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=9} -13:19:02.171 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 1 keys -13:19:04.156 [reactor-http-nio-3] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x2298e163, L:/127.0.0.1:65046 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:19:04.157 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [2d9caf69] Cancel signal (to close connection) -13:19:04.158 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2298e163, L:/127.0.0.1:65046 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:19:04.158 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x2298e163, L:/127.0.0.1:65046 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x2298e163, L:/127.0.0.1:65046 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:04.158 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x2298e163, L:/127.0.0.1:65046 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x2298e163, L:/127.0.0.1:65046 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:04.158 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x2298e163, L:/127.0.0.1:65046 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0x2298e163, L:/127.0.0.1:65046 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9)@513ec9b8 -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@1bf3ac8 exclude no deflater -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@70031850{null} -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2108} -200 null HTTP/1.1 -Matched-Stub-Id: 946928c0-4aeb-417b-83ff-08c138e23c1a -Vary: Accept-Encoding, User-Agent - - -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@57577ce1[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@32dab7b5] (null,[p=0,l=0,c=0,r=0],false)@START -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 946928c0-4aeb-417b-83ff-08c138e23c1a -Vary: Accept-Encoding, User-Agent - - -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@57577ce1[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@32dab7b5] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4acbb25c{IDLE}->null [HeapByteBuffer@6d50e55e[p=0,l=170,c=8192,r=170]={<<>>uthorizat...\x00\x00\x00\x00\x00\x00\x00}] -13:19:04.270 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4acbb25c{WRITING}->null:IDLE-->WRITING -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2108/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d742624[p=HttpParser{s=END,0 of -1},g=HttpGenerator@10f95277{s=COMMITTED}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2109} -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@4acbb25c{WRITING}->null -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4acbb25c{IDLE}->null:WRITING-->IDLE -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@57577ce1[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@32dab7b5] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@70031850{null} -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@70031850{null} -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@57577ce1[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@22e2f2cd] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@57577ce1[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@22e2f2cd] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:04.271 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@57577ce1[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@22e2f2cd] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:04.272 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4acbb25c{IDLE}->null [HeapByteBuffer@53dc3490[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:04.273 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4acbb25c{WRITING}->null:IDLE-->WRITING -13:19:04.279 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 53 common frames omitted -13:19:04.281 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4acbb25c{FAILED}->null:WRITING-->FAILED -13:19:04.282 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 53 common frames omitted -13:19:04.285 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d742624[p=HttpParser{s=END,0 of -1},g=HttpGenerator@10f95277{s=COMPLETING}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2123} {} -13:19:04.287 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=15/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d742624[p=HttpParser{s=END,0 of -1},g=HttpGenerator@10f95277{s=COMPLETING}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2124} -13:19:04.287 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=16/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d742624[p=HttpParser{s=END,0 of -1},g=HttpGenerator@10f95277{s=COMPLETING}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2125} -13:19:04.288 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=16/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d742624[p=HttpParser{s=END,0 of -1},g=HttpGenerator@10f95277{s=COMPLETING}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2126} -13:19:04.289 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@7234955c{null} -13:19:04.289 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@59551159{STARTED} id=0 keys=1 selected=0 updates=0 -13:19:04.289 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken with none selected -13:19:04.289 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 0/0/0 selected -13:19:04.289 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 0 keys, 0 updates -13:19:04.289 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:04.289 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:04.289 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 0 keys -13:19:04.290 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@4e3e3204 startThread=0 -13:19:04.292 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:04.299 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2136} -13:19:04.299 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2276ee54{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:19:04.299 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@2276ee54{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:04.300 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2137} -13:19:04.300 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@293e4369) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:04.300 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@2276ee54{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:04.300 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@2276ee54{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:04.300 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@2276ee54{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:04.300 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2138} -13:19:04.300 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 written=0 -13:19:04.300 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@2276ee54{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,0 of -1} -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=30/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@5d742624[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@5bf00e62 size 1 > capacity -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@62506fd7{s=1/1,p=0}@5bf00e62 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@4e3e3204 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=30/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@5d742624[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@5d742624::NetworkTrafficSocketChannelEndPoint@18baaf42{/127.0.0.1:65046<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=30/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@5d742624[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@10f95277{s=START}]=>HttpChannelOverHttp@e7d9a5e{s=HttpChannelState@2276ee54{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:04.301 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@4e3e3204 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:05.298 [parallel-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [2d9caf69] HTTP GET http://localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 -13:19:05.301 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x019b22ad] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:19:05.302 [reactor-http-nio-4] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x019b22ad] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:05.304 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080]}, [connected]) -13:19:05.306 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@73b6a6c2 on ManagedSelector@66c94438{STARTED} id=1 keys=1 selected=0 updates=0 -13:19:05.306 [qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@66c94438{STARTED} id=1 keys=1 selected=0 updates=1 -13:19:05.306 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:19:05.306 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/1 selected -13:19:05.306 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 1 updates -13:19:05.306 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:05.306 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@73b6a6c2 -13:19:05.306 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@73b6a6c2 startThread=0 -13:19:05.306 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:05.306 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 2 keys -13:19:05.307 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@73b6a6c2 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:05.308 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:19:05.308 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:05.308 [qtp1834758074-126] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:19:05.308 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:05.308 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:05.308 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:05.308 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:19:05.309 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@55e90af3{AC.ReadCB@6f5e315f{HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:05.309 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:19:05.309 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:05.309 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@61b02cb6 on ManagedSelector@66c94438{STARTED} id=1 keys=2 selected=0 updates=0 -13:19:05.309 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@66c94438{STARTED} id=1 keys=2 selected=0 updates=1 -13:19:05.309 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:05.309 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:05.309 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, method=GET} -13:19:05.310 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:19:05.310 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:19:05.310 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/2 selected -13:19:05.310 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 1 updates -13:19:05.310 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:05.310 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@61b02cb6 -13:19:05.310 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:05.310 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/1,kio=0,kro=0}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:05.310 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:05.310 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 2 keys -13:19:05.310 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@73b6a6c2 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:05.311 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 1/1/2 selected -13:19:05.311 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 1 keys, 0 updates -13:19:05.311 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65047], selector=sun.nio.ch.WindowsSelectorImpl@51086512, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:05.311 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:05.311 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:19:05.311 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:05.311 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:19:05.311 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0} tryExecute EatWhatYouKill@4b368586/SelectorProducer@15142a30/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:05.3119464+02:00 -13:19:05.311 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=0}@4a377f50 offer EatWhatYouKill@4b368586/SelectorProducer@15142a30/PRODUCING/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:05.3119464+02:00 -13:19:05.311 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=1} startReservedThread p=1 -13:19:05.311 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@62506fd7{s=0/1,p=1}@71945073 startThread=0 -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:05.3129245+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@55e90af3{AC.ReadCB@6f5e315f{HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 195 HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 195 HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@6d50e55e[p=0,l=195,c=8192,r=195]={<<>>{\r\n "id"...\x00\x00\x00\x00\x00\x00\x00} -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:19:05.312 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Authorization: Bearer - - -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} parsed true HttpParser{s=CONTENT,0 of -1} -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@34a019a9{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=1} -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,AVAILABLE} -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} handle Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9)@543a33eb in null -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 @ o.e.j.s.ServletContextHandler@62fe5902{/,null,AVAILABLE} -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:05.313 [qtp1834758074-127] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} filled 0 HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} parse HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@6d50e55e[p=0,l=0,c=8192,r=0]={<<<>>>GET /api/...\x00\x00\x00\x00\x00\x00\x00} -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2} -13:19:05.314 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@237dc093[c=0,q=0,[0]=null,s=STREAM] addContent EOF -13:19:05.315 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=3} parsed false HttpParser{s=END,0 of -1} -13:19:05.315 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=3} -13:19:05.315 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:05.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=1}@4a377f50 task=EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:19:05.3209205+02:00 -13:19:05.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=true/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:19:05.3209205+02:00 tryProduce true -13:19:05.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:05.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:05.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=8} -13:19:05.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 2 keys -13:19:05.320 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@62506fd7{s=0/1,p=1}@71945073 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=0/1,p=1}] -13:19:05.320 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=1}@71945073 started -13:19:05.320 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@71945073 waiting -13:19:07.310 [reactor-http-nio-4] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x019b22ad, L:/127.0.0.1:65047 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:19:07.311 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [2d9caf69] Cancel signal (to close connection) -13:19:07.318 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x019b22ad, L:/127.0.0.1:65047 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:19:07.318 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@2823e022{STARTED}[9.4.28.v20200408] -13:19:07.318 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@2823e022{STOPPING}[9.4.28.v20200408] -13:19:07.318 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x019b22ad, L:/127.0.0.1:65047 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x019b22ad, L:/127.0.0.1:65047 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:07.318 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x019b22ad, L:/127.0.0.1:65047 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x019b22ad, L:/127.0.0.1:65047 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:07.319 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.319 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x019b22ad, L:/127.0.0.1:65047 ! R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9, connection=PooledConnection{channel=[id: 0x019b22ad, L:/127.0.0.1:65047 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:19:07.319 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.319 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@66c94438{STARTED} id=1 keys=2 selected=0 updates=0 -13:19:07.319 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@523b950c on ManagedSelector@66c94438{STOPPING} id=1 keys=2 selected=0 updates=0 -13:19:07.319 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@66c94438{STOPPING} id=1 keys=2 selected=0 updates=1 -13:19:07.319 [qtp1834758074-125] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1834758074-125-acceptor-2@66507263-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:07.319 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:19:07.319 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/2 selected -13:19:07.319 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 1 updates -13:19:07.319 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.319 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@523b950c -13:19:07.319 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@66c94438{STOPPING} id=1 keys=2 selected=0 updates=0 -13:19:07.319 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2006/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2007} -13:19:07.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2007/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2008} -13:19:07.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2007/30000}{io=0/0,kio=0,kro=1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2008} -13:19:07.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@55e90af3{null} -13:19:07.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@66c94438{STOPPING} id=1 keys=2 selected=0 updates=0 -13:19:07.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1b9c9ec6 startThread=0 -13:19:07.320 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1b9c9ec6 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:07.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9855/30000}{io=1/1,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9855/30000}{io=1/1,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.320 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=9855/30000}{io=1/1,kio=1,kro=1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.320 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2007/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2008} -13:19:07.321 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@4a3a2513{AC.ReadCB@32bbb866{HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=9855/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@32bbb866[p=HttpParser{s=START,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:07.321 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:19:07.321 [qtp1834758074-121] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:19:07.321 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9856/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@32bbb866[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:19:07.321 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@66c94438{STOPPING} id=1 keys=2 selected=0 updates=0 -13:19:07.321 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@412c0d28 startThread=0 -13:19:07.321 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.321 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 waiting with 2 keys -13:19:07.321 [qtp1834758074-125] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@412c0d28 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:07.321 [qtp1834758074-125] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9856/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@32bbb866[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.321 [qtp1834758074-125] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@32bbb866::NetworkTrafficSocketChannelEndPoint@6e7faa4f{/127.0.0.1:65043<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9856/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@32bbb866[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@10ee8008{s=START}]=>HttpChannelOverHttp@6487c13f{s=HttpChannelState@218543cb{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.321 [qtp1834758074-125] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@412c0d28 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:07.321 [qtp1834758074-126] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2008/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2009} -13:19:07.321 [qtp1834758074-126] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1b9c9ec6 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:07.322 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@371d3642 on ManagedSelector@66c94438{STOPPING} id=1 keys=0 selected=0 updates=0 -13:19:07.322 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@66c94438{STOPPING} id=1 keys=0 selected=0 updates=1 -13:19:07.322 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken with none selected -13:19:07.322 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 woken up from select, 0/0/0 selected -13:19:07.322 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@51086512 processing 0 keys, 1 updates -13:19:07.322 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.322 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@371d3642 -13:19:07.322 [qtp1834758074-121] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.322 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@4a377f50 size 1 > capacity -13:19:07.322 [qtp1834758074-121] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@62506fd7{s=1/1,p=0}@4a377f50 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:07.322 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:19:07.3222395+02:00 -13:19:07.322 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@4b368586/SelectorProducer@15142a30/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:19:07.3222395+02:00 -13:19:07.322 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@66c94438{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:19:07.322 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@59551159{STARTED} id=0 keys=0 selected=0 updates=0 -13:19:07.322 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@7fb2202f on ManagedSelector@59551159{STOPPING} id=0 keys=0 selected=0 updates=0 -13:19:07.322 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@59551159{STOPPING} id=0 keys=0 selected=0 updates=1 -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken with none selected -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 0/0/0 selected -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 0 keys, 1 updates -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@7fb2202f -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 0 connections on ManagedSelector@59551159{STOPPING} id=0 keys=0 selected=0 updates=0 -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 waiting with 0 keys -13:19:07.323 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@213ce0b9 on ManagedSelector@59551159{STOPPING} id=0 keys=0 selected=0 updates=0 -13:19:07.323 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@59551159{STOPPING} id=0 keys=0 selected=0 updates=1 -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken with none selected -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 woken up from select, 0/0/0 selected -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@40883a69 processing 0 keys, 1 updates -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@213ce0b9 -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=1/1,p=0}@cc05d41 size 1 > capacity -13:19:07.323 [qtp1834758074-128] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@62506fd7{s=1/1,p=0}@cc05d41 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:07.323 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:19:07.3232421+02:00 -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@3eac1a1a/SelectorProducer@1b3d1278/IDLE/p=false/QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:19:07.3242418+02:00 -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@59551159{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@2aa43901[HTTP/1.1] -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@2aa43901[HTTP/1.1] -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@70a2b06{STARTED} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@70a2b06{STOPPED} -13:19:07.324 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@2823e022{STOPPING}[9.4.28.v20200408] -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@12fb91e6{STARTED} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@12fb91e6{STOPPING} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@12fb91e6{STOPPED} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@7f21ff59{STARTED} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@7f21ff59{STOPPING} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@4d098ee1{STARTED,min=32,inflate=-1} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@4d098ee1{STOPPING,min=32,inflate=-1} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@62fe5902{/,null,SHUTDOWN} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@62fe5902{/,null,UNAVAILABLE} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@3f618bae{STARTED} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@3f618bae{STOPPING} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@3f618bae{STOPPED} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@339c62d8{STARTED} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@339c62d8{STOPPING} -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-4c2e3189@4c2e3189==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-63703fed@63703fed==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-63703fed@63703fed==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6f3ba438@6f3ba438==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-6f3ba438@6f3ba438==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7aaabb79@66120c9a==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-6a0cd973@4d01406e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-6a0cd973@4d01406e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.324 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@339c62d8{STOPPED} -13:19:07.324 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@62fe5902{/,null,UNAVAILABLE} -13:19:07.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@62fe5902{/,null,UNAVAILABLE} -13:19:07.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@4d098ee1{STOPPED,min=32,inflate=-1} -13:19:07.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,SHUTDOWN} -13:19:07.325 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,UNAVAILABLE} -13:19:07.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@38e805a0{STARTED} -13:19:07.325 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@38e805a0{STOPPING} -13:19:07.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-1de8942c@1de8942c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:07.325 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-1de8942c@1de8942c==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823@9907e3b2==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-65554823@9907e3b2==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-69bef335@5e774e14==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-69bef335@5e774e14==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-5f5417a4@f379f4e8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-5f5417a4@f379f4e8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@38e805a0{STOPPED} -13:19:07.326 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,UNAVAILABLE} -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@21c2f3c8{/__admin,null,UNAVAILABLE} -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@7f21ff59{STOPPED} -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp1834758074]@6d5c2fba{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPING,8<=8<=14,i=4,r=-1,q=0}[ReservedThreadExecutor@62506fd7{s=1/1,p=0}] -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@62506fd7{s=1/1,p=0} -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=0/1,p=0}@71945073 offer STOP! -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@62506fd7{s=-1/1,p=0} -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:07.326 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@2823e022{STOPPED}[9.4.28.v20200408] -13:19:07.333 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=-1/1,p=0}@71945073 task=STOP! -13:19:07.333 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=-1/1,p=0}@71945073 Exited -13:19:07.333 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@62506fd7{s=-1/1,p=0}@71945073 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:07.333 [qtp1834758074-122] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1834758074-122,5,main] exited for QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:07.358 [qtp1834758074-123] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1834758074-123-acceptor-0@5d0eaa27-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:07.358 [qtp1834758074-123] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1834758074-123,5,main] exited for QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:07.360 [qtp1834758074-124] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1834758074-124-acceptor-1@22eebd2b-NetworkTrafficServerConnector@301fffd7{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:07.361 [qtp1834758074-124] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1834758074-124,5,main] exited for QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:07.363 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@5cad5bc8{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@16a0b7ee[HTTP/1.1] added {HttpConfiguration@235c0ad0{32768/8192,8192/8192,https://:0,[]},POJO} -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{null, ()}{0.0.0.0:0} added {Server@5cad5bc8{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@5ad09f5a{STOPPED},AUTO} -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@49dc4c29,POJO} -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@16a0b7ee[HTTP/1.1],AUTO} -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@16a0b7ee[HTTP/1.1] -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@5cad5bc8{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:19:07.364 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@5cad5bc8{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@a15c548{/__admin,null,UNAVAILABLE},MANAGED} -13:19:07.365 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@491323b3 -13:19:07.365 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@a15c548{/__admin,null,UNAVAILABLE} added {ServletHandler@17e75f84{STOPPED},MANAGED} -13:19:07.366 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@5cad5bc8{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@56621157{/,null,UNAVAILABLE},MANAGED} -13:19:07.366 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@1c0ad0e4 -13:19:07.366 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@56621157{/,null,UNAVAILABLE} added {ServletHandler@73a96801{STOPPED},MANAGED} -13:19:07.366 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@56621157{/,null,UNAVAILABLE} added {NotFoundHandler@ea435c7{STOPPED},MANAGED} -13:19:07.367 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@2d47fdef{STOPPED} added {o.e.j.s.ServletContextHandler@a15c548{/__admin,null,UNAVAILABLE},AUTO} -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STOPPED,min=32,inflate=-1} mime types IncludeExclude@36a40d5{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@36425b18{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@56621157{/,null,UNAVAILABLE},MANAGED} -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@2d47fdef{STOPPED} added {GzipHandler@36425b18{STOPPED,min=32,inflate=-1},AUTO} -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@5cad5bc8{STOPPED}[9.4.28.v20200408] added {HandlerCollection@2d47fdef{STOPPED},MANAGED} -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@5cad5bc8{STOPPED}[9.4.28.v20200408] -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@5cad5bc8{STARTING}[9.4.28.v20200408] added {ErrorHandler@16ced373{STOPPED},AUTO} -13:19:07.368 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@5cad5bc8{STARTING}[9.4.28.v20200408] -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:19:07.368 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=0} -13:19:07.369 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp1209070290]@4810f2d2{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] added {ReservedThreadExecutor@4f4ecc0{s=0/1,p=0},AUTO} -13:19:07.369 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@4f4ecc0{s=0/1,p=0} -13:19:07.369 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98932ms ReservedThreadExecutor@4f4ecc0{s=0/1,p=0} -13:19:07.369 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1209070290-130,5,main] -13:19:07.369 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1209070290-131,5,main] -13:19:07.369 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1209070290-132,5,main] -13:19:07.369 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1209070290-133,5,main] -13:19:07.370 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1209070290-134,5,main] -13:19:07.370 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1209070290-135,5,main] -13:19:07.370 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1209070290-136,5,main] -13:19:07.371 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp1209070290-137,5,main] -13:19:07.371 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98935ms QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.371 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@2d47fdef{STOPPED} -13:19:07.371 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@2d47fdef{STARTING} -13:19:07.371 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@a15c548{/__admin,null,UNAVAILABLE} -13:19:07.371 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@a15c548{/__admin,null,STARTING} -13:19:07.371 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@17e75f84{STOPPED} -13:19:07.371 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-18ea4906[EMBEDDED:null] -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-18ea4906@26fab9ed==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-3cf1e455[EMBEDDED:null] -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-3cf1e455@d88fac09==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13[EMBEDDED:null] -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13@b4cb2ae7==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-658292fe=org.eclipse.jetty.servlets.CrossOriginFilter-658292fe@658292fe==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-658292fe] -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-3cf1e455=org.eclipse.jetty.servlet.DefaultServlet-3cf1e455@d88fac09==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-18ea4906=org.eclipse.jetty.servlet.DefaultServlet-18ea4906@26fab9ed==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13@b4cb2ae7==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true} -13:19:07.372 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@17e75f84{STARTING} -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98936ms ServletHandler@17e75f84{STARTED} -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-658292fe@658292fe==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98936ms org.eclipse.jetty.servlets.CrossOriginFilter-658292fe@658292fe==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@635cd74a -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13@b4cb2ae7==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98937ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13@b4cb2ae7==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-18ea4906@26fab9ed==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98937ms org.eclipse.jetty.servlet.DefaultServlet-18ea4906@26fab9ed==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-3cf1e455@d88fac09==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98937ms org.eclipse.jetty.servlet.DefaultServlet-3cf1e455@d88fac09==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.373 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@a15c548{/__admin,null,AVAILABLE} -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98937ms o.e.j.s.ServletContextHandler@a15c548{/__admin,null,AVAILABLE} -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@36425b18{STOPPED,min=32,inflate=-1} -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@36425b18{STARTING,min=32,inflate=-1} -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@56621157{/,null,UNAVAILABLE} -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@56621157{/,null,STARTING} -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@73a96801{STOPPED} -13:19:07.373 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-24d11e8[EMBEDDED:null] -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-24d11e8@166a9cf6==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f[EMBEDDED:null] -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-5c5d2805=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-5c5d2805@5c5d2805==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-3675bd72=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-3675bd72@3675bd72==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-262ea69=org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-3675bd72, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-5c5d2805, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-262ea69] -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-24d11e8=org.eclipse.jetty.servlet.DefaultServlet-24d11e8@166a9cf6==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true} -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@73a96801{STARTING} -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms ServletHandler@73a96801{STARTED} -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@ea435c7{STOPPED} -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@ea435c7{STARTING} -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms NotFoundHandler@ea435c7{STARTED} -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-3675bd72@3675bd72==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-3675bd72@3675bd72==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@7c290a9f -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-5c5d2805@5c5d2805==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-5c5d2805@5c5d2805==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@1cc0ae29 -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@67449c67 -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:19:07.374 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-24d11e8@166a9cf6==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms org.eclipse.jetty.servlet.DefaultServlet-24d11e8@166a9cf6==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.375 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms GzipHandler@36425b18{STARTED,min=32,inflate=-1} -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms HandlerCollection@2d47fdef{STARTED} -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@16ced373{STOPPED} -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@16ced373{STARTING} -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98938ms ErrorHandler@16ced373{STARTED} -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.375 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:19:07.376 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@5ad09f5a{STOPPED} -13:19:07.376 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98939ms ScheduledExecutorScheduler@5ad09f5a{STARTED} -13:19:07.376 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@16a0b7ee[HTTP/1.1] -13:19:07.376 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98939ms HttpConnectionFactory@16a0b7ee[HTTP/1.1] -13:19:07.376 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.376 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.3762287+02:00 added {SelectorProducer@566e727b,POJO} -13:19:07.376 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.3762287+02:00 added {QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}],UNMANAGED} -13:19:07.376 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.3762287+02:00 created -13:19:07.377 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@4fc62f79{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.3772325+02:00,MANAGED} -13:19:07.377 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@4fc62f79{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:19:07.377 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.3772325+02:00 added {SelectorProducer@51d26865,POJO} -13:19:07.377 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.3772325+02:00 added {QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}],UNMANAGED} -13:19:07.377 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.3772325+02:00 created -13:19:07.377 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@740a358e{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.3772325+02:00,MANAGED} -13:19:07.377 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@740a358e{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:19:07.377 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@4fc62f79{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:19:07.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.378228+02:00 -13:19:07.378 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @98941ms EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.378228+02:00 -13:19:07.380 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@ac96191 startThread=0 -13:19:07.380 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@17dcddbf on ManagedSelector@4fc62f79{STARTING} id=0 keys=0 selected=0 updates=0 -13:19:07.419 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@4d098ee1{STOPPED,min=32,inflate=-1} excluded not gzip accept Request(GET //localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9)@543a33eb -13:19:07.419 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@18ea991d exclude no deflater -13:19:07.419 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@4b2e55bb{null} -13:19:07.419 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 on HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2107} -200 null HTTP/1.1 -Matched-Stub-Id: 946928c0-4aeb-417b-83ff-08c138e23c1a -Vary: Accept-Encoding, User-Agent - - -13:19:07.419 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.server.HttpConnection$SendCallback.reset(HttpConnection.java:728) - at org.eclipse.jetty.server.HttpConnection$SendCallback.access$300(HttpConnection.java:688) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:547) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:824) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.commit(GzipHttpOutputInterceptor.java:216) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:108) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:267) - at org.eclipse.jetty.server.HttpOutput.flush(HttpOutput.java:705) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:234) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:19:07.420 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2107/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2108} {} -13:19:07.420 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2107/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2108} -13:19:07.420 [qtp1834758074-127] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2107/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2108} -13:19:07.420 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,org.eclipse.jetty.io.EofException) s=OPEN,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:07.420 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSED,api=BLOCKING,sc=false,e=null c=null b=null -13:19:07.420 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - /api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9 -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.server.HttpConnection$SendCallback.reset(HttpConnection.java:728) - at org.eclipse.jetty.server.HttpConnection$SendCallback.access$300(HttpConnection.java:688) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:547) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:824) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.commit(GzipHttpOutputInterceptor.java:216) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:108) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:267) - at org.eclipse.jetty.server.HttpOutput.flush(HttpOutput.java:705) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:234) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:19:07.421 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@34a019a9{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:19:07.421 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@34a019a9{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:07.421 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpChannel - !handle COMPLETE HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2109} -13:19:07.421 [qtp1834758074-127] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@6f5e315f::NetworkTrafficSocketChannelEndPoint@3ef04d40{/127.0.0.1:65047<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2108/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@6f5e315f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@53f8fbb9{s=START}]=>HttpChannelOverHttp@bb1b4c9{s=HttpChannelState@34a019a9{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs/01bd8171-c219-47a1-b831-c1aa538629c9,age=2109} onFillable exit HttpChannelState@34a019a9{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} null -13:19:07.421 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@62506fd7{s=-1/1,p=0}@4a705119 Exited -13:19:07.421 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@62506fd7{s=-1/1,p=0}@4a705119 in QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:07.421 [qtp1834758074-127] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1834758074-127,5,main] exited for QueuedThreadPool[qtp1834758074]@6d5c2fba{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:07.473 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.473 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@ac96191 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.473 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.4732185+02:00 tryProduce false -13:19:07.473 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.474 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@17dcddbf -13:19:07.474 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @99038ms ManagedSelector@4fc62f79{STARTED} id=0 keys=0 selected=0 updates=0 -13:19:07.474 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@740a358e{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:19:07.474 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.4742432+02:00 -13:19:07.474 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @99038ms EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.4742432+02:00 -13:19:07.475 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.475 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 0 keys -13:19:07.476 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@558f1e61 startThread=0 -13:19:07.476 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@700cf71b on ManagedSelector@740a358e{STARTING} id=1 keys=0 selected=0 updates=0 -13:19:07.482 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.482 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@558f1e61 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.482 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.4822193+02:00 tryProduce false -13:19:07.482 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.482 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@700cf71b -13:19:07.482 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.482 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @99046ms ManagedSelector@740a358e{STARTED} id=1 keys=0 selected=0 updates=0 -13:19:07.482 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 0 keys -13:19:07.482 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @99046ms SelectorManager@NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.482 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@3188d562,POJO} -13:19:07.482 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@3188d562 startThread=0 -13:19:07.482 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@40c8c7c9,POJO} -13:19:07.482 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@40c8c7c9 startThread=0 -13:19:07.482 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@6d99a5a7,POJO} -13:19:07.482 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@6d99a5a7 startThread=0 -13:19:07.483 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.483 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @99046ms NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:07.483 [Test worker] INFO org.eclipse.jetty.server.Server - Started @99046ms -13:19:07.483 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @99046ms Server@5cad5bc8{STARTED}[9.4.28.v20200408] -13:19:07.485 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:07.485 [Test worker] DEBUG org.apache.http.wire - http-outgoing-5 << "end of stream" -13:19:07.485 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-5: Close connection -13:19:07.485 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 6][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:07.485 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:19:07.485 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:19:07.486 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:65052<->127.0.0.1:8080 -13:19:07.486 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:19:07.486 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:19:07.486 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:19:07.486 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 >> POST /__admin/mappings HTTP/1.1 -13:19:07.486 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 >> Content-Length: 292 -13:19:07.486 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 >> Content-Type: text/plain; charset=UTF-8 -13:19:07.486 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 >> Host: localhost:8080 -13:19:07.486 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 >> Connection: Keep-Alive -13:19:07.486 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:19:07.486 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:19:07.486 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> "Content-Length: 292[\r][\n]" -13:19:07.486 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:19:07.486 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> "Host: localhost:8080[\r][\n]" -13:19:07.486 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> "Connection: Keep-Alive[\r][\n]" -13:19:07.486 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:19:07.486 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> "[\r][\n]" -13:19:07.486 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> "{[\r][\n]" -13:19:07.486 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " "id" : "6accf1bf-961a-400a-b265-4af915844f6a",[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " "request" : {[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " "url" : "/api/v0/components/provision-adapters/jobs",[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " "method" : "POST"[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " },[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " "response" : {[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " "status" : 200,[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " "fixedDelayMilliseconds" : 2100[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " },[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> " "uuid" : "6accf1bf-961a-400a-b265-4af915844f6a"[\r][\n]" -13:19:07.487 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 >> "}" -13:19:07.493 [qtp1209070290-132] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.494 [qtp1209070290-132] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@3188d562 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.498 [qtp1209070290-133] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.498 [qtp1209070290-133] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@40c8c7c9 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.498 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@4c0061f0 on ManagedSelector@740a358e{STARTED} id=1 keys=0 selected=0 updates=0 -13:19:07.498 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@740a358e{STARTED} id=1 keys=0 selected=0 updates=1 -13:19:07.499 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:07.499 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/0 selected -13:19:07.499 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 1 updates -13:19:07.499 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.499 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@4c0061f0 -13:19:07.499 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@4c0061f0 startThread=0 -13:19:07.499 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.499 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 1 keys -13:19:07.499 [qtp1209070290-134] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.499 [qtp1209070290-134] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@6d99a5a7 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.502 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.502 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@4c0061f0 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.502 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:19:07.502 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:07.503 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:19:07.503 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.503 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.503 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.503 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@25dd3757{AC.ReadCB@5d9665cf{HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:07.503 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.503 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@ba754ce on ManagedSelector@740a358e{STARTED} id=1 keys=1 selected=0 updates=0 -13:19:07.503 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@740a358e{STARTED} id=1 keys=1 selected=0 updates=1 -13:19:07.503 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:07.503 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/1 selected -13:19:07.503 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 1 updates -13:19:07.503 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.503 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@ba754ce -13:19:07.503 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.503 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.504 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@4c0061f0 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}] -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 1 keys -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 1/1/1 selected -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 1 keys, 0 updates -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65052], selector=sun.nio.ch.WindowsSelectorImpl@32adfd7e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=0} tryExecute EatWhatYouKill@ca22542/SelectorProducer@51d26865/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.5042142+02:00 -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=1} startReservedThread p=1 -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@3855960e startThread=0 -13:19:07.504 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@3855960e in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}] -13:19:07.504 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=1}@3855960e started -13:19:07.504 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@3855960e waiting -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@ca22542/SelectorProducer@51d26865/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.5042142+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:07.504 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.505 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.505 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 1 keys -13:19:07.505 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:07.505 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:07.505 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@25dd3757{AC.ReadCB@5d9665cf{HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 487 HeapByteBuffer@7b29b23d[p=0,l=487,c=8192,r=487]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 487 HeapByteBuffer@7b29b23d[p=0,l=487,c=8192,r=487]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@7b29b23d[p=0,l=487,c=8192,r=487]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@7b29b23d[p=0,l=487,c=8192,r=487]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:19:07.506 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 292 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=CONTENT,0 of 292},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} parsed true HttpParser{s=CONTENT,0 of 292} -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@a15c548{/__admin,null,AVAILABLE} -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@a15c548{/__admin,null,AVAILABLE} -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13@b4cb2ae7==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-658292fe@658292fe==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13@b4cb2ae7==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.507 [qtp1209070290-136] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@75ee4328 for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13 -13:19:07.517 [qtp1209070290-136] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:19:07.517 [qtp1209070290-136] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-658292fe@658292fe==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:07.517 [qtp1209070290-136] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13@b4cb2ae7==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:07.517 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=CONTENT,0 of 292},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=12} parse HeapByteBuffer@7b29b23d[p=195,l=487,c=8192,r=292]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "6accf1bf-961...a-b265-4af915844f6a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@7b29b23d[p=195,l=487,c=8192,r=292]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "6accf1bf-961...a-b265-4af915844f6a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=12} Content@71d1d94d{HeapByteBufferR@34d34913[p=195,l=487,c=8192,r=292]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "6accf1bf-961...a-b265-4af915844f6a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dbdee[c=0,q=0,[0]=null,s=STREAM] addContent Content@71d1d94d{HeapByteBufferR@34d34913[p=195,l=487,c=8192,r=292]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "6accf1bf-961...a-b265-4af915844f6a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=12} -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=12} -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dbdee[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:19:07.518 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=END,292 of 292},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=12} parsed false HttpParser{s=END,292 of 292} -13:19:07.519 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dbdee[c=292,q=1,[0]=EOF,s=STREAM] read 292 from Content@71d1d94d{HeapByteBufferR@34d34913[p=487,l=487,c=8192,r=0]={POST /__a...f6a"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:19:07.519 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=END,292 of 292},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=13} -13:19:07.519 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@52d598e[p=0,l=292,c=8192,r=292]={<<<{\r\n "id" : "6accf1bf-961...a-b265-4af915844f6a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@7a49f3d7[p=0,l=292,c=32768,r=292]={<<<{\r\n "id" : "6accf1bf-961...a-b265-4af915844f6a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@7a49f3d7[p=0,l=292,c=32768,r=292]={<<<{\r\n "id" : "6accf1bf-961...a-b265-4af915844f6a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@54fcb65c{null} -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=33} -201 null HTTP/1.1 -Content-Type: application/json - - -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@3b21c3e0[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@54af0c23] (null,[p=0,l=292,c=32768,r=292],false)@START -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@7a49f3d7[p=0,l=292,c=32768,r=292]={<<<{\r\n "id" : "6accf1bf-961...a-b265-4af915844f6a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@3b21c3e0[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@54af0c23] ([p=0,l=122,c=8192,r=122],[p=0,l=292,c=32768,r=292],false)@COMMITTED -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@614d9a2a{IDLE}->null [HeapByteBuffer@7b29b23d[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@7a49f3d7[p=0,l=292,c=32768,r=292]={<<<{\r\n "id" : "6accf1bf-961...a-b265-4af915844f6a"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:07.539 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@614d9a2a{WRITING}->null:IDLE-->WRITING -13:19:07.539 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "HTTP/1.1 201 Created[\r][\n]" -13:19:07.539 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "Content-Type: application/json[\r][\n]" -13:19:07.539 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "Transfer-Encoding: chunked[\r][\n]" -13:19:07.539 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:19:07.539 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "[\r][\n]" -13:19:07.539 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "124[\r][\n]" -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=33/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=END,292 of 292},g=HttpGenerator@5a29a7b6{s=COMMITTED}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=34} -13:19:07.540 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 << HTTP/1.1 201 Created -13:19:07.540 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 << Content-Type: application/json -13:19:07.540 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 << Transfer-Encoding: chunked -13:19:07.540 [Test worker] DEBUG org.apache.http.headers - http-outgoing-6 << Server: Jetty(9.4.28.v20200408) -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 292 NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=END,292 of 292},g=HttpGenerator@5a29a7b6{s=COMMITTED}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=34} -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=414 remaining=0 WriteFlusher@614d9a2a{WRITING}->null -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@614d9a2a{IDLE}->null:WRITING-->IDLE -13:19:07.540 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@3b21c3e0[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@54af0c23] ([p=122,l=122,c=8192,r=0],[p=292,l=292,c=32768,r=0],false)@COMMITTED -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@54fcb65c{null} -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@54fcb65c{null} -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@3b21c3e0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@50b28e09] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@3b21c3e0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@50b28e09] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "{[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " "id" : "6accf1bf-961a-400a-b265-4af915844f6a",[\r][\n]" -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@3b21c3e0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@50b28e09] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " "request" : {[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " "url" : "/api/v0/components/provision-adapters/jobs",[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " "method" : "POST"[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " },[\r][\n]" -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@614d9a2a{IDLE}->null [HeapByteBuffer@65b9693c[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " "response" : {[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " "status" : 200,[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " "fixedDelayMilliseconds" : 2100[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " },[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << " "uuid" : "6accf1bf-961a-400a-b265-4af915844f6a"[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "}" -13:19:07.540 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@614d9a2a{WRITING}->null:IDLE-->WRITING -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "0[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "[\r][\n]" -13:19:07.540 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 6][route: {}->http://localhost:8080] can be kept alive indefinitely -13:19:07.540 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-6: set socket timeout to 0 -13:19:07.541 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 6][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:07.543 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=END,292 of 292},g=HttpGenerator@5a29a7b6{s=COMPLETING}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=35} -13:19:07.543 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@614d9a2a{WRITING}->null -13:19:07.543 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@614d9a2a{IDLE}->null:WRITING-->IDLE -13:19:07.543 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@3b21c3e0[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@50b28e09] (null,[p=0,l=0,c=0,r=0],true)@END -13:19:07.544 [Test worker] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [d6edac0] HTTP POST http://localhost:8080/api/v0/components/provision-adapters/jobs -13:19:07.545 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:07.547 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4e5eef0f] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:19:07.547 [reactor-http-nio-1] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x4e5eef0f] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:07.550 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@42c78600 on ManagedSelector@4fc62f79{STARTED} id=0 keys=0 selected=0 updates=0 -13:19:07.550 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4fc62f79{STARTED} id=0 keys=0 selected=0 updates=1 -13:19:07.550 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:19:07.550 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:19:07.550 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080]}, [connected]) -13:19:07.550 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken with none selected -13:19:07.550 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 0/0/0 selected -13:19:07.550 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 0 keys, 1 updates -13:19:07.551 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.550 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:19:07.551 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@42c78600 -13:19:07.551 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@42c78600 startThread=0 -13:19:07.551 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.551 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 1 keys -13:19:07.551 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:07.551 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:07.551 [reactor-http-nio-1] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs, method=POST} -13:19:07.551 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:19:07.552 [reactor-http-nio-1] DEBUG org.springframework.http.codec.json.Jackson2JsonEncoder - [d6edac0] Encoding [ComponentInstanceRequest(id=0d60571b-63fa-4e26-81e4-b719a1199105, productId=00f65044-3acc-4629-803e- (truncated)...] -13:19:07.553 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:19:07.553 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@42c78600 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:07.554 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:19:07.555 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@495bafbc in null -13:19:07.555 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:07.555 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=49} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@6b88ab81{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@6b88ab81{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=50} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@44cae077) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@6b88ab81{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@6b88ab81{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@6b88ab81{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=50} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=292 -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@6b88ab81{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,292 of 292} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@7b29b23d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@7b29b23d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@7b29b23d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@7b29b23d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@7b29b23d[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:19:07.556 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.557 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.557 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@25dd3757{AC.ReadCB@5d9665cf{HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:07.557 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.557 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@ba754ce on ManagedSelector@740a358e{STARTED} id=1 keys=1 selected=0 updates=0 -13:19:07.557 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@740a358e{STARTED} id=1 keys=1 selected=0 updates=1 -13:19:07.557 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:07.557 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/1 selected -13:19:07.557 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 1 updates -13:19:07.557 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.557 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@ba754ce -13:19:07.557 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.557 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.557 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 1 keys -13:19:07.557 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:07.557 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:07.561 [qtp1209070290-137] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:07.561 [qtp1209070290-137] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=0}-> -13:19:07.561 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.562 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.562 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.562 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@6b09ecfd{AC.ReadCB@5a99d0b6{HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:07.563 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.563 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@2ebe56f8 on ManagedSelector@4fc62f79{STARTED} id=0 keys=1 selected=0 updates=0 -13:19:07.563 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4fc62f79{STARTED} id=0 keys=1 selected=0 updates=1 -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken with none selected -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 0/0/1 selected -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 0 keys, 1 updates -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@2ebe56f8 -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 1 keys -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 1/1/1 selected -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 1 keys, 0 updates -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65053], selector=sun.nio.ch.WindowsSelectorImpl@665861d, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0} tryExecute EatWhatYouKill@62a7e142/SelectorProducer@566e727b/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.5632081+02:00 -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}@3855960e offer EatWhatYouKill@62a7e142/SelectorProducer@566e727b/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.5632081+02:00 -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=1} startReservedThread p=1 -13:19:07.563 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@c9ded6d startThread=0 -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:07.5642059+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@6b09ecfd{AC.ReadCB@5a99d0b6{HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 356 HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 356 HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:07.564 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -POST //localhost:8080/api/v0/components/provision-adapters/jobs HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Authorization: Bearer -Content-Length: 144 - - -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} parsed true HttpParser{s=CONTENT,0 of 144} -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@a15c548{/__admin,null,AVAILABLE} -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@499f629a in null -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:07.565 [qtp1209070290-130] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@636050da for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f -13:19:07.566 [qtp1209070290-130] INFO org.eclipse.jetty.server.handler.ContextHandler.ROOT - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.StubRequestHandler. Normalized mapped under returned 'null' -13:19:07.566 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@c9ded6d in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}] -13:19:07.566 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=1}@c9ded6d started -13:19:07.566 [qtp1209070290-130] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:07.566 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@c9ded6d waiting -13:19:07.566 [qtp1209070290-130] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:07.566 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@3855960e task=EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:19:07.5662039+02:00 -13:19:07.566 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:19:07.5662039+02:00 tryProduce true -13:19:07.566 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:07.566 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:07.566 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:07.566 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 1 keys -13:19:07.567 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=3} parse HeapByteBuffer@7b29b23d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:07.569 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@7b29b23d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:07.569 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=5} Content@789ccb77{HeapByteBufferR@1b89a78c[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:07.569 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@29b09dd5[c=0,q=0,[0]=null,s=STREAM] addContent Content@789ccb77{HeapByteBufferR@1b89a78c[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:07.570 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:07.570 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=6} -13:19:07.570 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:07.570 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=6} -13:19:07.570 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@29b09dd5[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:19:07.570 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=END,144 of 144},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=6} parsed false HttpParser{s=END,144 of 144} -13:19:07.570 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@29b09dd5[c=144,q=1,[0]=EOF,s=STREAM] read 144 from Content@789ccb77{HeapByteBufferR@1b89a78c[p=356,l=356,c=8192,r=0]={POST /api...rs":{}}<<<>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:07.570 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=END,144 of 144},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=6} -13:19:07.570 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:07.566 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:07.574 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@42c78600 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:09.551 [reactor-http-nio-1] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x4e5eef0f, L:/127.0.0.1:65053 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:19:09.552 [reactor-http-nio-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [d6edac0] Cancel signal (to close connection) -13:19:09.553 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4e5eef0f, L:/127.0.0.1:65053 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:19:09.553 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x4e5eef0f, L:/127.0.0.1:65053 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x4e5eef0f, L:/127.0.0.1:65053 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:09.553 [reactor-http-nio-1] DEBUG reactor.netty.ReactorNetty - [id: 0x4e5eef0f, L:/127.0.0.1:65053 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x4e5eef0f, L:/127.0.0.1:65053 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:09.553 [reactor-http-nio-1] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x4e5eef0f, L:/127.0.0.1:65053 ! R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x4e5eef0f, L:/127.0.0.1:65053 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@499f629a -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@48b7eeb9 exclude no deflater -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@566e53ab{null} -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2109} -200 null HTTP/1.1 -Matched-Stub-Id: 6accf1bf-961a-400a-b265-4af915844f6a -Vary: Accept-Encoding, User-Agent - - -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@8d2b2d[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2dfe40dc] (null,[p=0,l=0,c=0,r=0],false)@START -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 6accf1bf-961a-400a-b265-4af915844f6a -Vary: Accept-Encoding, User-Agent - - -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@8d2b2d[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2dfe40dc] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:09.673 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5acba1fc{IDLE}->null [HeapByteBuffer@7b29b23d[p=0,l=170,c=8192,r=170]={<<>>rization:...\x00\x00\x00\x00\x00\x00\x00}] -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5acba1fc{WRITING}->null:IDLE-->WRITING -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2110/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=END,144 of 144},g=HttpGenerator@56c4341a{s=COMMITTED}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2110} -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@5acba1fc{WRITING}->null -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5acba1fc{IDLE}->null:WRITING-->IDLE -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@8d2b2d[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2dfe40dc] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@566e53ab{null} -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@566e53ab{null} -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@8d2b2d[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7e1c4205] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@8d2b2d[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7e1c4205] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@8d2b2d[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@7e1c4205] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@5acba1fc{IDLE}->null [HeapByteBuffer@65b9693c[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:09.674 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5acba1fc{WRITING}->null:IDLE-->WRITING -13:19:09.676 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:19:09.677 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@5acba1fc{FAILED}->null:WRITING-->FAILED -13:19:09.677 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:19:09.678 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=END,144 of 144},g=HttpGenerator@56c4341a{s=COMPLETING}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2114} {} -13:19:09.678 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=END,144 of 144},g=HttpGenerator@56c4341a{s=COMPLETING}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2114} -13:19:09.678 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=END,144 of 144},g=HttpGenerator@56c4341a{s=COMPLETING}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2114} -13:19:09.678 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=4/30000}{io=0/0,kio=0,kro=1}->HttpConnection@5a99d0b6[p=HttpParser{s=END,144 of 144},g=HttpGenerator@56c4341a{s=COMPLETING}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2114} -13:19:09.678 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@6b09ecfd{null} -13:19:09.678 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@4fc62f79{STARTED} id=0 keys=1 selected=0 updates=0 -13:19:09.678 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken with none selected -13:19:09.679 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 0/0/0 selected -13:19:09.679 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 0 keys, 0 updates -13:19:09.679 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:09.679 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:09.679 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 0 keys -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@17a1caa8 startThread=0 -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2115} -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@1f9b4d21{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@1f9b4d21{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2115} -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@48868020) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@1f9b4d21{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@1f9b4d21{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@1f9b4d21{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2115} -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs written=0 -13:19:09.679 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@1f9b4d21{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:09.680 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,144 of 144} -13:19:09.681 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:19:09.681 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.681 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=6/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@5a99d0b6[p=HttpParser{s=CLOSE,144 of 144},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:09.681 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@ac96191 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:09.681 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@17a1caa8 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:09.681 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@5a99d0b6[p=HttpParser{s=CLOSE,144 of 144},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.681 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@5a99d0b6::NetworkTrafficSocketChannelEndPoint@15632651{/127.0.0.1:65053<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@5a99d0b6[p=HttpParser{s=CLOSE,144 of 144},g=HttpGenerator@56c4341a{s=START}]=>HttpChannelOverHttp@1ba4da8d{s=HttpChannelState@1f9b4d21{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.681 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@17a1caa8 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:09.838 [parallel-1] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [d6edac0] HTTP POST http://localhost:8080/api/v0/components/provision-adapters/jobs -13:19:09.840 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf18d531a] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:19:09.841 [reactor-http-nio-2] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0xf18d531a] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:09.844 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@46f80a80 on ManagedSelector@740a358e{STARTED} id=1 keys=1 selected=0 updates=0 -13:19:09.845 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@740a358e{STARTED} id=1 keys=1 selected=0 updates=1 -13:19:09.845 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:19:09.845 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:19:09.845 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:09.845 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/1 selected -13:19:09.845 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 1 updates -13:19:09.845 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080]}, [connected]) -13:19:09.845 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:09.845 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@46f80a80 -13:19:09.845 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@46f80a80 startThread=0 -13:19:09.845 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:09.845 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 2 keys -13:19:09.845 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:19:09.845 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:09.846 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:09.846 [reactor-http-nio-2] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs, method=POST} -13:19:09.846 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:19:09.847 [reactor-http-nio-2] DEBUG org.springframework.http.codec.json.Jackson2JsonEncoder - [d6edac0] Encoding [ComponentInstanceRequest(id=0d60571b-63fa-4e26-81e4-b719a1199105, productId=00f65044-3acc-4629-803e- (truncated)...] -13:19:09.849 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:19:09.854 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@46f80a80 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:09.854 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:19:09.854 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:09.854 [qtp1209070290-130] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:19:09.854 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.854 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.854 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.854 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@29302e0d{AC.ReadCB@364319b5{HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:09.855 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.855 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@23b83e6e on ManagedSelector@740a358e{STARTED} id=1 keys=2 selected=0 updates=0 -13:19:09.855 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@740a358e{STARTED} id=1 keys=2 selected=0 updates=1 -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:09.855 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/2 selected -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 1 updates -13:19:09.855 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@46f80a80 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@23b83e6e -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 2 keys -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 1/1/2 selected -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 1 keys, 0 updates -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65054], selector=sun.nio.ch.WindowsSelectorImpl@32adfd7e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0} tryExecute EatWhatYouKill@ca22542/SelectorProducer@51d26865/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:19:09.8558844+02:00 -13:19:09.855 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}@c9ded6d offer EatWhatYouKill@ca22542/SelectorProducer@51d26865/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:19:09.8558844+02:00 -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=1} startReservedThread p=1 -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@20cc5bb9 startThread=0 -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:19:09.8569127+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@29302e0d{AC.ReadCB@364319b5{HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 356 HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 356 HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:09.856 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -POST //localhost:8080/api/v0/components/provision-adapters/jobs HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Authorization: Bearer -Content-Length: 144 - - -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} parsed true HttpParser{s=CONTENT,0 of 144} -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@a15c548{/__admin,null,AVAILABLE} -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@4c604236 in null -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:09.857 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:09.858 [qtp1209070290-131] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:09.858 [qtp1209070290-131] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:09.858 [qtp1209070290-131] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:09.858 [qtp1209070290-131] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:09.858 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} parse HeapByteBuffer@7b29b23d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:09.858 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@7b29b23d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:09.858 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} Content@58115852{HeapByteBufferR@1d78e02f[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:09.858 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@5fab71aa[c=0,q=0,[0]=null,s=STREAM] addContent Content@58115852{HeapByteBufferR@1d78e02f[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:09.859 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:09.859 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:09.859 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:09.859 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:09.859 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@5fab71aa[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:19:09.859 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@c9ded6d task=EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:09.8598913+02:00 -13:19:09.859 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@364319b5[p=HttpParser{s=END,144 of 144},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} parsed false HttpParser{s=END,144 of 144} -13:19:09.859 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:09.8598913+02:00 tryProduce true -13:19:09.859 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:09.859 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:09.859 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@5fab71aa[c=144,q=1,[0]=EOF,s=STREAM] read 144 from Content@58115852{HeapByteBufferR@1d78e02f[p=356,l=356,c=8192,r=0]={POST /api...rs":{}}<<<>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:09.859 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@364319b5[p=HttpParser{s=END,144 of 144},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:09.859 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@364319b5[p=HttpParser{s=END,144 of 144},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:09.859 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@20cc5bb9 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}] -13:19:09.859 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:09.859 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=1}@20cc5bb9 started -13:19:09.859 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@20cc5bb9 waiting -13:19:09.859 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 2 keys -13:19:10.657 [qtp824248140-21] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp824248140-21,5,main] exited for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:11.320 [qtp824248140-23] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp824248140-23,5,main] exited for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:11.321 [qtp824248140-20] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp824248140-20,5,main] exited for QueuedThreadPool[qtp824248140]@3121074c{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:11.847 [reactor-http-nio-2] WARN reactor.netty.http.client.HttpClientConnect - [id: 0xf18d531a, L:/127.0.0.1:65054 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:19:11.848 [reactor-http-nio-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [d6edac0] Cancel signal (to close connection) -13:19:11.850 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf18d531a, L:/127.0.0.1:65054 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:19:11.850 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xf18d531a, L:/127.0.0.1:65054 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0xf18d531a, L:/127.0.0.1:65054 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:11.851 [reactor-http-nio-2] DEBUG reactor.netty.ReactorNetty - [id: 0xf18d531a, L:/127.0.0.1:65054 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0xf18d531a, L:/127.0.0.1:65054 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:11.851 [reactor-http-nio-2] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0xf18d531a, L:/127.0.0.1:65054 ! R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0xf18d531a, L:/127.0.0.1:65054 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@4c604236 -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@1114f99b exclude no deflater -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@4315f023{null} -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2109} -200 null HTTP/1.1 -Matched-Stub-Id: 6accf1bf-961a-400a-b265-4af915844f6a -Vary: Accept-Encoding, User-Agent - - -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@193619f6[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d141d5b] (null,[p=0,l=0,c=0,r=0],false)@START -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 6accf1bf-961a-400a-b265-4af915844f6a -Vary: Accept-Encoding, User-Agent - - -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@193619f6[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d141d5b] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2bfae743{IDLE}->null [HeapByteBuffer@7b29b23d[p=0,l=170,c=8192,r=170]={<<>>rization:...\x00\x00\x00\x00\x00\x00\x00}] -13:19:11.966 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2bfae743{WRITING}->null:IDLE-->WRITING -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2110/30000}{io=0/0,kio=0,kro=1}->HttpConnection@364319b5[p=HttpParser{s=END,144 of 144},g=HttpGenerator@5105da94{s=COMMITTED}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2110} -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@2bfae743{WRITING}->null -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2bfae743{IDLE}->null:WRITING-->IDLE -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@193619f6[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1d141d5b] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@4315f023{null} -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@4315f023{null} -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@193619f6[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@47829ef7] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@193619f6[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@47829ef7] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@193619f6[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@47829ef7] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@2bfae743{IDLE}->null [HeapByteBuffer@65b9693c[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:11.967 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2bfae743{WRITING}->null:IDLE-->WRITING -13:19:11.969 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:19:11.969 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@2bfae743{FAILED}->null:WRITING-->FAILED -13:19:11.969 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:135) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 52 common frames omitted -13:19:11.970 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@364319b5[p=HttpParser{s=END,144 of 144},g=HttpGenerator@5105da94{s=COMPLETING}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2113} {} -13:19:11.970 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@364319b5[p=HttpParser{s=END,144 of 144},g=HttpGenerator@5105da94{s=COMPLETING}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2113} -13:19:11.970 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@364319b5[p=HttpParser{s=END,144 of 144},g=HttpGenerator@5105da94{s=COMPLETING}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2113} -13:19:11.970 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@364319b5[p=HttpParser{s=END,144 of 144},g=HttpGenerator@5105da94{s=COMPLETING}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2113} -13:19:11.970 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@29302e0d{null} -13:19:11.970 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@740a358e{STARTED} id=1 keys=2 selected=0 updates=0 -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@6ed2d658 startThread=0 -13:19:11.971 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:11.971 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/1 selected -13:19:11.971 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 0 updates -13:19:11.971 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:11.971 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:11.971 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 1 keys -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2114} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@4ab81742{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@4ab81742{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2114} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@5391e01c) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@4ab81742{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@4ab81742{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@4ab81742{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2114} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs written=0 -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@4ab81742{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,144 of 144} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:11.971 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=4/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@364319b5[p=HttpParser{s=CLOSE,144 of 144},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:11.972 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@558f1e61 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:11.972 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@6ed2d658 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:11.972 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=4/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@364319b5[p=HttpParser{s=CLOSE,144 of 144},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:11.972 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@364319b5::NetworkTrafficSocketChannelEndPoint@4fc50c8d{/127.0.0.1:65054<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=5/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@364319b5[p=HttpParser{s=CLOSE,144 of 144},g=HttpGenerator@5105da94{s=START}]=>HttpChannelOverHttp@53d5731a{s=HttpChannelState@4ab81742{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:11.972 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@6ed2d658 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:12.092 [parallel-2] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [d6edac0] HTTP POST http://localhost:8080/api/v0/components/provision-adapters/jobs -13:19:12.095 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9890b2d5] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:19:12.095 [reactor-http-nio-3] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x9890b2d5] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:12.097 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:19:12.097 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:19:12.097 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080]}, [connected]) -13:19:12.097 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@3fa8c3b on ManagedSelector@4fc62f79{STARTED} id=0 keys=0 selected=0 updates=0 -13:19:12.097 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4fc62f79{STARTED} id=0 keys=0 selected=0 updates=1 -13:19:12.097 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:19:12.097 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken with none selected -13:19:12.097 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 0/0/0 selected -13:19:12.097 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 0 keys, 1 updates -13:19:12.097 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:12.097 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@3fa8c3b -13:19:12.097 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@3fa8c3b startThread=0 -13:19:12.097 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:12.097 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 1 keys -13:19:12.097 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:12.098 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:12.098 [reactor-http-nio-3] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs, method=POST} -13:19:12.098 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:19:12.099 [reactor-http-nio-3] DEBUG org.springframework.http.codec.json.Jackson2JsonEncoder - [d6edac0] Encoding [ComponentInstanceRequest(id=0d60571b-63fa-4e26-81e4-b719a1199105, productId=00f65044-3acc-4629-803e- (truncated)...] -13:19:12.101 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:19:12.102 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@3fa8c3b in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:12.102 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:19:12.102 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:12.102 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:19:12.102 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:12.102 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:12.102 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:12.103 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@39a802dd{AC.ReadCB@585e6bb7{HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:12.103 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:12.103 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@227165e3 on ManagedSelector@4fc62f79{STARTED} id=0 keys=1 selected=0 updates=0 -13:19:12.103 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4fc62f79{STARTED} id=0 keys=1 selected=0 updates=1 -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken with none selected -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 0/0/1 selected -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 0 keys, 1 updates -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:12.103 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@227165e3 -13:19:12.103 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@3fa8c3b in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 1 keys -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 1/1/1 selected -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 1 keys, 0 updates -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65055], selector=sun.nio.ch.WindowsSelectorImpl@665861d, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:12.103 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:12.104 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:12.104 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0} tryExecute EatWhatYouKill@62a7e142/SelectorProducer@566e727b/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:19:12.1045776+02:00 -13:19:12.104 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}@20cc5bb9 offer EatWhatYouKill@62a7e142/SelectorProducer@566e727b/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:19:12.1045776+02:00 -13:19:12.104 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=1} startReservedThread p=1 -13:19:12.104 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@72f2ef77 startThread=0 -13:19:12.104 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=1]@2020-09-25T13:19:12.1045776+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:12.104 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@39a802dd{AC.ReadCB@585e6bb7{HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:12.104 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 356 HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 356 HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -POST //localhost:8080/api/v0/components/provision-adapters/jobs HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Authorization: Bearer -Content-Length: 144 - - -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} parsed true HttpParser{s=CONTENT,0 of 144} -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -13:19:12.105 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@a15c548{/__admin,null,AVAILABLE} -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@3ed919f1 in null -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} parse HeapByteBuffer@7b29b23d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@7b29b23d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:12.106 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} Content@fe92bc0{HeapByteBufferR@65f1f8e5[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1d3a7b[c=0,q=0,[0]=null,s=STREAM] addContent Content@fe92bc0{HeapByteBufferR@65f1f8e5[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1d3a7b[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} parsed false HttpParser{s=END,144 of 144} -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@1d3a7b[c=144,q=1,[0]=EOF,s=STREAM] read 144 from Content@fe92bc0{HeapByteBufferR@65f1f8e5[p=356,l=356,c=8192,r=0]={POST /api...rs":{}}<<<>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:12.107 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:12.112 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@20cc5bb9 task=EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:19:12.1125721+02:00 -13:19:12.112 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:19:12.1125721+02:00 tryProduce true -13:19:12.112 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:12.112 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:12.112 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=7} -13:19:12.112 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 1 keys -13:19:12.112 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@72f2ef77 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}] -13:19:12.112 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=1}@72f2ef77 started -13:19:12.112 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@72f2ef77 waiting -13:19:14.099 [reactor-http-nio-3] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x9890b2d5, L:/127.0.0.1:65055 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:19:14.100 [reactor-http-nio-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [d6edac0] Cancel signal (to close connection) -13:19:14.101 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9890b2d5, L:/127.0.0.1:65055 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:19:14.102 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x9890b2d5, L:/127.0.0.1:65055 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x9890b2d5, L:/127.0.0.1:65055 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:14.102 [reactor-http-nio-3] DEBUG reactor.netty.ReactorNetty - [id: 0x9890b2d5, L:/127.0.0.1:65055 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x9890b2d5, L:/127.0.0.1:65055 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:14.102 [reactor-http-nio-3] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x9890b2d5, L:/127.0.0.1:65055 ! R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x9890b2d5, L:/127.0.0.1:65055 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STARTED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@3ed919f1 -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@767dad18 exclude no deflater -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@300c2f3c{null} -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2106} -200 null HTTP/1.1 -Matched-Stub-Id: 6accf1bf-961a-400a-b265-4af915844f6a -Vary: Accept-Encoding, User-Agent - - -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5a50cf08[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@33f7e8db] (null,[p=0,l=0,c=0,r=0],false)@START -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpGenerator - Matched-Stub-Id: 6accf1bf-961a-400a-b265-4af915844f6a -Vary: Accept-Encoding, User-Agent - - -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5a50cf08[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@33f7e8db] ([p=0,l=170,c=8192,r=170],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@28f996d0{IDLE}->null [HeapByteBuffer@7b29b23d[p=0,l=170,c=8192,r=170]={<<>>rization:...\x00\x00\x00\x00\x00\x00\x00}] -13:19:14.211 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@28f996d0{WRITING}->null:IDLE-->WRITING -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 170 NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=2107/30000}{io=0/0,kio=0,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=COMMITTED}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2107} -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=170 remaining=0 WriteFlusher@28f996d0{WRITING}->null -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@28f996d0{IDLE}->null:WRITING-->IDLE -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5a50cf08[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@33f7e8db] ([p=170,l=170,c=8192,r=0],[p=0,l=0,c=0,r=0],false)@COMMITTED -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@300c2f3c{null} -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@300c2f3c{null} -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5a50cf08[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@79dd293c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5a50cf08[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@79dd293c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5a50cf08[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@79dd293c] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@28f996d0{IDLE}->null [HeapByteBuffer@65b9693c[p=0,l=5,c=1024,r=5]={<<<0\r\n\r\n>>>\r\n\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:14.212 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@28f996d0{WRITING}->null:IDLE-->WRITING -13:19:14.214 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.WriteFlusher - write exception -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 53 common frames omitted -13:19:14.214 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@28f996d0{FAILED}->null:WRITING-->FAILED -13:19:14.214 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:283) - at org.eclipse.jetty.io.NetworkTrafficSocketChannelEndPoint.flush(NetworkTrafficSocketChannelEndPoint.java:66) - at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) - at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) - at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) - at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:830) - at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) - at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:549) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:829) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:112) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.close(HttpOutput.java:602) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:235) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -Caused by: java.io.IOException: Se ha anulado una conexión establecida por el software en su equipo host. - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:113) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:79) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:50) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:466) - at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:261) - ... 53 common frames omitted -13:19:14.215 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=COMPLETING}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2110} {} -13:19:14.215 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=COMPLETING}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2110} -13:19:14.215 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,OPEN,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=COMPLETING}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2110} -13:19:14.215 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=COMPLETING}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2110} -13:19:14.215 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@39a802dd{null} -13:19:14.215 [qtp1209070290-135] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@4fc62f79{STARTED} id=0 keys=1 selected=0 updates=0 -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@25298180 startThread=0 -13:19:14.216 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken with none selected -13:19:14.216 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 0/0/0 selected -13:19:14.216 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 0 keys, 0 updates -13:19:14.216 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:14.216 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:14.216 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 0 keys -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,org.eclipse.jetty.io.EofException) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2111} -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@493fa39{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@493fa39{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2111} -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@291414ce) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@493fa39{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@493fa39{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@493fa39{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:14.216 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@25298180 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2111} -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /api/v0/components/provision-adapters/jobs written=0 -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@493fa39{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,144 of 144} -13:19:14.216 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=4/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=COMPLETING}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.217 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=4/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@585e6bb7[p=HttpParser{s=END,144 of 144},g=HttpGenerator@199cb63b{s=COMPLETING}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.217 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@25298180 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:14.216 [qtp1209070290-135] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:19:14.218 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.218 [qtp1209070290-135] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@585e6bb7::NetworkTrafficSocketChannelEndPoint@2fadc5d2{/127.0.0.1:65055<->/127.0.0.1:8080,CLOSED,fill=-,flush=F,to=6/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@585e6bb7[p=HttpParser{s=CLOSE,144 of 144},g=HttpGenerator@199cb63b{s=START}]=>HttpChannelOverHttp@7c0b93f6{s=HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@493fa39{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:14.218 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@3855960e size 1 > capacity -13:19:14.218 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@3855960e in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:14.575 [parallel-3] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [d6edac0] HTTP POST http://localhost:8080/api/v0/components/provision-adapters/jobs -13:19:14.578 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x6a7222f7] Created a new pooled channel, now 1 active connections and 0 inactive connections -13:19:14.578 [reactor-http-nio-4] DEBUG reactor.netty.channel.BootstrapHandlers - [id: 0x6a7222f7] Initialized pipeline DefaultChannelPipeline{(BootstrapHandlers$BootstrapInitializerHandler#0 = reactor.netty.channel.BootstrapHandlers$BootstrapInitializerHandler), (PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer#0 = reactor.netty.resources.PooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer), (reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:14.580 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@4c3a6255 on ManagedSelector@740a358e{STARTED} id=1 keys=1 selected=0 updates=0 -13:19:14.580 [qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@740a358e{STARTED} id=1 keys=1 selected=0 updates=1 -13:19:14.580 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] Registering pool release on close event for channel -13:19:14.580 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] Channel connected, now 1 active connections and 0 inactive connections -13:19:14.580 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:14.580 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/1 selected -13:19:14.580 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] onStateChange(PooledConnection{channel=[id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080]}, [connected]) -13:19:14.580 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 1 updates -13:19:14.580 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:14.580 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@4c3a6255 -13:19:14.580 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@4c3a6255 startThread=0 -13:19:14.580 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:14.580 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] onStateChange(GET{uri=/, connection=PooledConnection{channel=[id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080]}}, [configured]) -13:19:14.580 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 2 keys -13:19:14.580 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] Added decoder [ReadTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:14.581 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] Added decoder [WriteTimeoutHandler] at the end of the user pipeline, full pipeline: [reactor.left.httpCodec, ReadTimeoutHandler, WriteTimeoutHandler, reactor.right.reactiveBridge, DefaultChannelPipeline$TailContext#0] -13:19:14.581 [reactor-http-nio-4] DEBUG reactor.netty.http.client.HttpClientConnect - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] Handler is being applied: {uri=http://localhost:8080/api/v0/components/provision-adapters/jobs, method=POST} -13:19:14.581 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080]}}, [request_prepared]) -13:19:14.582 [reactor-http-nio-4] DEBUG org.springframework.http.codec.json.Jackson2JsonEncoder - [d6edac0] Encoding [ComponentInstanceRequest(id=0d60571b-63fa-4e26-81e4-b719a1199105, productId=00f65044-3acc-4629-803e- (truncated)...] -13:19:14.583 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080]}}, [request_sent]) -13:19:14.585 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@4c3a6255 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:14.586 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:19:14.586 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:14.586 [qtp1209070290-131] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:19:14.586 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.587 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.587 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.587 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@538ce3e8{AC.ReadCB@25b88b26{HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:14.587 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.587 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@22fb5e99 on ManagedSelector@740a358e{STARTED} id=1 keys=2 selected=0 updates=0 -13:19:14.587 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@740a358e{STARTED} id=1 keys=2 selected=0 updates=1 -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:14.587 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/2 selected -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 1 updates -13:19:14.587 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@4c3a6255 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@22fb5e99 -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 2 keys -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 1/1/2 selected -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 1 keys, 0 updates -13:19:14.587 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65057], selector=sun.nio.ch.WindowsSelectorImpl@32adfd7e, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.588 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:14.588 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:14.588 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0} tryExecute EatWhatYouKill@ca22542/SelectorProducer@51d26865/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:14.5882384+02:00 -13:19:14.588 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}@72f2ef77 offer EatWhatYouKill@ca22542/SelectorProducer@51d26865/PRODUCING/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:14.5882384+02:00 -13:19:14.588 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=1} startReservedThread p=1 -13:19:14.588 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@2e92959d startThread=0 -13:19:14.588 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:14.5882384+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:14.588 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@538ce3e8{AC.ReadCB@25b88b26{HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 356 HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 356 HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@7b29b23d[p=0,l=356,c=8192,r=356]={<<>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> IN_VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: */* --> FIELD -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> IN_VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/json --> FIELD -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> IN_VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Authorization --> FIELD -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:19:14.589 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=0} -POST //localhost:8080/api/v0/components/provision-adapters/jobs HTTP/1.1 -User-Agent: ReactorNetty/0.9.7.RELEASE -Host: localhost:8080 -Accept: */* -Content-Type: application/json -Authorization: Bearer -Content-Length: 144 - - -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} parsed true HttpParser{s=CONTENT,0 of 144} -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/api/v0/components/provision-adapters/jobs HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@c4fb931{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1} -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@a15c548{/__admin,null,AVAILABLE} -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STARTED,min=32,inflate=-1} handle Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@3aa0e9bc in null -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=||/api/v0/components/provision-adapters/jobs @ o.e.j.s.ServletContextHandler@56621157{/,null,AVAILABLE} -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet |/api/v0/components/provision-adapters/jobs|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:14.590 [qtp1209070290-136] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:14.591 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=CONTENT,0 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} parse HeapByteBuffer@7b29b23d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:14.591 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@7b29b23d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00} -13:19:14.591 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} Content@29fa6fc7{HeapByteBufferR@4eb0332d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:14.591 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@74b4691b[c=0,q=0,[0]=null,s=STREAM] addContent Content@29fa6fc7{HeapByteBufferR@4eb0332d[p=212,l=356,c=8192,r=144]={POST /api...144\r\n\r\n<<<{"id":"0d60571b-63fa-4e26...ev-build","answers":{}}>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:14.591 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:14.591 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:14.591 [qtp1209070290-136] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:14.591 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2} -13:19:14.591 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@74b4691b[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:19:14.592 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=3} parsed false HttpParser{s=END,144 of 144} -13:19:14.592 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@74b4691b[c=144,q=1,[0]=EOF,s=STREAM] read 144 from Content@29fa6fc7{HeapByteBufferR@4eb0332d[p=356,l=356,c=8192,r=0]={POST /api...rs":{}}<<<>>>response"...\x00\x00\x00\x00\x00\x00\x00}} -13:19:14.592 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=3} -13:19:14.592 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:14.596 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@72f2ef77 task=EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:19:14.5962243+02:00 -13:19:14.596 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=true/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:19:14.5962243+02:00 tryProduce true -13:19:14.596 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:14.596 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:14.596 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=7} -13:19:14.596 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 2 keys -13:19:14.596 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}@2e92959d in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=0/1,p=1}] -13:19:14.596 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=1}@2e92959d started -13:19:14.596 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@2e92959d waiting -13:19:16.580 [reactor-http-nio-4] WARN reactor.netty.http.client.HttpClientConnect - [id: 0x6a7222f7, L:/127.0.0.1:65057 - R:localhost/127.0.0.1:8080] The connection observed an error -io.netty.handler.timeout.ReadTimeoutException: null -13:19:16.581 [reactor-http-nio-4] DEBUG org.springframework.web.reactive.function.client.ExchangeFunctions - [d6edac0] Cancel signal (to close connection) -13:19:16.582 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@5cad5bc8{STARTED}[9.4.28.v20200408] -13:19:16.582 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@5cad5bc8{STOPPING}[9.4.28.v20200408] -13:19:16.582 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x6a7222f7, L:/127.0.0.1:65057 ! R:localhost/127.0.0.1:8080] Channel closed, now 0 active connections and 0 inactive connections -13:19:16.582 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x6a7222f7, L:/127.0.0.1:65057 ! R:localhost/127.0.0.1:8080] Non Removed handler: ReadTimeoutHandler, context: ChannelHandlerContext(ReadTimeoutHandler, [id: 0x6a7222f7, L:/127.0.0.1:65057 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:16.582 [reactor-http-nio-4] DEBUG reactor.netty.ReactorNetty - [id: 0x6a7222f7, L:/127.0.0.1:65057 ! R:localhost/127.0.0.1:8080] Non Removed handler: WriteTimeoutHandler, context: ChannelHandlerContext(WriteTimeoutHandler, [id: 0x6a7222f7, L:/127.0.0.1:65057 ! R:localhost/127.0.0.1:8080]), pipeline: DefaultChannelPipeline{(reactor.left.httpCodec = io.netty.handler.codec.http.HttpClientCodec), (ReadTimeoutHandler = io.netty.handler.timeout.ReadTimeoutHandler), (WriteTimeoutHandler = io.netty.handler.timeout.WriteTimeoutHandler), (reactor.right.reactiveBridge = reactor.netty.channel.ChannelOperationsHandler)} -13:19:16.583 [reactor-http-nio-4] DEBUG reactor.netty.resources.PooledConnectionProvider - [id: 0x6a7222f7, L:/127.0.0.1:65057 ! R:localhost/127.0.0.1:8080] onStateChange(POST{uri=/api/v0/components/provision-adapters/jobs, connection=PooledConnection{channel=[id: 0x6a7222f7, L:/127.0.0.1:65057 ! R:localhost/127.0.0.1:8080]}}, [disconnecting]) -13:19:16.583 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.583 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.583 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@740a358e{STARTED} id=1 keys=2 selected=0 updates=0 -13:19:16.583 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@2b8a8a62 on ManagedSelector@740a358e{STOPPING} id=1 keys=2 selected=0 updates=0 -13:19:16.583 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@740a358e{STOPPING} id=1 keys=2 selected=0 updates=1 -13:19:16.583 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:16.583 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/2 selected -13:19:16.583 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 1 updates -13:19:16.583 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:16.583 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@2b8a8a62 -13:19:16.583 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 2 connections on ManagedSelector@740a358e{STOPPING} id=1 keys=2 selected=0 updates=0 -13:19:16.583 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9028/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.583 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=9028/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.583 [qtp1209070290-133] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1209070290-133-acceptor-1@40c8c7c9-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=9028/30000}{io=1/1,kio=1,kro=1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@25dd3757{AC.ReadCB@5d9665cf{HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,CLOSED,fill=FI,flush=-,to=9029/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5d9665cf[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=START,0 of -1} -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.http.HttpParser - START --> CLOSE -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractConnection - HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9029/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5d9665cf[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillInterestedFailed {} -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@740a358e{STOPPING} id=1 keys=2 selected=0 updates=0 -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@d18051d startThread=0 -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1996/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1995} -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1996/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1995} -13:19:16.584 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1996/30000}{io=0/0,kio=0,kro=1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1995} -13:19:16.585 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@538ce3e8{null} -13:19:16.585 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@740a358e{STOPPING} id=1 keys=2 selected=0 updates=0 -13:19:16.585 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7236af50 startThread=0 -13:19:16.585 [qtp1209070290-133] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7236af50 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:16.585 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.585 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e waiting with 2 keys -13:19:16.585 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@d18051d in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:16.585 [qtp1209070290-133] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1997/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1996} -13:19:16.585 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9030/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5d9665cf[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.585 [qtp1209070290-133] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=1997/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=1996} -13:19:16.586 [qtp1209070290-133] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@7236af50 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:16.586 [qtp1209070290-131] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@5d9665cf::NetworkTrafficSocketChannelEndPoint@24725b44{/127.0.0.1:65052<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=9031/30000}{io=1/1,kio=-1,kro=-1}->HttpConnection@5d9665cf[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5a29a7b6{s=START}]=>HttpChannelOverHttp@2e8a3034{s=HttpChannelState@6b88ab81{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.586 [qtp1209070290-131] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@d18051d in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:16.586 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@820f00 on ManagedSelector@740a358e{STOPPING} id=1 keys=0 selected=0 updates=0 -13:19:16.586 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@740a358e{STOPPING} id=1 keys=0 selected=0 updates=1 -13:19:16.587 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken with none selected -13:19:16.587 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e woken up from select, 0/0/0 selected -13:19:16.587 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@32adfd7e processing 0 keys, 1 updates -13:19:16.587 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:16.587 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@820f00 -13:19:16.587 [qtp1209070290-130] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.587 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@72f2ef77 size 1 > capacity -13:19:16.587 [qtp1209070290-130] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@72f2ef77 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:16.587 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:19:16.58796+02:00 -13:19:16.588 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@ca22542/SelectorProducer@51d26865/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:19:16.58796+02:00 -13:19:16.588 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@740a358e{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:19:16.588 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@4fc62f79{STARTED} id=0 keys=0 selected=0 updates=0 -13:19:16.588 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@7b416d0a on ManagedSelector@4fc62f79{STOPPING} id=0 keys=0 selected=0 updates=0 -13:19:16.588 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4fc62f79{STOPPING} id=0 keys=0 selected=0 updates=1 -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken with none selected -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 0/0/0 selected -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 0 keys, 1 updates -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@7b416d0a -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 0 connections on ManagedSelector@4fc62f79{STOPPING} id=0 keys=0 selected=0 updates=0 -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d waiting with 0 keys -13:19:16.588 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@53017b3 on ManagedSelector@4fc62f79{STOPPING} id=0 keys=0 selected=0 updates=0 -13:19:16.588 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4fc62f79{STOPPING} id=0 keys=0 selected=0 updates=1 -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken with none selected -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d woken up from select, 0/0/0 selected -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@665861d processing 0 keys, 1 updates -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:16.588 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@53017b3 -13:19:16.589 [qtp1209070290-137] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.589 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@20cc5bb9 size 1 > capacity -13:19:16.589 [qtp1209070290-137] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}@20cc5bb9 in QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:16.589 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:19:16.589946+02:00 -13:19:16.589 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@62a7e142/SelectorProducer@566e727b/IDLE/p=false/QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=2]@2020-09-25T13:19:16.589946+02:00 -13:19:16.589 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@4fc62f79{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@16a0b7ee[HTTP/1.1] -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@16a0b7ee[HTTP/1.1] -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@5ad09f5a{STARTED} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@5ad09f5a{STOPPED} -13:19:16.590 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@5cad5bc8{STOPPING}[9.4.28.v20200408] -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@16ced373{STARTED} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@16ced373{STOPPING} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@16ced373{STOPPED} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@2d47fdef{STARTED} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@2d47fdef{STOPPING} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@36425b18{STARTED,min=32,inflate=-1} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@36425b18{STOPPING,min=32,inflate=-1} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@56621157{/,null,SHUTDOWN} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@56621157{/,null,UNAVAILABLE} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@ea435c7{STARTED} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@ea435c7{STOPPING} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@ea435c7{STOPPED} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@73a96801{STARTED} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@73a96801{STOPPING} -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-262ea69@262ea69==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-5c5d2805@5c5d2805==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-5c5d2805@5c5d2805==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-3675bd72@3675bd72==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-3675bd72@3675bd72==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-4463405f@95f7dad8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-24d11e8@166a9cf6==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-24d11e8@166a9cf6==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.590 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@73a96801{STOPPED} -13:19:16.591 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@56621157{/,null,UNAVAILABLE} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@56621157{/,null,UNAVAILABLE} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@36425b18{STOPPED,min=32,inflate=-1} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@a15c548{/__admin,null,SHUTDOWN} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@a15c548{/__admin,null,UNAVAILABLE} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@17e75f84{STARTED} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@17e75f84{STOPPING} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-658292fe@658292fe==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-658292fe@658292fe==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13@b4cb2ae7==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-48b4ef13@b4cb2ae7==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-18ea4906@26fab9ed==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-18ea4906@26fab9ed==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-3cf1e455@d88fac09==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-3cf1e455@d88fac09==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@17e75f84{STOPPED} -13:19:16.591 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@a15c548{/__admin,null,UNAVAILABLE} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@a15c548{/__admin,null,UNAVAILABLE} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@2d47fdef{STOPPED} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp1209070290]@4810f2d2{STARTED,8<=8<=14,i=4,r=1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPING,8<=8<=14,i=4,r=-1,q=0}[ReservedThreadExecutor@4f4ecc0{s=1/1,p=0}] -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@4f4ecc0{s=1/1,p=0} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=0/1,p=0}@2e92959d offer STOP! -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@4f4ecc0{s=-1/1,p=0} -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:16.591 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@5cad5bc8{STOPPED}[9.4.28.v20200408] -13:19:16.599 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@114f1853{STOPPED}[9.4.28.v20200408] added {QueuedThreadPool[qtp490162356]@1d3748b4{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:19:16.599 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HttpConnectionFactory@61ac64a9[HTTP/1.1] added {HttpConfiguration@6f07dbf9{32768/8192,8192/8192,https://:0,[]},POJO} -13:19:16.599 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{null, ()}{0.0.0.0:0} added {Server@114f1853{STOPPED}[9.4.28.v20200408],UNMANAGED} -13:19:16.600 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp490162356]@1d3748b4{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY],AUTO} -13:19:16.600 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@2136489c{STOPPED},AUTO} -13:19:16.600 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{null, ()}{0.0.0.0:0} added {org.eclipse.jetty.io.ArrayByteBufferPool@23bdf93f,POJO} -13:19:16.600 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@61ac64a9[HTTP/1.1],AUTO} -13:19:16.600 [Test worker] DEBUG org.eclipse.jetty.server.AbstractConnector - NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@61ac64a9[HTTP/1.1] -13:19:16.600 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED} -13:19:16.600 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@114f1853{STOPPED}[9.4.28.v20200408] added {NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO} -13:19:16.600 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@114f1853{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@723426a2{/__admin,null,UNAVAILABLE},MANAGED} -13:19:16.600 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@28de6cc5 -13:19:16.601 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@723426a2{/__admin,null,UNAVAILABLE} added {ServletHandler@3bbfb3ea{STOPPED},MANAGED} -13:19:16.602 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@114f1853{STOPPED}[9.4.28.v20200408] added {o.e.j.s.ServletContextHandler@70938873{/,null,UNAVAILABLE},MANAGED} -13:19:16.602 [Test worker] DEBUG org.eclipse.jetty.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@7b0b5566 -13:19:16.602 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@70938873{/,null,UNAVAILABLE} added {ServletHandler@34f41a3b{STOPPED},MANAGED} -13:19:16.603 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - o.e.j.s.ServletContextHandler@70938873{/,null,UNAVAILABLE} added {NotFoundHandler@46c761a5{STOPPED},MANAGED} -13:19:16.604 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@257f0851{STOPPED} added {o.e.j.s.ServletContextHandler@723426a2{/__admin,null,UNAVAILABLE},AUTO} -13:19:16.604 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=-1/1,p=0}@2e92959d task=STOP! -13:19:16.605 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=-1/1,p=0}@2e92959d Exited -13:19:16.605 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@4f4ecc0{s=-1/1,p=0}@2e92959d in QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:16.605 [qtp1209070290-135] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1209070290-135,5,main] exited for QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:16.605 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["*.svgz",pathDepth=0,group=SUFFIX_GLOB],resource=true] to PathMappings[size=1] -13:19:16.605 [Test worker] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@431b20d4{STOPPED,min=32,inflate=-1} mime types IncludeExclude@3f969c13{i=[],ip=CONTAINS,e=[image/ief, image/vnd.wap.wbmp, image/jpeg, application/bzip2, image/x-portable-graymap, application/brotli, image/bmp, image/gif, image/x-icon, audio/midi, video/x-msvideo, image/x-xbitmap, application/x-rar-compressed, image/x-portable-bitmap, image/x-rgb, image/x-cmu-raster, application/gzip, audio/x-wav, audio/x-pn-realaudio, audio/basic, application/compress, audio/x-aiff, video/x.ms.asx, video/x.ms.asf, image/png, video/vnd.rn-realvideo, image/x-xwindowdump, image/jpeg2000, video/x-sgi-movie, audio/mpeg, image/xcf, video/mpeg, image/x-portable-pixmap, image/tiff, image/x-portable-anymap, image/x-xpixmap, application/zip, video/quicktime, application/x-xz, video/mp4],ep=CONTAINS} -13:19:16.605 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - GzipHandler@431b20d4{STOPPED,min=32,inflate=-1} added {o.e.j.s.ServletContextHandler@70938873{/,null,UNAVAILABLE},MANAGED} -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - HandlerCollection@257f0851{STOPPED} added {GzipHandler@431b20d4{STOPPED,min=32,inflate=-1},AUTO} -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@114f1853{STOPPED}[9.4.28.v20200408] added {HandlerCollection@257f0851{STOPPED},MANAGED} -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting Server@114f1853{STOPPED}[9.4.28.v20200408] -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - Server@114f1853{STARTING}[9.4.28.v20200408] added {ErrorHandler@2347e6e5{STOPPED},AUTO} -13:19:16.606 [Test worker] INFO org.eclipse.jetty.server.Server - jetty-9.4.28.v20200408; built: 2020-04-08T17:49:39.557Z; git: ab228fde9e55e9164c738d7fa121f8ac5acd51c9; jvm 11.0.2+9 -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting Server@114f1853{STARTING}[9.4.28.v20200408] -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting QueuedThreadPool[qtp490162356]@1d3748b4{STOPPED,8<=0<=14,i=0,r=-1,q=0}[NO_TRY] -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=0/1,p=0} -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - QueuedThreadPool[qtp490162356]@1d3748b4{STARTING,8<=0<=14,i=0,r=-1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] added {ReservedThreadExecutor@7ea74f5c{s=0/1,p=0},AUTO} -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@7ea74f5c{s=0/1,p=0} -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108172ms ReservedThreadExecutor@7ea74f5c{s=0/1,p=0} -13:19:16.606 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp490162356-139,5,main] -13:19:16.607 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp490162356-140,5,main] -13:19:16.607 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp490162356-141,5,main] -13:19:16.607 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp490162356-142,5,main] -13:19:16.608 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp490162356-143,5,main] -13:19:16.608 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp490162356-144,5,main] -13:19:16.608 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp490162356-145,5,main] -13:19:16.608 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Starting Thread[qtp490162356-146,5,main] -13:19:16.608 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108174ms QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HandlerCollection@257f0851{STOPPED} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting HandlerCollection@257f0851{STARTING} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@723426a2{/__admin,null,UNAVAILABLE} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@723426a2{/__admin,null,STARTING} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@3bbfb3ea{STOPPED} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/recorder/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-24d5f8c7[EMBEDDED:null] -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/recorder/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-24d5f8c7@b738d3f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/swagger-ui/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-7787c1a3[EMBEDDED:null] -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/swagger-ui/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-7787c1a3@1256e21e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc[EMBEDDED:null] -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=3] -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23=org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23] -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=3] -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-24d5f8c7=org.eclipse.jetty.servlet.DefaultServlet-24d5f8c7@b738d3f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true, org.eclipse.jetty.servlet.DefaultServlet-7787c1a3=org.eclipse.jetty.servlet.DefaultServlet-7787c1a3@1256e21e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@3bbfb3ea{STARTING} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108175ms ServletHandler@3bbfb3ea{STARTED} -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108175ms org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:16.609 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@2d0a97e3 -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108175ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-24d5f8c7@b738d3f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108175ms org.eclipse.jetty.servlet.DefaultServlet-24d5f8c7@b738d3f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-7787c1a3@1256e21e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108175ms org.eclipse.jetty.servlet.DefaultServlet-7787c1a3@1256e21e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.610 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108176ms o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting GzipHandler@431b20d4{STOPPED,min=32,inflate=-1} -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting GzipHandler@431b20d4{STARTING,min=32,inflate=-1} -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting o.e.j.s.ServletContextHandler@70938873{/,null,UNAVAILABLE} -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting o.e.j.s.ServletContextHandler@70938873{/,null,STARTING} -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServletHandler@34f41a3b{STOPPED} -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/__files/*[EMBEDDED:null] mapped to servlet=org.eclipse.jetty.servlet.DefaultServlet-bfa7942[EMBEDDED:null] -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/__files/*",pathDepth=2,group=PREFIX_GLOB],resource=org.eclipse.jetty.servlet.DefaultServlet-bfa7942@56c093fe==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=1] -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - Path=/[EMBEDDED:null] mapped to servlet=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-67c6b85e[EMBEDDED:null] -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec["/",pathDepth=-1,group=DEFAULT],resource=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-67c6b85e@517647e8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true] to PathMappings[size=2] -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - filterNameMap={com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-a1eddf1=com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-a1eddf1@a1eddf1==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52f68e84=com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52f68e84@52f68e84==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true, org.eclipse.jetty.servlets.CrossOriginFilter-58c880a4=org.eclipse.jetty.servlets.CrossOriginFilter-58c880a4@58c880a4==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true} -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - pathFilters=[[/__files/*]/[]/[FORWARD]=>com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52f68e84, [/__files/*]/[]/[FORWARD, ERROR, INCLUDE, REQUEST, ASYNC]=>com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-a1eddf1, [/*]/[]/[REQUEST]=>org.eclipse.jetty.servlets.CrossOriginFilter-58c880a4] -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletFilterMap={} -13:19:16.610 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=2] -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.servlet.ServletHandler - servletNameMap={org.eclipse.jetty.servlet.DefaultServlet-bfa7942=org.eclipse.jetty.servlet.DefaultServlet-bfa7942@56c093fe==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true, com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-67c6b85e=com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-67c6b85e@517647e8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ServletHandler@34f41a3b{STARTING} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108176ms ServletHandler@34f41a3b{STARTED} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NotFoundHandler@46c761a5{STOPPED} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting NotFoundHandler@46c761a5{STARTING} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108176ms NotFoundHandler@46c761a5{STARTED} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52f68e84@52f68e84==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108176ms com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52f68e84@52f68e84==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter@766de1b7 -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-a1eddf1@a1eddf1==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108177ms com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-a1eddf1@a1eddf1==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter@2071c5bf -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlets.CrossOriginFilter-58c880a4@58c880a4==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108177ms org.eclipse.jetty.servlets.CrossOriginFilter-58c880a4@58c880a4==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.servlet.FilterHolder - Filter.init org.eclipse.jetty.servlets.CrossOriginFilter@65cb071a -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.servlets.CrossOriginFilter - Cross-origin filter configuration: allowedOrigins = *, allowedTimingOrigins = null, allowedMethods = OPTIONS,GET,POST,PUT,PATCH,DELETE, allowedHeaders = *, preflightMaxAge = 1800, allowCredentials = true,exposedHeaders = ,chainPreflight = false -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-67c6b85e@517647e8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108177ms com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-67c6b85e@517647e8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.servlet.DefaultServlet-bfa7942@56c093fe==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108177ms org.eclipse.jetty.servlet.DefaultServlet-bfa7942@56c093fe==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.611 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@70938873{/,null,AVAILABLE} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108177ms o.e.j.s.ServletContextHandler@70938873{/,null,AVAILABLE} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108177ms GzipHandler@431b20d4{STARTED,min=32,inflate=-1} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108177ms HandlerCollection@257f0851{STARTED} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ErrorHandler@2347e6e5{STOPPED} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - starting ErrorHandler@2347e6e5{STARTING} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108177ms ErrorHandler@2347e6e5{STARTED} -13:19:16.611 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.623 [qtp1209070290-132] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1209070290-132-acceptor-0@3188d562-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:16.623 [qtp1209070290-132] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1209070290-132,5,main] exited for QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:16.623 [qtp1209070290-134] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran qtp1209070290-134-acceptor-2@6d99a5a7-NetworkTrafficServerConnector@6c15ea0b{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} in QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:16.624 [qtp1209070290-134] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1209070290-134,5,main] exited for QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:16.627 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0:0:0:0:0:0:0:0:8080],POJO} -13:19:16.627 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@2136489c{STOPPED} -13:19:16.628 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108193ms ScheduledExecutorScheduler@2136489c{STARTED} -13:19:16.628 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@61ac64a9[HTTP/1.1] -13:19:16.628 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108193ms HttpConnectionFactory@61ac64a9[HTTP/1.1] -13:19:16.628 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.629 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@1c0731cf/SelectorProducer@57e0ba1/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.6299435+02:00 added {SelectorProducer@57e0ba1,POJO} -13:19:16.629 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@1c0731cf/SelectorProducer@57e0ba1/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.6299435+02:00 added {QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}],UNMANAGED} -13:19:16.629 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1c0731cf/SelectorProducer@57e0ba1/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.6299435+02:00 created -13:19:16.629 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@2b8c6a8c{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@1c0731cf/SelectorProducer@57e0ba1/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.6299435+02:00,MANAGED} -13:19:16.629 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@2b8c6a8c{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO} -13:19:16.630 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.6309523+02:00 added {SelectorProducer@33ee897e,POJO} -13:19:16.630 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.6309523+02:00 added {QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}],UNMANAGED} -13:19:16.631 [Test worker] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.631942+02:00 created -13:19:16.631 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - ManagedSelector@4638bfa1{STOPPED} id=1 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.631942+02:00,MANAGED} -13:19:16.631 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@4638bfa1{STOPPED} id=1 keys=-1 selected=-1 updates=0,AUTO} -13:19:16.631 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@2b8c6a8c{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:19:16.631 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@1c0731cf/SelectorProducer@57e0ba1/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.631942+02:00 -13:19:16.631 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108197ms EatWhatYouKill@1c0731cf/SelectorProducer@57e0ba1/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=8,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.631942+02:00 -13:19:16.633 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@e2865e0 startThread=0 -13:19:16.633 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@a3734ce on ManagedSelector@2b8c6a8c{STARTING} id=0 keys=0 selected=0 updates=0 -13:19:16.675 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.675 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@e2865e0 in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.676 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@1c0731cf/SelectorProducer@57e0ba1/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.6769316+02:00 tryProduce false -13:19:16.676 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:16.676 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@a3734ce -13:19:16.676 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108242ms ManagedSelector@2b8c6a8c{STARTED} id=0 keys=0 selected=0 updates=0 -13:19:16.676 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting ManagedSelector@4638bfa1{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:19:16.676 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.6769316+02:00 -13:19:16.677 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108242ms EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=7,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.6779343+02:00 -13:19:16.678 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@4d55e98f startThread=0 -13:19:16.678 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Start@4e138233 on ManagedSelector@4638bfa1{STARTING} id=1 keys=0 selected=0 updates=0 -13:19:16.678 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.679 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@4161f170 waiting with 0 keys -13:19:16.693 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@36425b18{STOPPED,min=32,inflate=-1} excluded not gzip accept Request(POST //localhost:8080/api/v0/components/provision-adapters/jobs)@3aa0e9bc -13:19:16.693 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@49e49338 exclude no deflater -13:19:16.693 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=false committing=true callback=Blocker@339a4994{null} -13:19:16.693 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /api/v0/components/provision-adapters/jobs on HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2104} -200 null HTTP/1.1 -Matched-Stub-Id: 6accf1bf-961a-400a-b265-4af915844f6a -Vary: Accept-Encoding, User-Agent - - -13:19:16.693 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - Commit failed -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.server.HttpConnection$SendCallback.reset(HttpConnection.java:728) - at org.eclipse.jetty.server.HttpConnection$SendCallback.access$300(HttpConnection.java:688) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:547) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:824) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.commit(GzipHttpOutputInterceptor.java:216) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:108) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:267) - at org.eclipse.jetty.server.HttpOutput.flush(HttpOutput.java:705) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:234) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:19:16.694 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2106/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2105} {} -13:19:16.695 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2106/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2106} -13:19:16.695 [qtp1209070290-136] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2107/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2106} -13:19:16.695 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,org.eclipse.jetty.io.EofException) s=OPEN,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:16.695 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSED,api=BLOCKING,sc=false,e=null c=null b=null -13:19:16.695 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - /api/v0/components/provision-adapters/jobs -org.eclipse.jetty.io.EofException: null - at org.eclipse.jetty.server.HttpConnection$SendCallback.reset(HttpConnection.java:728) - at org.eclipse.jetty.server.HttpConnection$SendCallback.access$300(HttpConnection.java:688) - at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:547) - at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:824) - at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:901) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.commit(GzipHttpOutputInterceptor.java:216) - at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:108) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:283) - at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:267) - at org.eclipse.jetty.server.HttpOutput.flush(HttpOutput.java:705) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.writeAndTranslateExceptions(WireMockHandlerDispatchingServlet.java:234) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.applyResponse(WireMockHandlerDispatchingServlet.java:223) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondTo(WireMockHandlerDispatchingServlet.java:183) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respondSync(WireMockHandlerDispatchingServlet.java:150) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet$ServletHttpResponder.respond(WireMockHandlerDispatchingServlet.java:144) - at com.github.tomakehurst.wiremock.http.AbstractRequestHandler.handle(AbstractRequestHandler.java:90) - at com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet.service(WireMockHandlerDispatchingServlet.java:120) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:750) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:763) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1631) - at org.eclipse.jetty.servlets.CrossOriginFilter.handle(CrossOriginFilter.java:319) - at org.eclipse.jetty.servlets.CrossOriginFilter.doFilter(CrossOriginFilter.java:273) - at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1618) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:549) - at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1363) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:489) - at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1278) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:19:16.696 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@c4fb931{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:19:16.696 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@c4fb931{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:16.696 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpChannel - !handle COMPLETE HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2107} -13:19:16.696 [qtp1209070290-136] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@25b88b26::NetworkTrafficSocketChannelEndPoint@9d9b1c9{/127.0.0.1:65057<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2107/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@25b88b26[p=HttpParser{s=END,144 of 144},g=HttpGenerator@61ab21a1{s=START}]=>HttpChannelOverHttp@7508e3a7{s=HttpChannelState@c4fb931{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/api/v0/components/provision-adapters/jobs,age=2107} onFillable exit HttpChannelState@c4fb931{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} null -13:19:16.696 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@4f4ecc0{s=-1/1,p=0}@c9ded6d Exited -13:19:16.696 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@4f4ecc0{s=-1/1,p=0}@c9ded6d in QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:16.696 [qtp1209070290-136] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp1209070290-136,5,main] exited for QueuedThreadPool[qtp1209070290]@4810f2d2{STOPPED,8<=0<=14,i=4,r=-1,q=0}[NO_TRY] -13:19:16.749 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.750 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@4d55e98f in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.750 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=6,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.750929+02:00 tryProduce false -13:19:16.750 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:16.750 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@4e138233 -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108316ms ManagedSelector@4638bfa1{STARTED} id=1 keys=0 selected=0 updates=0 -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108316ms SelectorManager@NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@3d9e974,POJO} -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@3d9e974 startThread=0 -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-1@30fb2c85,POJO} -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-1@30fb2c85 startThread=0 -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.component.ContainerLifeCycle - NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-2@5280a284,POJO} -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-2@5280a284 startThread=0 -13:19:16.751 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Started NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108317ms NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:16.751 [Test worker] INFO org.eclipse.jetty.server.Server - Started @108317ms -13:19:16.751 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @108317ms Server@114f1853{STARTED}[9.4.28.v20200408] -13:19:16.759 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:16.762 [Test worker] DEBUG org.apache.http.wire - http-outgoing-6 << "end of stream" -13:19:16.762 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-6: Close connection -13:19:16.763 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 7][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:16.763 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://localhost:8080 -13:19:16.763 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connecting to localhost/127.0.0.1:8080 -13:19:16.764 [Test worker] DEBUG org.apache.http.impl.conn.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:65065<->127.0.0.1:8080 -13:19:16.764 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:19:16.764 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:19:16.764 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:19:16.764 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> POST /__admin/mappings HTTP/1.1 -13:19:16.764 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Content-Length: 678 -13:19:16.764 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Content-Type: text/plain; charset=UTF-8 -13:19:16.764 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Host: localhost:8080 -13:19:16.764 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Connection: Keep-Alive -13:19:16.764 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Content-Length: 678[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Host: localhost:8080[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Connection: Keep-Alive[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "{[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "id" : "440b9875-ac3f-47e8-9ed2-847b1ec5c079",[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "request" : {[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "method" : "POST",[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "headers" : {[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "Content-Type" : {[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "equalTo" : "application/json"[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " }[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " },[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "bodyPatterns" : [ {[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " } ][\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " },[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "response" : {[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "status" : 200,[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "headers" : {[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "Content-Type" : "application/json"[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " }[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " },[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "uuid" : "440b9875-ac3f-47e8-9ed2-847b1ec5c079",[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "requiredScenarioState" : "Started",[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "newScenarioState" : "logged"[\r][\n]" -13:19:16.764 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "}" -13:19:16.756 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.765 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b waiting with 0 keys -13:19:16.797 [qtp490162356-141] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.797 [qtp490162356-141] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@3d9e974 in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.833 [qtp490162356-142] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.839 [qtp490162356-142] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-1@30fb2c85 in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.844 [qtp490162356-143] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.844 [qtp490162356-143] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-2@5280a284 in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.844 [qtp490162356-144] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.845 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.846 [qtp490162356-146] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.852 [qtp490162356-143-acceptor-2@5280a284-NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@46cc3430 on ManagedSelector@4638bfa1{STARTED} id=1 keys=0 selected=0 updates=0 -13:19:16.853 [qtp490162356-143-acceptor-2@5280a284-NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4638bfa1{STARTED} id=1 keys=0 selected=0 updates=1 -13:19:16.854 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken with none selected -13:19:16.854 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken up from select, 0/0/0 selected -13:19:16.854 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b processing 0 keys, 1 updates -13:19:16.854 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:16.854 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Accept@46cc3430 -13:19:16.855 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$Accept@46cc3430 startThread=0 -13:19:16.855 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.855 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b waiting with 1 keys -13:19:16.855 [qtp490162356-144] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$Accept@46cc3430 in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.855 [qtp490162356-144] DEBUG org.eclipse.jetty.io.IdleTimeout - NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms -13:19:16.856 [qtp490162356-144] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->,null,HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:16.856 [qtp490162356-144] DEBUG org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> -13:19:16.856 [qtp490162356-144] DEBUG org.eclipse.jetty.io.AbstractEndPoint - onOpen NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.856 [qtp490162356-144] DEBUG org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.856 [qtp490162356-144] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.856 [qtp490162356-144] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2c6e1994{AC.ReadCB@54311e78{HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:16.856 [qtp490162356-144] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.857 [qtp490162356-144] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@1fe66116 on ManagedSelector@4638bfa1{STARTED} id=1 keys=1 selected=0 updates=0 -13:19:16.857 [qtp490162356-144] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4638bfa1{STARTED} id=1 keys=1 selected=0 updates=1 -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken with none selected -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken up from select, 0/0/1 selected -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b processing 0 keys, 1 updates -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@1fe66116 -13:19:16.857 [qtp490162356-144] DEBUG org.eclipse.jetty.io.ManagedSelector - Created NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b waiting with 1 keys -13:19:16.857 [qtp490162356-144] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$Accept@46cc3430 in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}] -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken up from select, 1/1/1 selected -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b processing 1 keys, 0 updates -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65065], selector=sun.nio.ch.WindowsSelectorImpl@1f984d8b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.857 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:16.858 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=0/1,p=0} tryExecute EatWhatYouKill@16425b30/SelectorProducer@33ee897e/PRODUCING/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=3,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.8589081+02:00 -13:19:16.858 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=0/1,p=1} startReservedThread p=1 -13:19:16.858 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}@156026fb startThread=0 -13:19:16.858 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@16425b30/SelectorProducer@33ee897e/PRODUCING/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:16.8589081+02:00 m=PRODUCE_EXECUTE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:16.858 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}@156026fb in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}] -13:19:16.858 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=1/1,p=1}@156026fb started -13:19:16.858 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}@156026fb waiting -13:19:16.858 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0 -13:19:16.858 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:16.858 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.858 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.858 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b waiting with 1 keys -13:19:16.859 [qtp490162356-146] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}] -13:19:16.859 [qtp490162356-146] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@2c6e1994{AC.ReadCB@54311e78{HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:16.859 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:16.859 [qtp490162356-146] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 873 HeapByteBuffer@70c805d2[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 873 HeapByteBuffer@70c805d2[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c805d2[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c805d2[p=0,l=873,c=8192,r=873]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:19:16.860 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 678 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 678} -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=0} -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:16.861 [qtp490162356-146] DEBUG org.eclipse.jetty.servlet.ServletHolder - Servlet.init com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet@7e0ff5bb for com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc -13:19:16.964 [qtp490162356-146] INFO org.eclipse.jetty.server.handler.ContextHandler.__admin - RequestHandlerClass from context returned com.github.tomakehurst.wiremock.http.AdminRequestHandler. Normalized mapped under returned 'null' -13:19:16.964 [qtp490162356-146] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=105/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=CONTENT,0 of 678},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=104} parse HeapByteBuffer@70c805d2[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "440b9875-ac3...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c805d2[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "440b9875-ac3...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=104} Content@7a306ea2{HeapByteBufferR@3f32ff80[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "440b9875-ac3...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=0,q=0,[0]=null,s=STREAM] addContent Content@7a306ea2{HeapByteBufferR@3f32ff80[p=195,l=873,c=8192,r=678]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "440b9875-ac3...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=104} -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=104} -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=105/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=104} parsed false HttpParser{s=END,678 of 678} -13:19:16.965 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=678,q=1,[0]=EOF,s=STREAM] read 678 from Content@7a306ea2{HeapByteBufferR@3f32ff80[p=873,l=873,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:19:16.966 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=106/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=105} -13:19:16.966 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:16.989 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@748ba59e[p=0,l=678,c=8192,r=678]={<<<{\r\n "id" : "440b9875-ac3...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:19:16.989 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@42500b19[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "440b9875-ac3...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.989 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@42500b19[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "440b9875-ac3...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6cff555b{null} -13:19:16.989 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=128} -201 null HTTP/1.1 -Content-Type: application/json - - -13:19:16.989 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@725dd2d2] (null,[p=0,l=678,c=32768,r=678],false)@START -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@42500b19[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "440b9875-ac3...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@725dd2d2] ([p=0,l=122,c=8192,r=122],[p=0,l=678,c=32768,r=678],false)@COMMITTED -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@30171743{IDLE}->null [HeapByteBuffer@70c805d2[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@42500b19[p=0,l=678,c=32768,r=678]={<<<{\r\n "id" : "440b9875-ac3...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{WRITING}->null:IDLE-->WRITING -13:19:16.990 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "HTTP/1.1 201 Created[\r][\n]" -13:19:16.990 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Content-Type: application/json[\r][\n]" -13:19:16.990 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Transfer-Encoding: chunked[\r][\n]" -13:19:16.990 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:19:16.990 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:16.990 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "2A6[\r][\n]" -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=130/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4e7cc718{s=COMMITTED}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=129} -13:19:16.990 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << HTTP/1.1 201 Created -13:19:16.990 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Content-Type: application/json -13:19:16.990 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Transfer-Encoding: chunked -13:19:16.990 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Server: Jetty(9.4.28.v20200408) -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 678 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4e7cc718{s=COMMITTED}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=129} -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=800 remaining=0 WriteFlusher@30171743{WRITING}->null -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{IDLE}->null:WRITING-->IDLE -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@725dd2d2] ([p=122,l=122,c=8192,r=0],[p=678,l=678,c=32768,r=0],false)@COMMITTED -13:19:16.990 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6cff555b{null} -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6cff555b{null} -13:19:16.990 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@26d4c997] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@26d4c997] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@26d4c997] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "{[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "id" : "440b9875-ac3f-47e8-9ed2-847b1ec5c079",[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "request" : {[\r][\n]" -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@30171743{IDLE}->null [HeapByteBuffer@641ef69d[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{WRITING}->null:IDLE-->WRITING -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "url" : "/api/v0/components/login",[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "method" : "POST",[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "headers" : {[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "Content-Type" : {[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "equalTo" : "application/json"[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " }[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " },[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "bodyPatterns" : [ {[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "equalTo" : "{\"password\":\"123456\",\"username\":\"catalogClientApi\"}"[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " } ][\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " },[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "response" : {[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "status" : 200,[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "body" : "{\"token\":\"someToken\"}",[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "headers" : {[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "Content-Type" : "application/json"[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " }[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " },[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "uuid" : "440b9875-ac3f-47e8-9ed2-847b1ec5c079",[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "requiredScenarioState" : "Started",[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "newScenarioState" : "logged"[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "}" -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,678 of 678},g=HttpGenerator@4e7cc718{s=COMPLETING}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=130} -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "0[\r][\n]" -13:19:16.991 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@30171743{WRITING}->null -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{IDLE}->null:WRITING-->IDLE -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@26d4c997] (null,[p=0,l=0,c=0,r=0],true)@END -13:19:16.991 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 7][route: {}->http://localhost:8080] can be kept alive indefinitely -13:19:16.991 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-7: set socket timeout to 0 -13:19:16.991 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 7][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@431b20d4{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@7849638e in null -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@70938873{/,null,AVAILABLE} -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=130} -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=130} -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@706ccecb) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:16.991 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=131} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=678 -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,678 of 678} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.992 [qtp490162356-146] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.993 [qtp490162356-146] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2c6e1994{AC.ReadCB@54311e78{HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:16.993 [qtp490162356-146] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.993 [qtp490162356-146] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@1fe66116 on ManagedSelector@4638bfa1{STARTED} id=1 keys=1 selected=0 updates=0 -13:19:16.993 [qtp490162356-146] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4638bfa1{STARTED} id=1 keys=1 selected=0 updates=1 -13:19:16.993 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken with none selected -13:19:16.993 [qtp490162356-146] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:16.993 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken up from select, 0/0/1 selected -13:19:16.993 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b processing 0 keys, 1 updates -13:19:16.993 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:16.993 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@1fe66116 -13:19:16.993 [qtp490162356-146] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}] -13:19:16.993 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.993 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:16.993 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b waiting with 1 keys -13:19:16.995 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:16.995 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 7][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:16.995 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-7: set socket timeout to 30000 -13:19:16.995 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[read] I/O error: Read timed out" -13:19:16.997 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/mappings HTTP/1.1 -13:19:16.997 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:19:16.997 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:19:16.997 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> POST /__admin/mappings HTTP/1.1 -13:19:16.997 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Content-Length: 909 -13:19:16.997 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Content-Type: text/plain; charset=UTF-8 -13:19:16.997 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Host: localhost:8080 -13:19:16.997 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Connection: Keep-Alive -13:19:16.997 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "POST /__admin/mappings HTTP/1.1[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Content-Length: 909[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Host: localhost:8080[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Connection: Keep-Alive[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "{[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "id" : "b896ba07-57c1-4ab8-8c24-fa1e57ac527e",[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "request" : {[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "url" : "/api/v0/components/provision-adapters/jobs",[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "method" : "POST",[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "headers" : {[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "Authorization" : {[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "equalTo" : "Bearer someToken"[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " }[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " },[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "bodyPatterns" : [ {[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "equalTo" : "{\"id\":\"10fb9b9f-0ba6-47e2-b4c2-2e62dc082cc4\",\"product\":\"436e6c68-2c4c-4e2c-aaf1-64adb056c58d\",\"configurationSubset\":\"eudev-delete\",\"answers\":{\"var1\":\"TEST\"}}"[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " } ][\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " },[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "response" : {[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "status" : 200,[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "body" : "{\"id\":\"f5dde55d-98c6-4a9d-a77a-f79092220ef0\",\"componentInstance\":\"10fb9b9f-0ba6-47e2-b4c2-2e62dc082cc4\",\"status\":\"PROCESSING\",\"metadata\":null}",[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "headers" : {[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "Content-Type" : "application/json"[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " }[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " },[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "uuid" : "b896ba07-57c1-4ab8-8c24-fa1e57ac527e",[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "scenarioName" : "unAuthorized",[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "requiredScenarioState" : "logged"[\r][\n]" -13:19:16.997 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "}" -13:19:16.997 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken up from select, 1/1/1 selected -13:19:16.997 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b processing 1 keys, 0 updates -13:19:16.998 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65065], selector=sun.nio.ch.WindowsSelectorImpl@1f984d8b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/1,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.998 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} -13:19:16.998 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:16.998 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=1/1,p=0} tryExecute EatWhatYouKill@16425b30/SelectorProducer@33ee897e/PRODUCING/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:19:16.9988903+02:00 -13:19:16.998 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}@156026fb offer EatWhatYouKill@16425b30/SelectorProducer@33ee897e/PRODUCING/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:19:16.9988903+02:00 -13:19:16.998 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=0/1,p=1} startReservedThread p=1 -13:19:16.998 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}@5062ba33 startThread=0 -13:19:16.998 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=true/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=0]@2020-09-25T13:19:16.9988903+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:16.998 [qtp490162356-140] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@2c6e1994{AC.ReadCB@54311e78{HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 1104 HeapByteBuffer@70c805d2[p=0,l=1104,c=8192,r=1104]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 1104 HeapByteBuffer@70c805d2[p=0,l=1104,c=8192,r=1104]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c805d2[p=0,l=1104,c=8192,r=1104]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c805d2[p=0,l=1104,c=8192,r=1104]={<<>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/mappings on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} -POST //localhost:8080/__admin/mappings HTTP/1.1 -Content-Length: 909 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:19:16.999 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=CONTENT,0 of 909},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=0} parsed true HttpParser{s=CONTENT,0 of 909} -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/mappings HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//localhost:8080/__admin/mappings,age=1} -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/mappings on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/mappings @ o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/mappings|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:17.000 [qtp490162356-140] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=CONTENT,0 of 909},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=1} parse HeapByteBuffer@70c805d2[p=195,l=1104,c=8192,r=909]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "b896ba07-57c...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c805d2[p=195,l=1104,c=8192,r=909]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "b896ba07-57c...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} Content@d4b41a1{HeapByteBufferR@61f86ff0[p=195,l=1104,c=8192,r=909]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "b896ba07-57c...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=0,q=0,[0]=null,s=STREAM] addContent Content@d4b41a1{HeapByteBufferR@61f86ff0[p=195,l=1104,c=8192,r=909]={POST /__a....2)\r\n\r\n<<<{\r\n "id" : "b896ba07-57c...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,909 of 909},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} parsed false HttpParser{s=END,909 of 909} -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=909,q=1,[0]=EOF,s=STREAM] read 909 from Content@d4b41a1{HeapByteBufferR@61f86ff0[p=1104,l=1104,c=8192,r=0]={POST /__a...ged"\r\n}<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}} -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,909 of 909},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=2} -13:19:17.001 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:17.012 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}@156026fb task=EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=true/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:17.0129013+02:00 -13:19:17.013 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=true/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:17.0138887+02:00 tryProduce true -13:19:17.013 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:17.013 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:17.013 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,909 of 909},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=14} -13:19:17.013 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b waiting with 1 keys -13:19:17.037 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@45792869[p=0,l=909,c=8192,r=909]={<<<{\r\n "id" : "b896ba07-57c...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:19:17.037 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@42500b19[p=0,l=909,c=32768,r=909]={<<<{\r\n "id" : "b896ba07-57c...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.037 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@42500b19[p=0,l=909,c=32768,r=909]={<<<{\r\n "id" : "b896ba07-57c...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6cff555b{null} -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/mappings on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=38} -201 null HTTP/1.1 -Content-Type: application/json - - -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6e3fc796] (null,[p=0,l=909,c=32768,r=909],false)@START -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=201,h=1,cl=-1} last=false content=DirectByteBuffer@42500b19[p=0,l=909,c=32768,r=909]={<<<{\r\n "id" : "b896ba07-57c...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6e3fc796] ([p=0,l=122,c=8192,r=122],[p=0,l=909,c=32768,r=909],false)@COMMITTED -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@30171743{IDLE}->null [HeapByteBuffer@70c805d2[p=0,l=122,c=8192,r=122]={<<>>ction: Ke...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@42500b19[p=0,l=909,c=32768,r=909]={<<<{\r\n "id" : "b896ba07-57c...rioState" : "logged"\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{WRITING}->null:IDLE-->WRITING -13:19:17.038 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "HTTP/1.1 201 Created[\r][\n]" -13:19:17.038 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Content-Type: application/json[\r][\n]" -13:19:17.038 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Transfer-Encoding: chunked[\r][\n]" -13:19:17.038 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:19:17.038 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:17.038 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "38D[\r][\n]" -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 122 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=39/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,909 of 909},g=HttpGenerator@4e7cc718{s=COMMITTED}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=39} -13:19:17.038 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << HTTP/1.1 201 Created -13:19:17.038 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Content-Type: application/json -13:19:17.038 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Transfer-Encoding: chunked -13:19:17.038 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Server: Jetty(9.4.28.v20200408) -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 909 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,909 of 909},g=HttpGenerator@4e7cc718{s=COMMITTED}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=39} -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=1031 remaining=0 WriteFlusher@30171743{WRITING}->null -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{IDLE}->null:WRITING-->IDLE -13:19:17.038 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:19:17.038 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=201,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@6e3fc796] ([p=122,l=122,c=8192,r=0],[p=909,l=909,c=32768,r=0],false)@COMMITTED -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6cff555b{null} -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "{[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "id" : "b896ba07-57c1-4ab8-8c24-fa1e57ac527e",[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "request" : {[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "url" : "/api/v0/components/provision-adapters/jobs",[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "method" : "POST",[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "headers" : {[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "Authorization" : {[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "equalTo" : "Bearer someToken"[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " }[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " },[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "bodyPatterns" : [ {[\r][\n]" -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6cff555b{null} -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "equalTo" : "{\"id\":\"10fb9b9f-0ba6-47e2-b4c2-2e62dc082cc4\",\"product\":\"436e6c68-2c4c-4e2c-aaf1-64adb056c58d\",\"configurationSubset\":\"eudev-delete\",\"answers\":{\"var1\":\"TEST\"}}"[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " } ][\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " },[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "response" : {[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "status" : 200,[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "body" : "{\"id\":\"f5dde55d-98c6-4a9d-a77a-f79092220ef0\",\"componentInstance\":\"10fb9b9f-0ba6-47e2-b4c2-2e62dc082cc4\",\"status\":\"PROCESSING\",\"metadata\":null}",[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "headers" : {[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "Content-Type" : "application/json"[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " }[\r][\n]" -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@34031988] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " },[\r][\n]" -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@34031988] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "uuid" : "b896ba07-57c1-4ab8-8c24-fa1e57ac527e",[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "scenarioName" : "unAuthorized",[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "requiredScenarioState" : "logged"[\r][\n]" -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@34031988] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "}" -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@30171743{IDLE}->null [HeapByteBuffer@641ef69d[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{WRITING}->null:IDLE-->WRITING -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "0[\r][\n]" -13:19:17.039 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,909 of 909},g=HttpGenerator@4e7cc718{s=COMPLETING}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=2,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=40} -13:19:17.039 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 7][route: {}->http://localhost:8080] can be kept alive indefinitely -13:19:17.039 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-7: set socket timeout to 0 -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@30171743{WRITING}->null -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{IDLE}->null:WRITING-->IDLE -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@34031988] (null,[p=0,l=0,c=0,r=0],true)@END -13:19:17.039 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 7][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:17.039 [qtp490162356-140] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@431b20d4{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/mappings]@7849638e in null -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/mappings @ o.e.j.s.ServletContextHandler@70938873{/,null,AVAILABLE} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=41} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/mappings,age=41} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@31be9331) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=2,c=true/true,a=IDLE,uri=//localhost:8080/__admin/mappings,age=41} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/mappings written=909 -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,909 of 909} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.040 [qtp490162356-140] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.041 [qtp490162356-140] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2c6e1994{AC.ReadCB@54311e78{HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:17.041 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.041 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ChannelEndPoint$1@1fe66116 on ManagedSelector@4638bfa1{STARTED} id=1 keys=1 selected=0 updates=0 -13:19:17.041 [qtp490162356-140] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@4638bfa1{STARTED} id=1 keys=1 selected=0 updates=1 -13:19:17.041 [qtp490162356-140] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:17.041 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@4d55e98f in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}] -13:19:17.041 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}@5062ba33 in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}] -13:19:17.041 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=1/1,p=1}@5062ba33 started -13:19:17.041 [qtp490162356-140] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}@5062ba33 waiting -13:19:17.048 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:17.049 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 7][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:17.049 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-7: set socket timeout to 30000 -13:19:17.049 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[read] I/O error: Read timed out" -13:19:17.051 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:19:17.051 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:19:17.051 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:19:17.051 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> POST /__admin/requests/count HTTP/1.1 -13:19:17.051 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Content-Length: 81 -13:19:17.051 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Content-Type: text/plain; charset=UTF-8 -13:19:17.051 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Host: localhost:8080 -13:19:17.051 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Connection: Keep-Alive -13:19:17.051 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Content-Length: 81[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Host: localhost:8080[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Connection: Keep-Alive[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "{[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "url" : "/api/v0/components/provision-adapters/jobs",[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "method" : "GET"[\r][\n]" -13:19:17.051 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "}" -13:19:17.135 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken with none selected -13:19:17.135 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken up from select, 0/0/1 selected -13:19:17.135 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b processing 0 keys, 1 updates -13:19:17.135 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:17.135 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$1@1fe66116 -13:19:17.135 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=94/30000}{io=1/1,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.135 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:17.136 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b waiting with 1 keys -13:19:17.139 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken up from select, 1/1/1 selected -13:19:17.139 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b processing 1 keys, 0 updates -13:19:17.139 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65065], selector=sun.nio.ch.WindowsSelectorImpl@1f984d8b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=98/30000}{io=1/1,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.139 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=98/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.139 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=98/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:17.140 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=1/1,p=0} tryExecute EatWhatYouKill@16425b30/SelectorProducer@33ee897e/PRODUCING/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:17.1399258+02:00 -13:19:17.140 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}@5062ba33 offer EatWhatYouKill@16425b30/SelectorProducer@33ee897e/PRODUCING/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=2,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:17.1408775+02:00 -13:19:17.140 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=0/1,p=1} startReservedThread p=1 -13:19:17.140 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}@840653d startThread=0 -13:19:17.140 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=true/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=1]@2020-09-25T13:19:17.1408775+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=99/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:17.140 [qtp490162356-145] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@2c6e1994{AC.ReadCB@54311e78{HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=99/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:17.140 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=99/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:17.140 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 281 HeapByteBuffer@70c805d2[p=0,l=281,c=8192,r=281]={<<>>i/v0/comp...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} filled 281 HeapByteBuffer@70c805d2[p=0,l=281,c=8192,r=281]={<<>>i/v0/comp...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c805d2[p=0,l=281,c=8192,r=281]={<<>>i/v0/comp...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c805d2[p=0,l=281,c=8192,r=281]={<<>>i/v0/comp...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 81 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=CONTENT,0 of 81},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} parsed true HttpParser{s=CONTENT,0 of 81} -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:17.141 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=0} -13:19:17.142 [qtp490162356-145] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=0} -13:19:17.142 [qtp490162356-145] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:17.142 [qtp490162356-145] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:17.142 [qtp490162356-145] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.142 [qtp490162356-145] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.142 [qtp490162356-145] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:17.142 [qtp490162356-145] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=CONTENT,0 of 81},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} parse HeapByteBuffer@70c805d2[p=200,l=281,c=8192,r=81]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>i/v0/comp...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c805d2[p=200,l=281,c=8192,r=81]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>i/v0/comp...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} Content@6878a45{HeapByteBufferR@2b80e4d[p=200,l=281,c=8192,r=81]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>i/v0/comp...\x00\x00\x00\x00\x00\x00\x00}} -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=0,q=0,[0]=null,s=STREAM] addContent Content@6878a45{HeapByteBufferR@2b80e4d[p=200,l=281,c=8192,r=81]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>i/v0/comp...\x00\x00\x00\x00\x00\x00\x00}} -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:19:17.144 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=3/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,81 of 81},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=3} parsed false HttpParser{s=END,81 of 81} -13:19:17.145 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=81,q=1,[0]=EOF,s=STREAM] read 81 from Content@6878a45{HeapByteBufferR@2b80e4d[p=281,l=281,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>i/v0/comp...\x00\x00\x00\x00\x00\x00\x00}} -13:19:17.145 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,81 of 81},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=4} -13:19:17.145 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:17.157 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@47ba807e[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:19:17.157 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@42500b19[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.157 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@42500b19[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6cff555b{null} -13:19:17.157 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=16} -200 null HTTP/1.1 -Content-Type: application/json - - -13:19:17.157 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4c586c39] (null,[p=0,l=56,c=32768,r=56],false)@START -13:19:17.157 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@42500b19[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.157 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:19:17.158 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:17.158 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4c586c39] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:19:17.158 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@30171743{IDLE}->null [HeapByteBuffer@70c805d2[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@42500b19[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:19:17.158 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{WRITING}->null:IDLE-->WRITING -13:19:17.158 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "HTTP/1.1 200 OK[\r][\n]" -13:19:17.158 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Content-Type: application/json[\r][\n]" -13:19:17.158 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Transfer-Encoding: chunked[\r][\n]" -13:19:17.158 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:19:17.158 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:17.158 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "38[\r][\n]" -13:19:17.158 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << HTTP/1.1 200 OK -13:19:17.158 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Content-Type: application/json -13:19:17.158 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Transfer-Encoding: chunked -13:19:17.158 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Server: Jetty(9.4.28.v20200408) -13:19:17.158 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:19:17.158 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=17/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,81 of 81},g=HttpGenerator@4e7cc718{s=COMMITTED}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=17} -13:19:17.159 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "{[\r][\n]" -13:19:17.159 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "count" : 0,[\r][\n]" -13:19:17.159 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "requestJournalDisabled" : false[\r][\n]" -13:19:17.159 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "}" -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,81 of 81},g=HttpGenerator@4e7cc718{s=COMMITTED}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=18} -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@30171743{WRITING}->null -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{IDLE}->null:WRITING-->IDLE -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4c586c39] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6cff555b{null} -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6cff555b{null} -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@76b70255] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@76b70255] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@76b70255] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@30171743{IDLE}->null [HeapByteBuffer@641ef69d[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:17.159 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{WRITING}->null:IDLE-->WRITING -13:19:17.159 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:17.160 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "0[\r][\n]" -13:19:17.160 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:17.160 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 7][route: {}->http://localhost:8080] can be kept alive indefinitely -13:19:17.160 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-7: set socket timeout to 0 -13:19:17.160 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 7][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:17.160 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,81 of 81},g=HttpGenerator@4e7cc718{s=COMPLETING}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=3,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=19} -13:19:17.160 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@30171743{WRITING}->null -13:19:17.160 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{IDLE}->null:WRITING-->IDLE -13:19:17.160 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@76b70255] (null,[p=0,l=0,c=0,r=0],true)@END -13:19:17.160 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:17.160 [qtp490162356-145] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@431b20d4{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@7849638e in null -13:19:17.160 [qtp490162356-145] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@70938873{/,null,AVAILABLE} -13:19:17.160 [qtp490162356-145] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=19} -13:19:17.160 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:19:17.161 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:17.161 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 7][route: {}->http://localhost:8080][total available: 0; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:17.161 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-7: set socket timeout to 30000 -13:19:17.161 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Stale connection check -13:19:17.161 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.161 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=20} -13:19:17.161 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@34bfb0a8) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:17.161 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.161 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.161 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.161 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0},r=3,c=true/true,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=20} -13:19:17.161 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:19:17.161 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=COMPLETED is=READY awp=false se=false i=false al=0} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,81 of 81} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - END --> START -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c805d2[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@2c6e1994{AC.ReadCB@54311e78{HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=true 0->1 for NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0 -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:17.162 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 1 on NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[read] I/O error: Read timed out" -13:19:17.163 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request POST /__admin/requests/count HTTP/1.1 -13:19:17.163 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED -13:19:17.163 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED -13:19:17.163 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> POST /__admin/requests/count HTTP/1.1 -13:19:17.163 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Content-Length: 63 -13:19:17.163 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Content-Type: text/plain; charset=UTF-8 -13:19:17.163 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Host: localhost:8080 -13:19:17.163 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> Connection: Keep-Alive -13:19:17.163 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 >> User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "POST /__admin/requests/count HTTP/1.1[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Content-Length: 63[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Content-Type: text/plain; charset=UTF-8[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Host: localhost:8080[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "Connection: Keep-Alive[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2)[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "{[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "url" : "/api/v0/components/login",[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> " "method" : "GET"[\r][\n]" -13:19:17.163 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 >> "}" -13:19:17.163 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b waiting with 1 keys -13:19:17.163 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken up from select, 1/1/1 selected -13:19:17.163 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b processing 1 keys, 0 updates -13:19:17.164 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:65065], selector=sun.nio.ch.WindowsSelectorImpl@1f984d8b, interestOps=1, readyOps=1 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.164 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.164 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING -13:19:17.164 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@16425b30/SelectorProducer@33ee897e/IDLE/p=true/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=2]@2020-09-25T13:19:17.1648683+02:00 m=EXECUTE_PRODUCE_CONSUME t=CEP:NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING -13:19:17.164 [qtp490162356-145] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@2c6e1994{AC.ReadCB@54311e78{HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0}}} -13:19:17.164 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:17.164 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 263 HeapByteBuffer@70c805d2[p=0,l=263,c=8192,r=263]={<<>>method" :...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.164 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} filled 263 HeapByteBuffer@70c805d2[p=0,l=263,c=8192,r=263]={<<>>method" :...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.164 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=START,0 of -1},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=3,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@70c805d2[p=0,l=263,c=8192,r=263]={<<>>method" :...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@70c805d2[p=0,l=263,c=8192,r=263]={<<>>method" :...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1 -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2 -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> VALUE -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> IN_VALUE -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Length --> FIELD -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> IN_VALUE -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: text/plain; charset=UTF-8 --> FIELD -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> IN_VALUE -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:8080 --> FIELD -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> IN_VALUE -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) --> FIELD -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:8080/__admin/requests/count on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -POST //localhost:8080/__admin/requests/count HTTP/1.1 -Content-Length: 63 -Content-Type: text/plain; charset=UTF-8 -Host: localhost:8080 -Connection: keep-alive -User-Agent: Apache-HttpClient/4.5.12 (Java/11.0.2) - - -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} parsed true HttpParser{s=CONTENT,0 of 63} -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - handle //localhost:8080/__admin/requests/count HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=0} -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=0} -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.server.Server - REQUEST POST /__admin/requests/count on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=0} -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:17.165 [qtp490162356-145] DEBUG org.eclipse.jetty.server.handler.ContextHandler - context=/__admin||/requests/count @ o.e.j.s.ServletContextHandler@723426a2{/__admin,null,AVAILABLE} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.servlet.ServletHandler - servlet /__admin|/requests/count|null -> com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.servlet.ServletHandler - chain=org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true->com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.servlet.ServletHandler - call filter org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.servlet.ServletHandler - call servlet com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=CONTENT,0 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} parse HeapByteBuffer@70c805d2[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>method" :...\x00\x00\x00\x00\x00\x00\x00} {} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@70c805d2[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>method" :...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - onContent HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} Content@27957f31{HeapByteBufferR@28a3f65e[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>method" :...\x00\x00\x00\x00\x00\x00\x00}} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=0,q=0,[0]=null,s=STREAM] addContent Content@27957f31{HeapByteBufferR@28a3f65e[p=200,l=263,c=8192,r=63]={POST /__a....2)\r\n\r\n<<<{\r\n "url" : "/api/v0/com...\r\n "method" : "GET"\r\n}>>>method" :...\x00\x00\x00\x00\x00\x00\x00}} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} parsed false HttpParser{s=END,63 of 63} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@fe49b21[c=63,q=1,[0]=EOF,s=STREAM] read 63 from Content@27957f31{HeapByteBufferR@28a3f65e[p=263,l=263,c=8192,r=0]={POST /__a...GET"\r\n}<<<>>>method" :...\x00\x00\x00\x00\x00\x00\x00}} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=1} -13:19:17.166 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} -13:19:17.168 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@6648ecb5[p=0,l=56,c=8192,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}) -13:19:17.168 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=OPEN,api=BLOCKING,sc=false,e=null aggregated !flush DirectByteBuffer@42500b19[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.169 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@42500b19[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@6cff555b{null} -13:19:17.169 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /__admin/requests/count on HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=4} -200 null HTTP/1.1 -Content-Type: application/json - - -13:19:17.169 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2fbb3a24] (null,[p=0,l=56,c=32768,r=56],false)@START -13:19:17.169 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=1,cl=-1} last=false content=DirectByteBuffer@42500b19[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00} -13:19:17.169 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpGenerator - Content-Type: application/json - - -13:19:17.169 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT -13:19:17.169 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2fbb3a24] ([p=0,l=116,c=8192,r=116],[p=0,l=56,c=32768,r=56],false)@COMMITTED -13:19:17.169 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@30171743{IDLE}->null [HeapByteBuffer@70c805d2[p=0,l=116,c=8192,r=116]={<<>>8080\r\nCon...\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@42500b19[p=0,l=56,c=32768,r=56]={<<<{\r\n "count" : 0,\r\n "req...nalDisabled" : false\r\n}>>>request" ...\x00\x00\x00\x00\x00\x00\x00}] -13:19:17.169 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{WRITING}->null:IDLE-->WRITING -13:19:17.170 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "HTTP/1.1 200 OK[\r][\n]" -13:19:17.170 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Content-Type: application/json[\r][\n]" -13:19:17.170 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Transfer-Encoding: chunked[\r][\n]" -13:19:17.170 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "Server: Jetty(9.4.28.v20200408)[\r][\n]" -13:19:17.170 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:17.170 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "38[\r][\n]" -13:19:17.170 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << HTTP/1.1 200 OK -13:19:17.170 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Content-Type: application/json -13:19:17.170 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Transfer-Encoding: chunked -13:19:17.170 [Test worker] DEBUG org.apache.http.headers - http-outgoing-7 << Server: Jetty(9.4.28.v20200408) -13:19:17.170 [Test worker] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -13:19:17.171 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 116 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=6/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=COMMITTED}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=6} -13:19:17.171 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "{[\r][\n]" -13:19:17.171 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "count" : 0,[\r][\n]" -13:19:17.171 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << " "requestJournalDisabled" : false[\r][\n]" -13:19:17.171 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "}" -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 56 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=COMMITTED}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=7} -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=172 remaining=0 WriteFlusher@30171743{WRITING}->null -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{IDLE}->null:WRITING-->IDLE -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=HTTP/1.1{s=200,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@2fbb3a24] ([p=116,l=116,c=8192,r=0],[p=56,l=56,c=32768,r=0],false)@COMMITTED -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(false,null) s=OPEN,api=BLOCKED,sc=false,e=null->s=OPEN,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - close() s=CLOSING,api=BLOCKED,sc=false,e=null c=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} b=Blocker@6cff555b{null} -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@137d328[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@6cff555b{null} -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: CONTINUE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@23dba415] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: NEED_CHUNK for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@23dba415] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@23dba415] (null,[p=0,l=0,c=0,r=0],true)@COMPLETING -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@30171743{IDLE}->null [HeapByteBuffer@641ef69d[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] -13:19:17.172 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{WRITING}->null:IDLE-->WRITING -13:19:17.173 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:17.173 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "0[\r][\n]" -13:19:17.173 [Test worker] DEBUG org.apache.http.wire - http-outgoing-7 << "[\r][\n]" -13:19:17.173 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 7 NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=W,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=COMPLETING}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMMITTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=8} -13:19:17.173 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection [id: 7][route: {}->http://localhost:8080] can be kept alive indefinitely -13:19:17.173 [Test worker] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-7: set socket timeout to 0 -13:19:17.173 [Test worker] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 7][route: {}->http://localhost:8080][total available: 1; route allocated: 1 of 5; total allocated: 1 of 50] -13:19:17.173 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping Server@114f1853{STARTED}[9.4.28.v20200408] -13:19:17.173 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=7 remaining=0 WriteFlusher@30171743{WRITING}->null -13:19:17.173 [qtp490162356-145] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@30171743{IDLE}->null:WRITING-->IDLE -13:19:17.173 [Test worker] DEBUG org.eclipse.jetty.server.Server - doStop Server@114f1853{STOPPING}[9.4.28.v20200408] -13:19:17.174 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:17.174 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping SelectorManager@NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:17.174 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@4638bfa1{STARTED} id=1 keys=1 selected=1 updates=0 -13:19:17.174 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@5f21c38f on ManagedSelector@4638bfa1{STOPPING} id=1 keys=1 selected=1 updates=0 -13:19:17.174 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@5b533b73[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$SendCallback@23dba415] (null,[p=0,l=0,c=0,r=0],true)@END -13:19:17.174 [qtp490162356-145] DEBUG org.eclipse.jetty.io.AbstractEndPoint - shutdownOutput NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=END}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0},r=4,c=false/true,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=9} -13:19:17.174 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false -13:19:17.174 [qtp490162356-145] DEBUG org.eclipse.jetty.server.handler.gzip.GzipHandler - GzipHandler@431b20d4{STARTED,min=32,inflate=-1} handle Request[POST //localhost:8080/__admin/requests/count]@7849638e in null -13:19:17.174 [qtp490162356-145] DEBUG org.eclipse.jetty.server.handler.ContextHandler - scope null||/__admin/requests/count @ o.e.j.s.ServletContextHandler@70938873{/,null,SHUTDOWN} -13:19:17.174 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - sendError HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=COMPLETED is=READY awp=false se=false i=true al=0} -13:19:17.174 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - /__admin/requests/count -java.lang.IllegalStateException: COMPLETED - at org.eclipse.jetty.server.HttpChannelState.sendError(HttpChannelState.java:893) - at org.eclipse.jetty.server.Response.sendError(Response.java:462) - at org.eclipse.jetty.server.Response.sendError(Response.java:433) - at org.eclipse.jetty.server.handler.ContextHandler.checkContext(ContextHandler.java:1183) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1223) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) - at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) - at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) - at org.eclipse.jetty.server.Server.handle(Server.java:500) - at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) - at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) - at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) - at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:273) - at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) - at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) - at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:117) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) - at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) - at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) - at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) - at java.base/java.lang.Thread.run(Thread.java:834) -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - abort HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=END}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=10} {} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=END}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=10} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,OSHUT,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=END}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=10} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - doClose NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@54311e78[p=HttpParser{s=END,63 of 63},g=HttpGenerator@4e7cc718{s=END}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=10} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.io.FillInterest - onClose FillInterest@2c6e1994{null} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup ManagedSelector@4638bfa1{STOPPING} id=1 keys=1 selected=1 updates=1 -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@147db736 startThread=0 -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7fc99e59{s=HANDLING rs=BLOCKING os=ABORTED is=READY awp=false se=false i=true al=0} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0},r=4,c=false/false,a=HANDLING,uri=//localhost:8080/__admin/requests/count,age=10} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$4@35f1cc48) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - completed HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETING os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@7fc99e59{s=HANDLING rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0},r=4,c=true/false,a=IDLE,uri=//localhost:8080/__admin/requests/count,age=10} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /__admin/requests/count written=56 -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@7fc99e59{s=IDLE rs=COMPLETED os=ABORTED is=READY awp=false se=false i=false al=0} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - close HttpParser{s=END,63 of 63} -13:19:17.175 [qtp490162356-145] DEBUG org.eclipse.jetty.http.HttpParser - END --> CLOSE -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.server.HttpConnection - HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=2/30000}{io=1/0,kio=-1,kro=-1}->HttpConnection@54311e78[p=HttpParser{s=CLOSE,63 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@5f21c38f -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 1 connections on ManagedSelector@4638bfa1{STOPPING} id=1 keys=1 selected=1 updates=0 -13:19:17.176 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@3465c43d on ManagedSelector@4638bfa1{STOPPING} id=1 keys=1 selected=1 updates=0 -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 1 -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - wakeup on updates SelectorProducer@33ee897e -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Ignoring key update for concurrently closed channel NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@54311e78[p=HttpParser{s=CLOSE,63 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@54311e78[p=HttpParser{s=CLOSE,63 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.AbstractEndPoint - close(null) NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=3/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@54311e78[p=HttpParser{s=CLOSE,63 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b waiting with 1 keys -13:19:17.176 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken with none selected -13:19:17.177 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b woken up from select, 0/0/0 selected -13:19:17.177 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@1f984d8b processing 0 keys, 1 updates -13:19:17.177 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:17.177 [qtp490162356-145] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@3465c43d -13:19:17.177 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@16425b30/SelectorProducer@33ee897e/PRODUCING/p=true/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:19:17.177864+02:00 -13:19:17.177 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@16425b30/SelectorProducer@33ee897e/PRODUCING/p=true/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}][pc=0,pic=0,pec=1,epc=3]@2020-09-25T13:19:17.177864+02:00 -13:19:17.177 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@4638bfa1{STOPPED} id=1 keys=-1 selected=-1 updates=0 -13:19:17.177 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ManagedSelector@2b8c6a8c{STARTED} id=0 keys=0 selected=0 updates=0 -13:19:17.177 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CloseConnections@393c5ffc on ManagedSelector@2b8c6a8c{STOPPING} id=0 keys=0 selected=0 updates=0 -13:19:17.177 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2b8c6a8c{STOPPING} id=0 keys=0 selected=0 updates=1 -13:19:17.177 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@4161f170 woken with none selected -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@4161f170 woken up from select, 0/0/0 selected -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@4161f170 processing 0 keys, 1 updates -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$CloseConnections@393c5ffc -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - Closing 0 connections on ManagedSelector@2b8c6a8c{STOPPING} id=0 keys=0 selected=0 updates=0 -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@4161f170 waiting with 0 keys -13:19:17.178 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$StopSelector@7e71c538 on ManagedSelector@2b8c6a8c{STOPPING} id=0 keys=0 selected=0 updates=0 -13:19:17.178 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@2b8c6a8c{STOPPING} id=0 keys=0 selected=0 updates=1 -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@4161f170 woken with none selected -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@4161f170 woken up from select, 0/0/0 selected -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.WindowsSelectorImpl@4161f170 processing 0 keys, 1 updates -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1 -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$StopSelector@7e71c538 -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0 -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$425/0x00000001005fc040@e2865e0 in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}] -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}@840653d in QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}] -13:19:17.178 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping EatWhatYouKill@1c0731cf/SelectorProducer@57e0ba1/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=0,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=0/1,p=1}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:17.1788624+02:00 -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=1/1,p=1}@840653d started -13:19:17.178 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}@840653d waiting -13:19:17.178 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED EatWhatYouKill@1c0731cf/SelectorProducer@57e0ba1/IDLE/p=false/QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}][pc=0,pic=0,pec=0,epc=0]@2020-09-25T13:19:17.1788624+02:00 -13:19:17.178 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ManagedSelector@2b8c6a8c{STOPPED} id=0 keys=-1 selected=-1 updates=0 -13:19:17.178 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED SelectorManager@NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:17.178 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HttpConnectionFactory@61ac64a9[HTTP/1.1] -13:19:17.178 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HttpConnectionFactory@61ac64a9[HTTP/1.1] -13:19:17.178 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ScheduledExecutorScheduler@2136489c{STARTED} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ScheduledExecutorScheduler@2136489c{STOPPED} -13:19:17.179 [Test worker] INFO org.eclipse.jetty.server.AbstractConnector - Stopped NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NetworkTrafficServerConnector@48524c45{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping Server@114f1853{STOPPING}[9.4.28.v20200408] -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ErrorHandler@2347e6e5{STARTED} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ErrorHandler@2347e6e5{STOPPING} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ErrorHandler@2347e6e5{STOPPED} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping HandlerCollection@257f0851{STARTED} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping HandlerCollection@257f0851{STOPPING} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping GzipHandler@431b20d4{STARTED,min=32,inflate=-1} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping GzipHandler@431b20d4{STOPPING,min=32,inflate=-1} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@70938873{/,null,SHUTDOWN} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@70938873{/,null,UNAVAILABLE} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping NotFoundHandler@46c761a5{STARTED} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping NotFoundHandler@46c761a5{STOPPING} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED NotFoundHandler@46c761a5{STOPPED} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@34f41a3b{STARTED} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@34f41a3b{STOPPING} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-58c880a4@58c880a4==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-58c880a4@58c880a4==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-a1eddf1@a1eddf1==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=true,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter-a1eddf1@a1eddf1==com.github.tomakehurst.wiremock.servlet.TrailingSlashFilter,inst=false,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52f68e84@52f68e84==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=true,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter-52f68e84@52f68e84==com.github.tomakehurst.wiremock.servlet.ContentTypeSettingFilter,inst=false,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-67c6b85e@517647e8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-67c6b85e@517647e8==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-bfa7942@56c093fe==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-bfa7942@56c093fe==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@34f41a3b{STOPPED} -13:19:17.179 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@70938873{/,null,UNAVAILABLE} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@70938873{/,null,UNAVAILABLE} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED GzipHandler@431b20d4{STOPPED,min=32,inflate=-1} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping o.e.j.s.ServletContextHandler@723426a2{/__admin,null,SHUTDOWN} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping o.e.j.s.ServletContextHandler@723426a2{/__admin,null,UNAVAILABLE} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ServletHandler@3bbfb3ea{STARTED} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.server.handler.AbstractHandler - stopping ServletHandler@3bbfb3ea{STOPPING} -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=true,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlets.CrossOriginFilter-3950dc23@3950dc23==org.eclipse.jetty.servlets.CrossOriginFilter,inst=false,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=true,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet-7fb600dc@6dd0aa30==com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet,jsp=null,order=-1,inst=false,async=true -13:19:17.179 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-24d5f8c7@b738d3f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-24d5f8c7@b738d3f8==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping org.eclipse.jetty.servlet.DefaultServlet-7787c1a3@1256e21e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.DefaultServlet-7787c1a3@1256e21e==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=-1,inst=false,async=true -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ServletHandler@3bbfb3ea{STOPPED} -13:19:17.180 [Test worker] INFO org.eclipse.jetty.server.handler.ContextHandler - Stopped o.e.j.s.ServletContextHandler@723426a2{/__admin,null,UNAVAILABLE} -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED o.e.j.s.ServletContextHandler@723426a2{/__admin,null,UNAVAILABLE} -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED HandlerCollection@257f0851{STOPPED} -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping QueuedThreadPool[qtp490162356]@1d3748b4{STARTED,8<=8<=14,i=1,r=1,q=0}[ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}] -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Stopping QueuedThreadPool[qtp490162356]@1d3748b4{STOPPING,8<=8<=14,i=1,r=-1,q=0}[ReservedThreadExecutor@7ea74f5c{s=1/1,p=0}] -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - stopping ReservedThreadExecutor@7ea74f5c{s=1/1,p=0} -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=0/1,p=0}@840653d offer STOP! -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED ReservedThreadExecutor@7ea74f5c{s=-1/1,p=0} -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.io.ManagedSelector - Destroyed NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@54311e78[p=HttpParser{s=CLOSE,63 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.io.AbstractConnection - onClose HttpConnection@54311e78::NetworkTrafficSocketChannelEndPoint@30336c14{/127.0.0.1:65065<->/127.0.0.1:8080,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->HttpConnection@54311e78[p=HttpParser{s=CLOSE,63 of 63},g=HttpGenerator@4e7cc718{s=START}]=>HttpChannelOverHttp@3acb0764{s=HttpChannelState@7fc99e59{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=4,c=false/false,a=IDLE,uri=null,age=0} -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED QueuedThreadPool[qtp490162356]@1d3748b4{STOPPED,8<=0<=14,i=1,r=-1,q=0}[NO_TRY] -13:19:17.180 [Test worker] DEBUG org.eclipse.jetty.util.component.AbstractLifeCycle - STOPPED Server@114f1853{STOPPED}[9.4.28.v20200408] -13:19:17.181 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=-1/1,p=0}@840653d task=STOP! -13:19:17.181 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7ea74f5c{s=-1/1,p=0}@840653d Exited -13:19:17.181 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - ran ReservedThreadExecutor@7ea74f5c{s=-1/1,p=0}@840653d in QueuedThreadPool[qtp490162356]@1d3748b4{STOPPED,8<=0<=14,i=1,r=-1,q=0}[NO_TRY] -13:19:17.181 [qtp490162356-139] DEBUG org.eclipse.jetty.util.thread.QueuedThreadPool - Thread[qtp490162356-139,5,main] exited for QueuedThreadPool[qtp490162356]@1d3748b4{STOPPED,8<=0<=14,i=1,r=-1,q=0}[NO_TRY] -]]> - - diff --git a/src/test/resources/dtr_proof.pdf b/src/test/resources/dtr_proof.pdf deleted file mode 100644 index 14cc7608..00000000 Binary files a/src/test/resources/dtr_proof.pdf and /dev/null differ diff --git a/src/test/resources/expected/ORDGP/CFTP-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/CFTP-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..4884133b Binary files /dev/null and b/src/test/resources/expected/ORDGP/CFTP-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/CFTR-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/CFTR-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..5ee7edcb Binary files /dev/null and b/src/test/resources/expected/ORDGP/CFTR-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/CSD-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/CSD-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..7dd40e85 Binary files /dev/null and b/src/test/resources/expected/ORDGP/CSD-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/DIL-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/DIL-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..de2d2d9e Binary files /dev/null and b/src/test/resources/expected/ORDGP/DIL-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/DTP-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/DTP-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..aa8cf9de Binary files /dev/null and b/src/test/resources/expected/ORDGP/DTP-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/DTR-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/DTR-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..9698e43d Binary files /dev/null and b/src/test/resources/expected/ORDGP/DTR-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/IVP-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/IVP-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..0cfbfbf8 Binary files /dev/null and b/src/test/resources/expected/ORDGP/IVP-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/IVR-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/IVR-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..cb46a1bd Binary files /dev/null and b/src/test/resources/expected/ORDGP/IVR-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/RA-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/RA-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..62e3f555 Binary files /dev/null and b/src/test/resources/expected/ORDGP/RA-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/SSDS-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/SSDS-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..276942df Binary files /dev/null and b/src/test/resources/expected/ORDGP/SSDS-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/TCP-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/TCP-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..d63113f1 Binary files /dev/null and b/src/test/resources/expected/ORDGP/TCP-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/TCR-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/TCR-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..5474ce7f Binary files /dev/null and b/src/test/resources/expected/ORDGP/TCR-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/TIP-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/TIP-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..ad63a22b Binary files /dev/null and b/src/test/resources/expected/ORDGP/TIP-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/TIR-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/TIR-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..0d170907 Binary files /dev/null and b/src/test/resources/expected/ORDGP/TIR-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/TRC-ORDGP-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/TRC-ORDGP-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..442a39e6 Binary files /dev/null and b/src/test/resources/expected/ORDGP/TRC-ORDGP-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/backend/DTR-ORDGP-backend-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/backend/DTR-ORDGP-backend-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..d269f84e Binary files /dev/null and b/src/test/resources/expected/ORDGP/backend/DTR-ORDGP-backend-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/backend/TIR-ORDGP-backend-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/backend/TIR-ORDGP-backend-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..277c837c Binary files /dev/null and b/src/test/resources/expected/ORDGP/backend/TIR-ORDGP-backend-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/frontend/DTR-ORDGP-frontend-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/frontend/DTR-ORDGP-frontend-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..df4b5e04 Binary files /dev/null and b/src/test/resources/expected/ORDGP/frontend/DTR-ORDGP-frontend-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/expected/ORDGP/frontend/TIR-ORDGP-frontend-WIP-2022-01-22_23-59-59.pdf b/src/test/resources/expected/ORDGP/frontend/TIR-ORDGP-frontend-WIP-2022-01-22_23-59-59.pdf new file mode 100644 index 00000000..5317f2a5 Binary files /dev/null and b/src/test/resources/expected/ORDGP/frontend/TIR-ORDGP-frontend-WIP-2022-01-22_23-59-59.pdf differ diff --git a/src/test/resources/github-ods-document-generation-templates-1.0.zip b/src/test/resources/github-ods-document-generation-templates-1.0.zip deleted file mode 100644 index be4fe804..00000000 Binary files a/src/test/resources/github-ods-document-generation-templates-1.0.zip and /dev/null differ diff --git a/src/test/resources/leva-doc-functional-test-projects.yml b/src/test/resources/leva-doc-functional-test-projects.yml new file mode 100644 index 00000000..3b5cb12e --- /dev/null +++ b/src/test/resources/leva-doc-functional-test-projects.yml @@ -0,0 +1,140 @@ +############################################################################### +# +# Also see org.ods.doc.gen.leva.doc.fixture.DocTypeProjectFixtureBase +# +# Description of some relevant fields: +# +# - id: frml24113 --> in lowe case!!! +# +# - version: WIP or 1.0 ... (same as in Jenkins build param) +# +# - docsToTest: docTypes to generate in the given state of the project +# all should be: CFTP, CFTR, CSD, DIL, DTP, DTR, IVP, IVR, RA, SSDS, TCP, TCR, TIP, TIR, TRC +# (overall are not needed to put here as put DTR, TIR is enough) + +# - components: all ODS components in loweCase +# +# - validation: > Explain here what we are validating here +# ### Project validates +# * Large images +# * Discontinue tests +# +# - Projects: ordgp, twrfdgp, trdgp, g3dgp, g4dgp +# +# NOTE: We can have a project more than one time: with different "version", as will produce different pdfs +# +############################################################################### +projects: + - id: ordgp + description: One release DocGen + buildNumber: 13 + releaseId: ORDGP-123 + version: WIP + releaseManagerRepo: ordgp-releasemanager + releaseManagerBranch: workInProgressBranch + docsToTest: CFTP, CFTR, CSD, DIL, DTP, DTR, IVP, IVR, RA, SSDS, TCP, TCR, TIP, TIR, TRC + testResults: unit-backend, unit-frontend, acceptance, installation, integration + components: backend, frontend + templatesVersion: 1.2 + validation: > + ### Project validates + * Images in documents + * Images in tables + * Long texts in issues + * Long texts in tables + * Long lists on tables + * All Test Levels documented + * Test Steps documented + * Epics Documented + + - id: twrfdgp + description: Two releases Frozen DocGen + buildNumber: 17 + releaseId: TWRFDGP-179 + version: 3.0 + releaseManagerRepo: twrfdgp-releasemanager + releaseManagerBranch: release/3.0 + docsToTest: CFTP, CSD, DTP, DTR, IVP, RA, SSDS, TCP, TIP, TIR + testResults: + components: thefirst + templatesVersion: 1.2 + validation: > + ### Project validates + * Issues Succeeded + * Issues Discontinued + * All Test Levels documented + * Test Steps documented + * Manual Tests not documented + * Failing Tests + * Releases frozen + * Images in documents + + - id: trdgp + description: Two releases DocGen + buildNumber: 666 + releaseId: TRFDGP-179 + version: 4.0 + releaseManagerRepo: trfdgp-releasemanager + releaseManagerBranch: release/4.0 + docsToTest: CFTP, CSD, DTP, DTR, IVP, RA, SSDS, TCP, TIP, TIR + testResults: + components: backend, frontend, test + templatesVersion: 1.2 + validation: > + ### Project validates + * Issues Succeeded + * Issues Discontinued + * All Test Levels documented + * Test Steps documented + * Manual Tests not documented + * Failing Tests + * Releases frozen + * Images in documents + + - id: g3dgp + description: Gamp 3 DocGen + buildNumber: 666 + releaseId: G3DGP-123 + version: WIP + releaseManagerRepo: g3dgp-releasemanager + releaseManagerBranch: master + docsToTest: CFTP, CFTR, CSD, DIL, DTP, DTR, IVP, IVR, RA, SSDS, TCP, TCR, TIP, TIR, TRC + testResults: + components: backend, frontend, test + templatesVersion: 1.2 + validation: > + ### Project validates + * GAMP 3 Documentation + * Saas component provisioned + + - id: g4dgp + description: Gamp 4 DocGen + buildNumber: 666 + releaseId: G4DGP-123 + version: WIP + releaseManagerRepo: g4dgp-releasemanager + releaseManagerBranch: master + docsToTest: CFTP, CFTR, CSD, DIL, DTP, DTR, IVP, IVR, RA, SSDS, TCP, TCR, TIP, TIR, TRC + testResults: + components: backend, frontend, test + templatesVersion: 1.2 + validation: > + ### Project validates + * GAMP 4 Documentation + * Saas component provisioned + + - id: brassp + description: test a real one + buildNumber: 666 + releaseId: BRASSP-125 + version: CHG0059116 + releaseManagerRepo: brassp-release-manager-mp + releaseManagerBranch: release/CHG0059116 + docsToTest: SSDS + components: airflowservice-postgresql, airflowservice-postgresql, airflowservice-ws, angular, be-job-scheduler-service, be-worker-aggregation-service, be-worker-report-service, be-worker-reportscheduler-service, be-worker-scheduler-service, graphql-node, interactive-help, test-runner, testrunner-backend + templatesVersion: 1.2 + validation: > + ### To execute it, update gradle properties and in LevaDocDataFixture: + * url: "https://bitbucket-dev.biscrum.com/scm/ordgp/${projectFixture.project}-release-manager-mp" + * releaseManagerRepo: "${projectFixture.project}-release-manager-mp" + * releaseManagerBranch: "release/CHG0059116" \ No newline at end of file diff --git a/src/test/resources/nexus/LICENSE.zip b/src/test/resources/nexus/LICENSE.zip new file mode 100644 index 00000000..d30823d4 Binary files /dev/null and b/src/test/resources/nexus/LICENSE.zip differ diff --git a/src/test/resources/pacts/buildDocument.component-createDoc.component.json b/src/test/resources/pacts/buildDocument.component-createDoc.component.json new file mode 100644 index 00000000..cbff8c08 --- /dev/null +++ b/src/test/resources/pacts/buildDocument.component-createDoc.component.json @@ -0,0 +1,1952 @@ +{ + "provider": { + "name": "createDoc.component" + }, + "consumer": { + "name": "buildDocument.component" + }, + "interactions": [ + { + "description": "a request for /buildDocument DTR", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/DTR", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + }, + "repo": { + "branch": "master", + "data": { + "documents": { + + }, + "git": { + "baseTag": "", + "branch": "master", + "commit": "", + "previousCommit": null, + "previousSucessfulCommit": null, + "targetTag": "", + "url": "http://bitbucket.odsbox.lan:7990/scm/ordgp/ordgp-theFirst.git/" + }, + "openshift": { + "CREATED_BY_BUILD": "WIP/1", + "SCRR": "SCRR-ordgp-theFirst.docx", + "SCRR-MD": "SCRR-ordgp-theFirst.md", + "builds": { + "frontend": { + "buildId": "theFirst-3", + "image": "172.30.1.1:5000/ordgp-cd/teFirst@sha256:f6bc9aaed8a842a8e0a4f7e69b044a12c69e057333cd81906c08fd94be044ac4" + } + }, + "deployments": { + "frontend": { + "containers": { + "frontend": "172.30.1.1:5000/ordgp-cd/therFirst@sha256:f6bc9aaed8a842a8e0a4f7e69b044a12c69e057333cd81906c08fd94be044ac4" + }, + "deploymentId": "theFirst-3", + "podIp": "172.17.0.39", + "podMetaDataCreationTimestamp": "2021-11-21T22:31:04Z", + "podName": "theFirst-3", + "podNamespace": "foi2004-dev", + "podNode": "localhost", + "podStartupTimeStamp": "2021-11-21T22:31:04Z", + "podStatus": "Running" + } + }, + "sonarqubeScanStashPath": "scrr-report-theFirst-1", + "testResults": "1", + "testResultsFolder": "build/test-results/test", + "xunitTestResultsStashPath": "test-reports-junit-xml-theFirst-1" + } + }, + "id": "theFirst", + "metadata": { + "description": "OpenJDK is a free and open-source implementation of the Java Platform, Standard Edition. Technologies: Spring Boot 2.1, OpenJDK 11, supplier:https://adoptopenjdk.net", + "name": "OpenJDK", + "type": "ods", + "version": "3.x" + }, + "pipelineConfig": { + "dependencies": [ + [ + + ] + ] + }, + "type": "ods", + "url": "http://bitbucket.odsbox.lan:7990/scm/ordgp/ordgp-theFirst.git/" + }, + "tests": { + "unit": { + "testReportFiles": [ + { + "absolute": true, + "absolutePath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "canonicalPath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "directory": false, + "file": true, + "freeSpace": 12417183744, + "hidden": false, + "invalid": false, + "name": "TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "parent": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test", + "path": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "prefixLength": 1, + "totalSpace": 53660876800, + "usableSpace": 12417183744 + } + ], + "testResults": { + "testsuites": [ + { + "errors": "0", + "failures": "0", + "hostname": "pod-78fd40da-2e86-47bd-b56f-0dabb3231971-mw77k-tv93m", + "name": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "properties": [ + [ + + ] + ], + "skipped": "0", + "systemErr": "", + "systemOut": "12:07:42.161 [Test worker] DEBUG org.springframework.test.context.BootstrapUtils", + "testcases": [ + { + "classname": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "name": "ORDGP163_workingunittest()", + "skipped": false, + "systemErr": "", + "systemOut": "", + "time": "0.612", + "timestamp": "2021-12-07T12:07:56" + } + ], + "tests": "2", + "time": "0.677", + "timestamp": "2021-12-07T12:07:56" + } + ] + } + } + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].parent": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].path": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolutePath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].totalSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].hidden": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].usableSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].canonicalPath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].invalid": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].freeSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].file": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolute": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].prefixLength": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].directory": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].hostname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].classname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].tests": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].errors": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].properties": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].failures": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.id": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.type": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.image": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podNamespace": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podMetaDataCreationTimestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.deploymentId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podNode": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podIp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podStatus": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podStartupTimeStamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.*.frontend": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.sonarqubeScanStashPath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.SCRR": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.SCRR-MD": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testResultsFolder": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testResults": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.xunitTestResultsStashPath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.CREATED_BY_BUILD": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.branch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.previousCommit": { + "matchers": [ + { + "match": "null" + } + ], + "combine": "AND" + }, + "$.*.*.*.previousSucessfulCommit": { + "matchers": [ + { + "match": "null" + } + ], + "combine": "AND" + }, + "$.*.*.*.url": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.*.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.url": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.branch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.dependencies": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.description": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.type": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/DTR-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/DTR-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "project": "ORDGP", + "buildNumber": "666", + "version": "WIP", + "docType": "DTR" + } + } + ] + }, + { + "description": "a request for /buildDocument TIR", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/TIR", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + }, + "repo": { + "branch": "master", + "data": { + "documents": { + + }, + "git": { + "baseTag": "", + "branch": "master", + "commit": "", + "previousCommit": null, + "previousSucessfulCommit": null, + "targetTag": "", + "url": "http://bitbucket.odsbox.lan:7990/scm/ordgp/ordgp-theFirst.git/" + }, + "openshift": { + "CREATED_BY_BUILD": "WIP/1", + "SCRR": "SCRR-ordgp-theFirst.docx", + "SCRR-MD": "SCRR-ordgp-theFirst.md", + "builds": { + "frontend": { + "buildId": "theFirst-3", + "image": "172.30.1.1:5000/ordgp-cd/teFirst@sha256:f6bc9aaed8a842a8e0a4f7e69b044a12c69e057333cd81906c08fd94be044ac4" + } + }, + "deployments": { + "frontend": { + "containers": { + "frontend": "172.30.1.1:5000/ordgp-cd/therFirst@sha256:f6bc9aaed8a842a8e0a4f7e69b044a12c69e057333cd81906c08fd94be044ac4" + }, + "deploymentId": "theFirst-3", + "podIp": "172.17.0.39", + "podMetaDataCreationTimestamp": "2021-11-21T22:31:04Z", + "podName": "theFirst-3", + "podNamespace": "foi2004-dev", + "podNode": "localhost", + "podStartupTimeStamp": "2021-11-21T22:31:04Z", + "podStatus": "Running" + } + }, + "sonarqubeScanStashPath": "scrr-report-theFirst-1", + "testResults": "1", + "testResultsFolder": "build/test-results/test", + "xunitTestResultsStashPath": "test-reports-junit-xml-theFirst-1" + } + }, + "id": "theFirst", + "metadata": { + "description": "OpenJDK is a free and open-source implementation of the Java Platform, Standard Edition. Technologies: Spring Boot 2.1, OpenJDK 11, supplier:https://adoptopenjdk.net", + "name": "OpenJDK", + "type": "ods", + "version": "3.x" + }, + "pipelineConfig": { + "dependencies": [ + [ + + ] + ] + }, + "type": "ods", + "url": "http://bitbucket.odsbox.lan:7990/scm/ordgp/ordgp-theFirst.git/" + }, + "tests": { + "unit": { + "testReportFiles": [ + { + "absolute": true, + "absolutePath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "canonicalPath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "directory": false, + "file": true, + "freeSpace": 12417183744, + "hidden": false, + "invalid": false, + "name": "TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "parent": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test", + "path": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "prefixLength": 1, + "totalSpace": 53660876800, + "usableSpace": 12417183744 + } + ], + "testResults": { + "testsuites": [ + { + "errors": "0", + "failures": "0", + "hostname": "pod-78fd40da-2e86-47bd-b56f-0dabb3231971-mw77k-tv93m", + "name": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "properties": [ + [ + + ] + ], + "skipped": "0", + "systemErr": "", + "systemOut": "12:07:42.161 [Test worker] DEBUG org.springframework.test.context.BootstrapUtils", + "testcases": [ + { + "classname": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "name": "ORDGP163_workingunittest()", + "skipped": false, + "systemErr": "", + "systemOut": "", + "time": "0.612", + "timestamp": "2021-12-07T12:07:56" + } + ], + "tests": "2", + "time": "0.677", + "timestamp": "2021-12-07T12:07:56" + } + ] + } + } + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.*.frontend": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.deploymentId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.image": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podIp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podMetaDataCreationTimestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podNamespace": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podNode": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podStartupTimeStamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.*.*.podStatus": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.CREATED_BY_BUILD": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.SCRR": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.SCRR-MD": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.branch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.previousCommit": { + "matchers": [ + { + "match": "null" + } + ], + "combine": "AND" + }, + "$.*.*.*.previousSucessfulCommit": { + "matchers": [ + { + "match": "null" + } + ], + "combine": "AND" + }, + "$.*.*.*.sonarqubeScanStashPath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testResults": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testResultsFolder": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].errors": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].failures": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].hostname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].properties": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].classname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].tests": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.url": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.*.*.xunitTestResultsStashPath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.dependencies": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.description": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolute": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolutePath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].canonicalPath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].directory": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].file": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].freeSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].hidden": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].invalid": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].parent": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].path": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].prefixLength": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].totalSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].usableSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.type": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.branch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.id": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.type": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.url": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/TIR-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/TIR-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "TIR", + "project": "ORDGP", + "version": "WIP" + } + } + ] + } + ], + "metadata": { + "pactSpecification": { + "version": "3.0.0" + }, + "pact-jvm": { + "version": "3.5.24" + } + } +} \ No newline at end of file diff --git a/src/test/resources/pacts/buildDocument.defaultParams-createDoc.defaultParams.json b/src/test/resources/pacts/buildDocument.defaultParams-createDoc.defaultParams.json new file mode 100644 index 00000000..cd08d2fd --- /dev/null +++ b/src/test/resources/pacts/buildDocument.defaultParams-createDoc.defaultParams.json @@ -0,0 +1,2578 @@ +{ + "provider": { + "name": "createDoc.defaultParams" + }, + "consumer": { + "name": "buildDocument.defaultParams" + }, + "interactions": [ + { + "description": "a request for /buildDocument CFTP", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/CFTP", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/CFTP-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/CFTP-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "CFTP", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument CSD", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/CSD", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/CSD-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/CSD-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "CSD", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument DIL", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/DIL", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/DIL-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/DIL-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "DIL", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument DTP", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/DTP", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/DTP-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/DTP-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "DTP", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument IVP", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/IVP", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/IVP-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/IVP-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "IVP", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument RA", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/RA", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/RA-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/RA-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "RA", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument SSDS", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/SSDS", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/SSDS-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/SSDS-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "SSDS", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument TCP", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/TCP", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/TCP-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/TCP-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "TCP", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument TIP", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/TIP", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/TIP-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/TIP-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "TIP", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument TRC", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/TRC", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/TRC-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/TRC-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "project": "ORDGP", + "buildNumber": "666", + "version": "WIP", + "docType": "TRC" + } + } + ] + } + ], + "metadata": { + "pactSpecification": { + "version": "3.0.0" + }, + "pact-jvm": { + "version": "3.5.24" + } + } +} \ No newline at end of file diff --git a/src/test/resources/pacts/buildDocument.overall-createDoc.overall.json b/src/test/resources/pacts/buildDocument.overall-createDoc.overall.json new file mode 100644 index 00000000..191d465e --- /dev/null +++ b/src/test/resources/pacts/buildDocument.overall-createDoc.overall.json @@ -0,0 +1,530 @@ +{ + "provider": { + "name": "createDoc.overall" + }, + "consumer": { + "name": "buildDocument.overall" + }, + "interactions": [ + { + "description": "a request for /buildDocument OVERALL_DTR", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/OVERALL_DTR", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/OVERALL_DTR-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/OVERALL_DTR-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "OVERALL_DTR", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument OVERALL_TIR", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/OVERALL_TIR", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/OVERALL_TIR-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/OVERALL_TIR-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "project": "ORDGP", + "buildNumber": "666", + "version": "WIP", + "docType": "OVERALL_TIR" + } + } + ] + } + ], + "metadata": { + "pactSpecification": { + "version": "3.0.0" + }, + "pact-jvm": { + "version": "3.5.24" + } + } +} \ No newline at end of file diff --git a/src/test/resources/pacts/buildDocument.testData-createDoc.testData.json b/src/test/resources/pacts/buildDocument.testData-createDoc.testData.json new file mode 100644 index 00000000..b0983673 --- /dev/null +++ b/src/test/resources/pacts/buildDocument.testData-createDoc.testData.json @@ -0,0 +1,1836 @@ +{ + "provider": { + "name": "createDoc.testData" + }, + "consumer": { + "name": "buildDocument.testData" + }, + "interactions": [ + { + "description": "a request for /buildDocument CFTR", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/CFTR", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + }, + "tests": { + "unit": { + "testReportFiles": [ + { + "absolute": true, + "absolutePath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "canonicalPath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "directory": false, + "file": true, + "freeSpace": 12417183744, + "hidden": false, + "invalid": false, + "name": "TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "parent": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test", + "path": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "prefixLength": 1, + "totalSpace": 53660876800, + "usableSpace": 12417183744 + } + ], + "testResults": { + "testsuites": [ + { + "errors": "0", + "failures": "0", + "hostname": "pod-78fd40da-2e86-47bd-b56f-0dabb3231971-mw77k-tv93m", + "name": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "properties": [ + [ + + ] + ], + "skipped": "0", + "systemErr": "", + "systemOut": "12:07:42.161 [Test worker] DEBUG org.springframework.test.context.BootstrapUtils", + "testcases": [ + { + "classname": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "name": "ORDGP163_workingunittest()", + "skipped": false, + "systemErr": "", + "systemOut": "", + "time": "0.612", + "timestamp": "2021-12-07T12:07:56" + } + ], + "tests": "2", + "time": "0.677", + "timestamp": "2021-12-07T12:07:56" + } + ] + } + } + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].errors": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].failures": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].hostname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].properties": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].classname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].tests": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolute": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolutePath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].canonicalPath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].directory": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].file": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].freeSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].hidden": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].invalid": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].parent": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].path": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].prefixLength": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].totalSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].usableSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/CFTR-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/CFTR-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "CFTR", + "project": "ORDGP", + "version": "WIP" + } + } + ] + }, + { + "description": "a request for /buildDocument IVR", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/IVR", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + }, + "tests": { + "unit": { + "testReportFiles": [ + { + "absolute": true, + "absolutePath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "canonicalPath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "directory": false, + "file": true, + "freeSpace": 12417183744, + "hidden": false, + "invalid": false, + "name": "TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "parent": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test", + "path": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "prefixLength": 1, + "totalSpace": 53660876800, + "usableSpace": 12417183744 + } + ], + "testResults": { + "testsuites": [ + { + "errors": "0", + "failures": "0", + "hostname": "pod-78fd40da-2e86-47bd-b56f-0dabb3231971-mw77k-tv93m", + "name": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "properties": [ + [ + + ] + ], + "skipped": "0", + "systemErr": "", + "systemOut": "12:07:42.161 [Test worker] DEBUG org.springframework.test.context.BootstrapUtils", + "testcases": [ + { + "classname": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "name": "ORDGP163_workingunittest()", + "skipped": false, + "systemErr": "", + "systemOut": "", + "time": "0.612", + "timestamp": "2021-12-07T12:07:56" + } + ], + "tests": "2", + "time": "0.677", + "timestamp": "2021-12-07T12:07:56" + } + ] + } + } + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].parent": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].path": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolutePath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].totalSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].hidden": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].usableSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].canonicalPath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].invalid": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].freeSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].file": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolute": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].prefixLength": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].directory": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].hostname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].classname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].tests": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].errors": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].properties": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].failures": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/IVR-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/IVR-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "project": "ORDGP", + "buildNumber": "666", + "version": "WIP", + "docType": "IVR" + } + } + ] + }, + { + "description": "a request for /buildDocument TCR", + "request": { + "method": "POST", + "path": "/levaDoc/ORDGP/666/TCR", + "headers": { + "Content-Type": "application/json" + }, + "body": { + "build": { + "buildId": "2022-01-22_23-59-59", + "buildURL": "https//jenkins-sample/", + "changeDescription": "changeDescription", + "changeId": "changeId", + "configItem": "BI-IT-DEVSTACK", + "jobName": "ordgp-cd/ordgp-cd-release-master", + "rePromote": false, + "releaseParamVersion": "1.0", + "releaseStatusJiraIssueKey": "ORDGP-123", + "runDisplayUrl": "https://jenkins-sample/blabla/", + "targetEnvironment": "dev", + "targetEnvironmentToken": "D", + "version": "WIP" + }, + "git": { + "author": "s2o", + "baseTag": "ods-generated-v3.0-3.0-0b11-D", + "commit": "1e84b5100e09d9b6c5ea1b6c2ccee8957391beec", + "commitTime": "2021-04-20T14:58:31.042152", + "message": "Swingin' The Bottle", + "releaseManagerBranch": "refs/heads/master", + "releaseManagerRepo": "ordgp-releasemanager", + "targetTag": "ods-generated-v3.0-3.0-0b11-D" + }, + "openshift": { + "targetApiUrl": "https://openshift-sample/" + }, + "tests": { + "unit": { + "testReportFiles": [ + { + "absolute": true, + "absolutePath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "canonicalPath": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "directory": false, + "file": true, + "freeSpace": 12417183744, + "hidden": false, + "invalid": false, + "name": "TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "parent": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test", + "path": "/tmp/junit12071942610173190818/workspace/xunit/thefirst/unit/build/test-results/test/TEST-com.boehringer.frml24113.thefirst.ThefirstApplicationTests.xml", + "prefixLength": 1, + "totalSpace": 53660876800, + "usableSpace": 12417183744 + } + ], + "testResults": { + "testsuites": [ + { + "errors": "0", + "failures": "0", + "hostname": "pod-78fd40da-2e86-47bd-b56f-0dabb3231971-mw77k-tv93m", + "name": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "properties": [ + [ + + ] + ], + "skipped": "0", + "systemErr": "", + "systemOut": "12:07:42.161 [Test worker] DEBUG org.springframework.test.context.BootstrapUtils", + "testcases": [ + { + "classname": "com.boehringer.frml24113.thefirst.ThefirstApplicationTests", + "name": "ORDGP163_workingunittest()", + "skipped": false, + "systemErr": "", + "systemOut": "", + "time": "0.612", + "timestamp": "2021-12-07T12:07:56" + } + ], + "tests": "2", + "time": "0.677", + "timestamp": "2021-12-07T12:07:56" + } + ] + } + } + } + }, + "matchingRules": { + "body": { + "$.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].errors": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].failures": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].hostname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].properties": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].classname": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].skipped": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemErr": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].systemOut": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].testcases[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].tests": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].time": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.*.testsuites[*].timestamp": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolute": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].absolutePath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].canonicalPath": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].directory": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].file": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].freeSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].hidden": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].invalid": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].name": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].parent": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].path": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].prefixLength": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].totalSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.*.testReportFiles[*].usableSpace": { + "matchers": [ + { + "match": "number" + } + ], + "combine": "AND" + }, + "$.*.author": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.baseTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.buildURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.changeDescription": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.changeId": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commit": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.commitTime": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.configItem": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.jobName": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.message": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.rePromote": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseManagerBranch": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseParamVersion": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.releaseStatusJiraIssueKey": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.runDisplayUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetApiUrl": { + "matchers": [ + { + "match": "regex", + "regex": ".*$" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironment": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetEnvironmentToken": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.targetTag": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + }, + "$.*.version": { + "matchers": [ + { + "match": "type" + } + ], + "combine": "AND" + } + } + } + }, + "response": { + "status": 200, + "headers": { + "Content-Type": "application/json" + }, + "body": { + "nexusURL": "http://lalala/repository/leva-documentation/ordgp-WIP/TCR-ORDGP-WIP-2022-01-22_23-59-59.zip" + }, + "matchingRules": { + "body": { + "$.nexusURL": { + "matchers": [ + { + "match": "regex", + "regex": ".*\\Qrepository/leva-documentation/ordgp-WIP/TCR-ORDGP-WIP-2022-01-22_23-59-59.zip\\E$" + } + ], + "combine": "AND" + } + } + } + }, + "providerStates": [ + { + "name": "project with data:", + "params": { + "buildNumber": "666", + "docType": "TCR", + "project": "ORDGP", + "version": "WIP" + } + } + ] + } + ], + "metadata": { + "pactSpecification": { + "version": "3.0.0" + }, + "pact-jvm": { + "version": "3.5.24" + } + } +} \ No newline at end of file diff --git a/src/test/resources/pdf.builder/CFTP-ordgp-WIP-8.json b/src/test/resources/pdf.builder/CFTP-ordgp-WIP-8.json new file mode 100644 index 00000000..18e17411 --- /dev/null +++ b/src/test/resources/pdf.builder/CFTP-ordgp-WIP-8.json @@ -0,0 +1 @@ +{"metadata":{"id":null,"name":"Project ordgp","description":"Description of ordgp.","type":"Combined Functional and Requirements Testing Plan","version":"WIP","date_created":"2022-02-23T09:41:03.870395","buildParameter":{"changeDescription":"UNDEFINED","changeId":"1.0","configItem":"BI-IT-DEVSTACK","releaseStatusJiraIssueKey":"ORDGP-123","targetEnvironment":"dev","targetEnvironmentToken":"D","version":"WIP","rePromote":false},"git":{"commit":"be2537272ddc579f97f2e2eba6cdc0788f81341b","url":"https://bitbucket-dev.biscrum.com/scm/ordgp/ordgp-releasemanager.git","baseTag":"","targetTag":"","author":"ODS Jenkins Shared Library System User (undefined)","message":"ODS: Record commits deployed into D","time":"2022-01-28 13:14:04 +0000"},"openShift":{"apiUrl":"https://10.250.0.1:443"},"jenkins":{"buildNumber":"8","buildUrl":"https://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/8/","jobName":"ordgp-cd/ordgp-cd-releasemanager-master"},"referencedDocs":{"CSD":"BI-IT-DEVSTACK / 1-WIP","SSDS":"BI-IT-DEVSTACK / 1-WIP","RA":"BI-IT-DEVSTACK / 1-WIP","TRC":"BI-IT-DEVSTACK / 1-WIP","DTP":"BI-IT-DEVSTACK / 1-WIP","DTR":"BI-IT-DEVSTACK / 1-WIP","CFTP":"BI-IT-DEVSTACK / 1-WIP","CFTR":"BI-IT-DEVSTACK / 1-WIP","TIR":"BI-IT-DEVSTACK / 1-WIP","TIP":"BI-IT-DEVSTACK / 1-WIP"},"header":["Combined Functional and Requirements Testing Plan, Config Item: BI-IT-DEVSTACK","Doc ID/Version: see auto-generated cover page"]},"data":{"sections":{"sec9":{"number":"9","predecessors":[],"heading":"Traceability Matrix","documents":["CFTP"],"versions":["1.0"],"section":"sec9","content":"

The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix will be updated before test execution to include all functional and requirements test cases.

","key":"ORDGP-108","status":"Done"},"sec8s1":{"number":"8.1","predecessors":[],"heading":"Test Cases","documents":["CFTP"],"versions":["1.0"],"section":"sec8s1","content":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Risk PriorityLevel of Testing
3No testing required
2Testing of functionality or requirements without challenge/boundary tests
1Full test of requirement or functionality including challenge/boundary tests (e.g. invalid, borderline or missing input values, out-of-order execution of functions, disconnected interfaces etc.)
\n
\n","key":"ORDGP-107","status":"Done"},"sec7s2s2":{"number":"7.2.2","predecessors":[],"heading":"Scope of Non-Functional Testing","documents":["CFTP"],"versions":["1.0"],"section":"sec7s2s2","content":"

The following aspects of system performance will be covered in requirements test cases:
\n * Concurrent access of 10 users accessing the same study (including data entry, modification of data, and deletion of data)
\n * Remote access via low-bandwidth connections, simulation slow DSL connections down to 1 Mbit/s and Ping time up to 1000ms. A WAN emulator will be used to simulate the exact conditions as specified in the test cases.
\n
\nPerformance testing will be done in the validation environment. Since the hardware of the future production environment is more powerful the risk of using the validation environment for performance testing is low and acceptable.

","key":"ORDGP-106","status":"Done"},"sec7s1s2":{"number":"7.1.2","predecessors":[],"heading":"Scope of Functional Testing","documents":["CFTP"],"versions":["1.0"],"section":"sec7s1s2","content":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Functional testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on a functional level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in functional testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","key":"ORDGP-105","status":"Done"},"sec6s2":{"number":"6.2","predecessors":[],"heading":"Scope of Integration Testing","documents":["CFTP"],"versions":["1.0"],"section":"sec6s2","content":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Integration testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on an integration level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in integration testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","key":"ORDGP-104","status":"Done"},"sec5s2":{"number":"5.2","predecessors":[],"heading":"Test Procedure 2: Verification of Training Documentation","documents":["CFTP"],"versions":["1.0"],"section":"sec5s2","content":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dignissim finibus imperdiet. Fusce hendrerit luctus purus, et suscipit nisl porttitor in. Mauris pellentesque vestibulum tristique. Integer vel velit id felis dictum auctor id et ligula. Fusce consequat vehicula mattis. Duis non hendrerit felis, ut pellentesque metus. Donec egestas leo quis viverra pharetra. Suspendisse eu nulla et mi eleifend varius. Donec ullamcorper aliquet magna sed congue. Nam nec neque ac diam interdum dictum nec ac urna. Mauris egestas urna nibh, facilisis lacinia ipsum volutpat vitae. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce enim elit, venenatis non egestas sed, vestibulum at ante.

","key":"ORDGP-103","status":"Done"},"sec5":{"number":"5","predecessors":[],"heading":"Operational Qualification Activities and Training","documents":["CFTP"],"versions":["1.0"],"section":"sec5","content":"

Before test execution the testers will receive formal training on:
\n * the testing process, including good documentation practice
\n * a basic end user training for System name
\n * an overview of the business processes supported by System name
\n
\nThe training will be documented and copies of the training records will be attached to the testing documentation package.

","key":"ORDGP-102","status":"Done"},"sec10":{"number":"10","predecessors":[],"heading":"Validation Environment","documents":["CFTP"],"versions":["1.0"],"section":"sec10","content":"

Description of the Environment of the system that will be used for test execution.

","key":"ORDGP-101","status":"Done"},"sec15":{"number":"15","predecessors":[],"heading":"Document History","documents":["CFTP"],"versions":["1.0"],"section":"sec15","content":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","key":"ORDGP-100","status":"Done"},"sec13s2":{"number":"13.2","predecessors":[],"heading":"Abbreviations","documents":["CFTP"],"versions":["1.0"],"section":"sec13s2","content":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","key":"ORDGP-99","status":"Done"},"sec13s1":{"number":"13.1","predecessors":[],"heading":"Definitions","documents":["CFTP"],"versions":["1.0"],"section":"sec13s1","content":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","key":"ORDGP-98","status":"Done"},"sec12":{"number":"12","predecessors":[],"heading":"Functional and Requirements Testing Documentation","documents":["CFTP"],"versions":["1.0"],"section":"sec12","content":" ","key":"ORDGP-97","status":"Done"},"sec2":{"number":"2","predecessors":[],"heading":"Scope","documents":["CFTP"],"versions":["1.0"],"section":"sec2","content":"

The Functional Testing of SCHEMA ST4 will include the standard functionalities of the system and the user account management. The Requirements Testing covers the workflow configuration and functionalities of SCHEMA ST4 according to the business process of the creation, management and handover of preparation specific texts.
\n
\nThe components of SCHEMA ST4 that will be challenged during this Functions / Requirements Testing are as follows:
\n * Rich/Architect client application software
\n * Workflow Module
\n * Interface to MS Word
\n
\nMS Word functionalities will not be tested in this Functional / Requirements Testing.
\n
\nThe level of testing activities is based on the risk class as defined in the risk analysis (ref) for this system. Detailed definitions of the required depth and level of detail will be defined in the sections for functional and requirements testing.

","key":"ORDGP-96","status":"Done"}},"documentHistory":[{"entryId":1,"rational":"Initial document version."}]}} \ No newline at end of file diff --git a/src/test/resources/pdf.builder/CFTP-ordgp-WIP-8.pdf b/src/test/resources/pdf.builder/CFTP-ordgp-WIP-8.pdf new file mode 100644 index 00000000..526e496c Binary files /dev/null and b/src/test/resources/pdf.builder/CFTP-ordgp-WIP-8.pdf differ diff --git a/src/test/resources/pdf.builder/InstallationReport.html.tmpl b/src/test/resources/pdf.builder/InstallationReport.html.tmpl new file mode 100644 index 00000000..b06470cb --- /dev/null +++ b/src/test/resources/pdf.builder/InstallationReport.html.tmpl @@ -0,0 +1,398 @@ + + + + + Installation Report for '{{metadata.name}}' + + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ Stack Information +
Name:{{metadata.name}}
Description:{{metadata.description}}
Version:{{metadata.version}}
Date Created:{{metadata.date_created}}
+
+ +
 
+ +

Installation Report for '{{metadata.name}}'

+ +

Table of Contents

+
    +
  1. Introduction
  2. +
      +
    1. Inputs
    2. +
    3. Outputs
    4. +
    5. Modules
    6. +
    +
  3. Installation
  4. +
      +
    1. Input Values
    2. +
    3. Output Values
    4. +
    +
  5. Diagnostics and Testing
  6. +
      +
    1. Pre-Installation Tests
    2. +
        +
      1. Blueprints
      2. +
          + {{#each blueprint_test_reports}} +
        1. {{name}}
        2. + {{/each}} +
        +
      3. Stack
      4. +
      +
    3. Post-Installation Tests
    4. +
    +
  7. Conclusion Statement
  8. +
  9. Definitions and Abbreviations
  10. +
      +
    1. Definitions
    2. +
    3. Abbreviations
    4. +
    +
  11. Reference Documents
  12. +
+
+ +
+ +

1Introduction

+ +

A Blueprint is a configurable and reusable infrastructure-as-code artefact. Practical examples include foundational infrastructure services, such as compute, networking, and storage, but may as well be of arbitrary higher-level nature, such as an AWS Lambda function.

+

A Stack is a composition of reusable Blueprints (potentially in combination with other random infrastructure code) to provide ready-to-use infrastructure for your digital application.

+ +

This document describes the installation of the following stack:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name{{metadata.name}}
Description{{metadata.description}}
Version{{metadata.version}}
URL{{metadata.url}}
Git URL{{metadata.git_uri}}
Plan URLtbd.
Date Created{{metadata.date_created}}
+
+ +
+ +

1.1Inputs

+ + + + + + {{#each terraform_docs.Inputs}} + + + + + {{/each}} +
NameDescription
{{Name}}{{Description}}
+
+ +
+ +

1.2Outputs

+ + + + + + {{#each terraform_docs.Outputs}} + + + + + {{/each}} +
NameDescription
{{Name}}{{Description}}
+
+ +
+ +

1.3Modules

+ + + + + {{#each terraform_modules}} + + + + {{/each}} +
Source
{{Source}} {{Version}}
+
+ +
+ +

2Installation

+ + +

2.1Input Values

+ + + + + + {{#each terraform_install.inputs}} + + + + + {{/each}} +
NameValue
{{key}}{{value}}
+
+ +
+ +

2.2Output Values

+ + + + + + {{#each terraform_install.outputs}} + + + + + {{/each}} +
NameValue
{{key}}{{value.value}}
+
+ + +

3Diagnostics and Testing

+ +

This section documents the results of comparing the actual state of a live stack deployment against a desired state.

+ + +

3.1Pre-Installation Tests

+ + +

3.1.1Blueprints

+ +

The values used to test the following blueprints are for testing purposes only.

+ + {{#each blueprint_test_reports}} +

{{name}}

+ + {{#each data.inspec.profiles}} + {{#each controls}} +
+
{{title}}
+

{{desc}}

+ + + + + + + + {{#each results}} + + + + + + {{/each}} +
Description / Expected ResultStart TimeStatus
{{code_desc}}{{start_time}}{{status}}
+ + + + + + + + + + + +
Actual ResultsAll tests successful (no deviations or failures). +
+ +
Comments:n/a
+
+ {{/each}} + {{/each}} + {{/each}} + +
+ +

3.1.2Stack

+ +

The values used to test the stack are for testing purposes only.

+ + {{#each inspec.pre-install.profiles}} + {{#each controls}} +

{{title}}

+

{{desc}}

+ + + + + + + + {{#each results}} + + + + + + {{/each}} +
Description / Expected ResultStart TimeStatus
{{code_desc}}{{start_time}}{{status}}
+ + {{/each}} + {{/each}} +
+ +
+ +

3.2Post-Installation Tests

+ + {{#each inspec.post-install.profiles}} + {{#each controls}} +

{{title}}

+

{{desc}}

+ + + + + + + + {{#each results}} + + + + + + {{/each}} +
Description / Expected ResultStart TimeStatus
{{code_desc}}{{start_time}}{{status}}
+ + {{/each}} + {{/each}} + + + + + + + + + + + +
Actual ResultsAll tests successful (no deviations or failures). +
+ +
Comments:n/a
+
+ +
+ +

4Conclusion Statement

+ +

All deliverables of the Technical Installation Plan have been successfully executed and the signature of this Report verifies that +the system has been installed according to all requirements stated in the Installation Plan or, in the event the requirements +are not met, that the deviations and/or failures are properly documented and addressed.

+
+ +
+ +

5Definitions and Abbreviations

+ + +

5.1Definitions

+ + + + + + + + + + +
TermDefinition
GitA distributed version control system, e.g., Bitbucket, GitHub, and GitLab.
+ + +

5.2Abbreviations

+ + + + + + + + + + +
AbbreviationMeaning
URLA uniform resource locator (URL) is the address of a resource on the Internet.
+ +

See https://docs.aws.amazon.com/general/latest/gr/glos-chap.html for a list of AWS-specific definitions and abbreviations.

+ + +

6Reference Documents

+ + + + + + + + + + +
Document IDName
n/an/a
+
+ + diff --git a/src/test/resources/pdf.builder/Test-1.pdf b/src/test/resources/pdf.builder/Test-1.pdf new file mode 100644 index 00000000..ff4f6a99 Binary files /dev/null and b/src/test/resources/pdf.builder/Test-1.pdf differ diff --git a/src/test/resources/pdf.builder/Test-2.pdf b/src/test/resources/pdf.builder/Test-2.pdf new file mode 100644 index 00000000..23fff829 Binary files /dev/null and b/src/test/resources/pdf.builder/Test-2.pdf differ diff --git a/src/test/resources/pdf.builder/Test.docx b/src/test/resources/pdf.builder/Test.docx new file mode 100644 index 00000000..1021988d Binary files /dev/null and b/src/test/resources/pdf.builder/Test.docx differ diff --git a/src/test/resources/pdf.builder/Test.md b/src/test/resources/pdf.builder/Test.md new file mode 100644 index 00000000..b960c0b9 --- /dev/null +++ b/src/test/resources/pdf.builder/Test.md @@ -0,0 +1,67 @@ +# Code analysis +## module X +#### Version 3.3.0-SNAPSHOT + +**By: default** + +*Date: 2020-03-16* + +## Introduction +This document contains results of the code analysis of module X + + + +## Configuration + +- Quality Profiles + - Names: Sonar way [Java]; Scalastyle+Scapegoat for BI [Scala]; + - Files: AWRk1blcoOO0gMOMMZba.json; AWpofyjXiWug7buQ6xnf.json; + - Quality Gate + - Name: Sonar way + - File: Sonar way.xml + +## Synthesis +Quality Gate | Reliability | Security | Maintainability | Coverage | Duplications +:---:|:---:|:---:|:---:|:---:|:---: +ERROR | A | E | A | 0.0 % | 9.4 % + +## Metrics + +\ | Cyclomatic Complexity | Cognitive Complexity | Lines of code per file | Coverage | Comment density (%) | Duplication (%) +:---|:---:|:---:|:---:|:---:|:---:|:---: +Min | 0.0 | 0.0 | 2.0 | 0.0 | 0.0 | 0.0 +Max | 607.0 | 526.0 | 3562.0 | 0.0 | 81.3 | 89.7 + +## Volume + +Language|Number +---|--- +Java|5718 +Scala|7868 +Total|13586 + + +## Issues count by severity and types + +Type|Severity|Number +---|---|--- +VULNERABILITY|BLOCKER|1 +VULNERABILITY|CRITICAL|0 +VULNERABILITY|MAJOR|0 +VULNERABILITY|MINOR|0 +VULNERABILITY|INFO|0 +BUG|BLOCKER|0 +BUG|CRITICAL|0 +BUG|MAJOR|0 +BUG|MINOR|0 +BUG|INFO|0 +CODE_SMELL|BLOCKER|0 +CODE_SMELL|CRITICAL|21 +CODE_SMELL|MAJOR|82 +CODE_SMELL|MINOR|29 +CODE_SMELL|INFO|9 +SECURITY_HOTSPOT|BLOCKER|0 +SECURITY_HOTSPOT|CRITICAL|0 +SECURITY_HOTSPOT|MAJOR|0 +SECURITY_HOTSPOT|MINOR|0 +SECURITY_HOTSPOT|INFO|0 \ No newline at end of file diff --git a/src/test/resources/pdf.builder/ods-document-generation-templates-bitbucket-1.2.zip b/src/test/resources/pdf.builder/ods-document-generation-templates-bitbucket-1.2.zip new file mode 100644 index 00000000..b5ff2f75 Binary files /dev/null and b/src/test/resources/pdf.builder/ods-document-generation-templates-bitbucket-1.2.zip differ diff --git a/src/test/resources/pdf.builder/ods-document-generation-templates-github-1.2.zip b/src/test/resources/pdf.builder/ods-document-generation-templates-github-1.2.zip new file mode 100644 index 00000000..9c56593d Binary files /dev/null and b/src/test/resources/pdf.builder/ods-document-generation-templates-github-1.2.zip differ diff --git a/src/test/resources/templates.zip b/src/test/resources/templates.zip deleted file mode 100644 index 86913ddf..00000000 Binary files a/src/test/resources/templates.zip and /dev/null differ diff --git a/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_acceptancezip-efad2510-bd2a-469e-b8bc-18c3d5272710.zip b/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_acceptancezip-efad2510-bd2a-469e-b8bc-18c3d5272710.zip new file mode 100644 index 00000000..7603a4a1 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_acceptancezip-efad2510-bd2a-469e-b8bc-18c3d5272710.zip differ diff --git a/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_integrationzip-955bd19a-04a6-430f-8c44-8b484205efd6.zip b/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_integrationzip-955bd19a-04a6-430f-8c44-8b484205efd6.zip new file mode 100644 index 00000000..5e5bc611 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_integrationzip-955bd19a-04a6-430f-8c44-8b484205efd6.zip differ diff --git a/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_acceptancezip-efad2510-bd2a-469e-b8bc-18c3d5272710.json b/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_acceptancezip-efad2510-bd2a-469e-b8bc-18c3d5272710.json new file mode 100644 index 00000000..63939376 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_acceptancezip-efad2510-bd2a-469e-b8bc-18c3d5272710.json @@ -0,0 +1,27 @@ +{ + "id" : "efad2510-bd2a-469e-b8bc-18c3d5272710", + "name" : "repository_leva-documentation_ordgp_13_acceptancezip", + "request" : { + "url" : "/repository/leva-documentation/ordgp/13/acceptance.zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "repository_leva-documentation_ordgp_13_acceptancezip-efad2510-bd2a-469e-b8bc-18c3d5272710.zip", + "headers" : { + "Date" : "Mon, 04 Apr 2022 08:55:27 GMT", + "Server" : "Nexus/3.28.1-01 (OSS)", + "X-Content-Type-Options" : "nosniff", + "Content-Security-Policy" : "sandbox allow-forms allow-modals allow-popups allow-presentation allow-scripts allow-top-navigation", + "X-XSS-Protection" : "1; mode=block", + "Last-Modified" : "Fri, 01 Apr 2022 09:23:36 GMT", + "Content-Disposition" : "inline", + "Content-Type" : "application/zip", + "Set-Cookie" : "b7bd9d362cf28fa3746ddf3faaa39cfe=13a61aa10205f36ad051ed3d9d80bf64; path=/; HttpOnly; Secure; SameSite=None", + "Cache-control" : "private" + } + }, + "uuid" : "efad2510-bd2a-469e-b8bc-18c3d5272710", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_integrationzip-955bd19a-04a6-430f-8c44-8b484205efd6.json b/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_integrationzip-955bd19a-04a6-430f-8c44-8b484205efd6.json new file mode 100644 index 00000000..725355d5 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CFTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_integrationzip-955bd19a-04a6-430f-8c44-8b484205efd6.json @@ -0,0 +1,27 @@ +{ + "id" : "955bd19a-04a6-430f-8c44-8b484205efd6", + "name" : "repository_leva-documentation_ordgp_13_integrationzip", + "request" : { + "url" : "/repository/leva-documentation/ordgp/13/integration.zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "repository_leva-documentation_ordgp_13_integrationzip-955bd19a-04a6-430f-8c44-8b484205efd6.zip", + "headers" : { + "Date" : "Mon, 04 Apr 2022 08:55:27 GMT", + "Server" : "Nexus/3.28.1-01 (OSS)", + "X-Content-Type-Options" : "nosniff", + "Content-Security-Policy" : "sandbox allow-forms allow-modals allow-popups allow-presentation allow-scripts allow-top-navigation", + "X-XSS-Protection" : "1; mode=block", + "Last-Modified" : "Fri, 01 Apr 2022 09:23:36 GMT", + "Content-Disposition" : "inline", + "Content-Type" : "application/zip", + "Set-Cookie" : "b7bd9d362cf28fa3746ddf3faaa39cfe=13a61aa10205f36ad051ed3d9d80bf64; path=/; HttpOnly; Secure; SameSite=None", + "Cache-control" : "private" + } + }, + "uuid" : "955bd19a-04a6-430f-8c44-8b484205efd6", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-9d39789a-0634-41c9-b0c0-4a44ceb63a89.txt b/src/test/resources/wiremock/ordgp/CSD/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-9d39789a-0634-41c9-b0c0-4a44ceb63a89.txt new file mode 100644 index 00000000..7cdb830f Binary files /dev/null and b/src/test/resources/wiremock/ordgp/CSD/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-9d39789a-0634-41c9-b0c0-4a44ceb63a89.txt differ diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-9d39789a-0634-41c9-b0c0-4a44ceb63a89.json b/src/test/resources/wiremock/ordgp/CSD/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-9d39789a-0634-41c9-b0c0-4a44ceb63a89.json new file mode 100644 index 00000000..44caa8c0 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-9d39789a-0634-41c9-b0c0-4a44ceb63a89.json @@ -0,0 +1,31 @@ +{ + "id" : "9d39789a-0634-41c9-b0c0-4a44ceb63a89", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive", + "request" : { + "url" : "/rest/api/latest/projects/ordgp/repos/ordgp-releasemanager/archive?at=master&format=zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-9d39789a-0634-41c9-b0c0-4a44ceb63a89.txt", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:37 GMT", + "Content-Type" : "application/octet-stream", + "X-AREQUESTID" : "@1POZ2QTx650x1073128x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=DDD54F20F7E28D7FCFD25A5BFB7E186C; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:50:37 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "1mif1xr", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : [ "X-AUSERNAME", "X-AUSERID", "Cookie" ], + "X-Content-Type-Options" : "nosniff", + "Content-Disposition" : "attachment; filename=\"ordgp-releasemanager-master@4e693552bfd.zip\"; filename*=UTF-8''ordgp-releasemanager-master%404e693552bfd.zip", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "9d39789a-0634-41c9-b0c0-4a44ceb63a89", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-b20a7c2b-b163-4fb3-bb27-04b7e7c3835e.json b/src/test/resources/wiremock/ordgp/CSD/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-b20a7c2b-b163-4fb3-bb27-04b7e7c3835e.json new file mode 100644 index 00000000..955328ba --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-b20a7c2b-b163-4fb3-bb27-04b7e7c3835e.json @@ -0,0 +1,28 @@ +{ + "id" : "b20a7c2b-b163-4fb3-bb27-04b7e7c3835e", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive", + "request" : { + "url" : "/rest/api/latest/projects/ordgp/repos/ordgp-releasemanager/archive?at=workInProgressBranch&format=zip", + "method" : "GET" + }, + "response" : { + "status" : 400, + "body" : "{\"errors\":[{\"context\":null,\"message\":\"'workInProgressBranch' is not a valid ref and may not be archived.\",\"exceptionName\":\"com.atlassian.bitbucket.repository.InvalidRefNameException\",\"refName\":\"workInProgressBranch\"}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:37 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx650x1073127x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=F9FBD9FF237C6F30BC74F16A3951ACA3; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:50:37 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "3qvwni", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding" + } + }, + "uuid" : "b20a7c2b-b163-4fb3-bb27-04b7e7c3835e", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-a6e5d6ed-b9c5-42f2-80ca-2b6b75d2ff7e.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-a6e5d6ed-b9c5-42f2-80ca-2b6b75d2ff7e.json new file mode 100644 index 00000000..119b223a --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-a6e5d6ed-b9c5-42f2-80ca-2b6b75d2ff7e.json @@ -0,0 +1 @@ +{"maxResults":50,"startAt":0,"total":23,"isLast":true,"values":[{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","fieldId":"assignee","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=","hasDefaultValue":true,"operations":["set"],"defaultValue":{"name":"-1"}},{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Component/s","fieldId":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27522","id":"27522","name":"Technology-backend","description":"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27523","id":"27523","name":"Technology-frontend","description":"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27524","id":"27524","name":"Technology-releasemanager","description":"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27525","id":"27525","name":"Technology-test","description":"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse"}]},{"required":false,"schema":{"type":"number","custom":"com.atlassian.jira.plugin.system.customfieldtypes:float","customId":10002},"name":"Story Points","fieldId":"customfield_10002","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"string","custom":"com.pyxis.greenhopper.jira:gh-sprint","customId":10004},"name":"Sprint","fieldId":"customfield_10004","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"option","custom":"org.opendevstack.jira.plugins.projecttemplate:field.requirement.gamptopic","customId":19318},"name":"Gamp Topic","fieldId":"customfield_19318","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72297","value":"operational requirements","id":"72297","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72298","value":"functional requirements","id":"72298","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72299","value":"data requirements","id":"72299","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72300","value":"technical requirements","id":"72300","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72301","value":"interface requirements","id":"72301","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72302","value":"environment requirements","id":"72302","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72303","value":"performance requirements","id":"72303","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72304","value":"availability requirements","id":"72304","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72305","value":"security requirements","id":"72305","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72306","value":"maintenance requirements","id":"72306","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72307","value":"regulatory requirements","id":"72307","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72308","value":"roles","id":"72308","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72309","value":"compatibility","id":"72309","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72310","value":"procedural constraints","id":"72310","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72311","value":"overarching requirements","id":"72311","disabled":false}]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19319},"name":"Req Acceptance Criteria","fieldId":"customfield_19319","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","customId":19320},"name":"FuncSpec Summary","fieldId":"customfield_19320","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19321},"name":"FuncSpec Description","fieldId":"customfield_19321","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19322},"name":"FuncSpec Acceptance Criteria","fieldId":"customfield_19322","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","customId":19323},"name":"ConfigSpec Summary","fieldId":"customfield_19323","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19324},"name":"ConfigSpec Description","fieldId":"customfield_19324","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"option","custom":"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes","customId":19325},"name":"EDP Definition of Ready for Story","fieldId":"customfield_19325","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72002","value":"Risks defined","id":"72002","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72003","value":"Acceptance Tests Ready for Implementation","id":"72003","disabled":false}]},{"required":false,"schema":{"type":"array","items":"option","custom":"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes","customId":19326},"name":"EDP Definition of Done for Story","fieldId":"customfield_19326","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72017","value":"FuncSpec Defined","id":"72017","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72018","value":"ConfigSpec Defined","id":"72018","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72019","value":"All Risks Approved","id":"72019","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72020","value":"All Tests Defined","id":"72020","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72021","value":"All Tests Executed Successful","id":"72021","disabled":false}]},{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","fieldId":"description","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix Version/s","fieldId":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","name":"1.0","archived":false,"released":false,"projectId":30107}]},{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked Issues","fieldId":"issuelinks","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add"]},{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue Type","fieldId":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10001","id":"10001","description":"Created by Jira Software - do not edit or delete. Issue type for a user story.","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10315&avatarType=issuetype","name":"Story","subtask":false,"avatarId":10315}]},{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","fieldId":"labels","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","fieldId":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/1","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/2","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/3","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/4","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/5","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/10400","iconUrl":"https://jira-dev.biscrum.com/images/icons/priority_major.gif","name":"Major","id":"10400"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/10300","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg","name":"Critical","id":"10300"}],"defaultValue":{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/4","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/low.svg","name":"Low","id":"4"}},{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","fieldId":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}}]},{"required":true,"schema":{"type":"user","system":"reporter"},"name":"Reporter","fieldId":"reporter","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=","hasDefaultValue":false,"operations":["set"]},{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","fieldId":"summary","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"version","system":"versions"},"name":"Affects Version/s","fieldId":"versions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","name":"1.0","archived":false,"released":false,"projectId":30107}]}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_search-0031ad5d-fd66-4052-a4dd-757a0976a594.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_search-0031ad5d-fd66-4052-a4dd-757a0976a594.json new file mode 100644 index 00000000..ecdb3ae1 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_search-0031ad5d-fd66-4052-a4dd-757a0976a594.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":37,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896665","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896665","key":"ORDGP-37","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@24947d23[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5bbc4273[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@f7f8d72[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@36e9f934[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@262644b4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@22640f0[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@71c159db[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@8982e8e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1c8fc8cd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2c1e2a6c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@576ab1b5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1e4f1988[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VSR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VSR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui1g:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Summary Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896664","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896664","key":"ORDGP-36","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5b3154fc[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@113c648e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1c42b1a6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6e28aeb4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@cb69558[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6d00b96a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6446eaed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4fb0b5df[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7794e524[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1fb7d955[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4cf549cc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6a113c0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:REP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-REP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui18:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Restore/Recovery Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896663","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896663","key":"ORDGP-35","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1a801fb[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@e225ae6[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6cfe6590[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7097f783[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79a6cf41[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@14232e72[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b6e1b83[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@440ace82[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b99cd85[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6c4323a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d8d9362[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6f613c8f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:BUP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-BUP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui10:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Backup Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896662","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896662","key":"ORDGP-34","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7551f93[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f2340f8[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@27f940dc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7208e05b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fe3eac[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@770c68a3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a1e293e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2fa1181e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a5f5818[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4e826a80[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@253efdb7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2f870e6[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0s:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System Monitoring Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896661","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896661","key":"ORDGP-33","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@145f6fa1[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@13891a20[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@791f9967[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@229cd47e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c8344b5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2ca266c8[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29f3069a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6d8818fe[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b185f16[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6433e69b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5545eb51[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@782746ef[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:P11"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-P11","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0k:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Part 11 Compliance Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896660","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896660","key":"ORDGP-32","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@69ff0ef4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2459c4ff[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d8d0d24[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@67995e56[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@e4dc1cc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@33a3cb21[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@56a2045c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7be49b30[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1bc76621[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@36104cbb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@70563ec1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2fb416e0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0c:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Infrastructure Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896659","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896659","key":"ORDGP-31","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6c74311[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@308c2f2f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2debd65d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7c4f6198[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e5edd21[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@39843d2c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4a2e4d7f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4deaa603[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5545dd4a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4db0f793[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75cd0eef[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6d8f64eb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui04:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896658","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896658","key":"ORDGP-30","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@53852b55[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@126e7652[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f772017[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@e4a174d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@71371f47[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@779096bc[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@213167c1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7f1fecd5[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@361b1956[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@454d4c5f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6fe82458[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6f910434[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:AAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-AAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Application Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896657","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896657","key":"ORDGP-29","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@16cfb2ae[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ab739e3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@57965944[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@447d0a74[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@26a18b41[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@24312b0f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@41881ab4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6d8a965b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47dbe328[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6a9fc18f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6bc33bd2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@52c250bf[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TRC"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:16.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TRC","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Traceability Matrix","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896656","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896656","key":"ORDGP-28","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:43.183+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@250e3b2a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5cb44a22[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@54b7ecd5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2a2c493b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7420143f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5632faf9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3d8865ae[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@752596b5[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d0e5c2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@40f42233[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3e2f9a96[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@676633d8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896655","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896655","key":"ORDGP-27","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@24f6f846[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4198ceb1[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d461c5b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2aaca204[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@633e4c08[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5256a649[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f6fdc9c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1cebf7[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11d3a9f0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@76d0216d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@476a9817[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@204e805e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896654","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896654","key":"ORDGP-26","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:13.192+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@17a0dfa5[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7fc051e2[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ac3e72f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@47f1eed4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@172409da[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@463a7c9a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@63e501ed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2baad40b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1cf7627d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@93c13d5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@421d9176[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3f6a0fb2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:53.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896653","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896653","key":"ORDGP-25","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3e2c7bb4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78ab3f5a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1b92748b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3ae2d94c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@599cb086[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6da7eac8[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6599fddb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@491d609d[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75b9e1b8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@271ab46d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@dc7e270[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2ffc62dd[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:34.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhys:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896652","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896652","key":"ORDGP-24","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@b9bb88a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1e82d7af[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@296f3bdd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@21d8aef0[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@49478dc3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2f07323[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@52110173[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@36da9aef[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43863062[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@42ee2a5a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@18aeb1ed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7ac14df5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896651","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896651","key":"ORDGP-23","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5cca49c1[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1ea57c73[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@228d0880[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@17febe46[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@54305c0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@17120e30[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d11cd5a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3f7f5430[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@228f2b1a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@256bc2f5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7643b01f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@33d8a433[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896650","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896650","key":"ORDGP-22","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2c81abc4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f2b36db[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@262ef98[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@64999ce1[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1bfdb72d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5ddacae9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@48d1e0e5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6007138a[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@16358478[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1db389d5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a22944e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2e147c3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:14:28.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhy4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896649","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896649","key":"ORDGP-21","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:33:19.170+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5c5b1f29[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5afb777a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@280505ea[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@29c4f737[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@36cf1340[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@577fbfc[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5dd94ed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@baea62e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4535e108[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7fa74a49[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1634d3ac[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@68d59892[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:52.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896648","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896648","key":"ORDGP-20","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@34d2af74[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@fd3caa3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c90c872[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3d878991[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1c567d84[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@52fdb48b[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@780435fe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@79cef06e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@56db188e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@693db732[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@30cfd42e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3e8c1fd9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:54.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896647","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896647","key":"ORDGP-19","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@374fc6ce[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@125481f1[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@16de15e6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@20b345c5[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4104ded9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@68c8fad3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@e5fa309[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3478426a[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@536da02a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7c5cc6f6[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@f68759f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@79f51d0a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:08:41.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896646","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896646","key":"ORDGP-18","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@591594c2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@153cc810[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61908b2e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@121fa344[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@133dd83f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@323d5504[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@57917196[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@387beda3[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45fa36b3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1d37de7d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4176018c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2687eaf4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:00.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896645","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896645","key":"ORDGP-17","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:34.116+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7323c1[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@66871c0d[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32abb247[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6c92b76b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d4ed43b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@79cb4115[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@161dede1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6f4d29a6[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3479c778[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1719fb0b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e926eec[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@68946a81[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896644","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896644","key":"ORDGP-16","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@34f64ba0[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3bf54a6f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@732d5384[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@621ad9bc[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b13f871[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2b0d4899[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32259f0f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@64677ce[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4252c707[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3da0654[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d192cc7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2854c0ad[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhws:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896643","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896643","key":"ORDGP-15","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@364297bc[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59336da0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7a6e376a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@38721bea[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33b0fbf2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7663772f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d3dcbee[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@55b832e8[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61632cc6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@cd4f5ca[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1fa52d05[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@b9e736b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:06:25.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896642","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896642","key":"ORDGP-14","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4e97de8b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f9e95ae[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6014df79[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@b4c1530[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@384c31b0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@11217ac5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5788908f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3c86fadb[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@659e8d4a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7ff3346e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c6cdff7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6737b083[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SSDS"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:17.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SSDS","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System and Software Design Specification including Source Code Review","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896641","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896641","key":"ORDGP-13","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:20.501+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@16cc9784[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f9992e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5bfaa05[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4fc57375[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f5db5fb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@23626aba[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b750351[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3f4f9d91[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6def15ee[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5de88553[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ef47a34[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6d94d96e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:48.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhw4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896640","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896640","key":"ORDGP-12","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@60827a9c[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69a18b6c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2e92d14d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4b0dd518[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5dd4978[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@60b8b750[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@58980ab3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7d98a1ad[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@12e1b1ef[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@37c696d4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2f13df0d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@173e968b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:30.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896639","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896639","key":"ORDGP-11","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:34:49.813+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@17105810[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3296bcda[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@19665059[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1e915fc3[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7a50f94d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6c2d6c63[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47621d27[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@53992d4f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2e7e2ce0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@29371338[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7e6bb81c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@640201cb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:15:07.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896638","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896638","key":"ORDGP-10","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:30:53.289+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7f305255[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b7c8cc6[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@e9e3ca2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@414b9b0b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69b5884[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7e7188f0[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f5d0b0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1cfb9046[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@40f8b425[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@323c82c2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d63b465[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5dda7e2f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:05:18.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL for Dev Preview","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Developer Preview","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896637","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896637","key":"ORDGP-9","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-31T17:42:51.174+0200","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5c65aca8[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14ed696f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4522c5cb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3afb7a11[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8bbd5be[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@25bd782b[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76e2fdca[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@17283af5[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@41680b8b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@f5a5fad[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6eb7ff21[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@381e8f90[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:51.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896636","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896636","key":"ORDGP-8","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:04.572+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@567a0fd8[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@25aace8f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3636ff06[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@459b91f9[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2820d091[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3915eb08[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@385aede3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@21d7b748[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@fdd4fbb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1906b8e3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@765c7bd5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6aadefa1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:59.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896635","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896635","key":"ORDGP-7","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2fe2b9f2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@68dfc7df[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@49a757bf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5fd0906b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74b06b49[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@599e090[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76705533[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2df8d05e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a651c8b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1032ea37[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@649feccf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@f0eaa22[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:37.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhus:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896634","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896634","key":"ORDGP-6","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2f8b9a4e[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5fee9d8e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@12e09d66[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@39496059[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@46771ebd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@761a21e2[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@608799ea[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@12be760b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c420017[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4b70294c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1764a101[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@768b83c8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RA"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:07:33.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RA","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Risk Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896633","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896633","key":"ORDGP-5","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:34:12.755+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2d5e1ba4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2708c55e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@344c382[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6207d481[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11e59073[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1cf41e01[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@398996ce[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6576eea2[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@582d8c77[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@64959565[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11df50df[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@430ebfb8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSD"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:03:55.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSD","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Specification Document","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896632","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896632","key":"ORDGP-4","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2ca073c[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@23c4ed27[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7a2586d8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7e0ce16e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b1daa85[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@272d0cea[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@71e84d91[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@68f6d553[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2e79134a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@61fc1033[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@524b5d58[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@cc9460f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhu4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Client Site Qualification","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896631","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896631","key":"ORDGP-3","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@227920d0[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@575e9ecf[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@396a926c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1a61db68[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5924bc3c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@79c02c94[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14543832[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7a0b4b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7cc39224[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@49fb5a4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@313f98ad[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@61cffd92[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RAL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RAL","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Role Assignment Log","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896630","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896630","key":"ORDGP-2","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5581cb43[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f8cbd36[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@114caf85[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1ba3c597[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@160ddbba[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@399ca9f9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4dd819c8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@48d2e299[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@307a2032[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6c7584a5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61eec6ba[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3e773634[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhto:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Supplier Assessment Mail Questionnaire","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896629","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896629","key":"ORDGP-1","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@b9fa03[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@17f97803[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@38bfbc4e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@645af23a[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8226827[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@364ff336[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7357647d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@402f830f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5bd7a87d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@12483672[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5af4ccca[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@667f1b60[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:54.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_search-333116e5-8074-4345-907d-498a2d62577d.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_search-333116e5-8074-4345-907d-498a2d62577d.json new file mode 100644 index 00000000..0a0d2a6f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_search-333116e5-8074-4345-907d-498a2d62577d.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":85,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896750","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896750","key":"ORDGP-122","fields":{"summary":"Document History","customfield_19901":"3","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TRC"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896749","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896749","key":"ORDGP-121","fields":{"summary":"Document History","customfield_19901":"1","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TCP","Doc:TCR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896748","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896748","key":"ORDGP-120","fields":{"summary":"Risk Assessment","customfield_19901":"4","customfield_19902":"{color:blue}There have been no critical failures observed in the testing. For failed test cases no unacceptable risks have been identified. No follow-up actions are required.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

There have been no critical failures observed in the testing. For failed test cases no unacceptable risks have been identified. No follow-up actions are required.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896747","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896747","key":"ORDGP-119","fields":{"summary":"Traceability Matrix","customfield_19901":"3.6","customfield_19902":"{color:blue}The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix has been updated prior to execution of the test cases and has been archived in the validation archive (add a reference).{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix has been updated prior to execution of the test cases and has been archived in the validation archive (add a reference).

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896746","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896746","key":"ORDGP-118","fields":{"summary":"Non-Functional Testing Results","customfield_19901":"3.5.2","customfield_19902":"{color:blue}Non-Functional testing was performed according to the approved functional / requirements test plan (final v1.0), approved on .\n\nThe test execution run of the non-functional test cases was performed on Mar 03. All the test cases of the project were executed without significant failures.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Non-Functional testing was performed according to the approved functional / requirements test plan (final v1.0), approved on <date>.
\n
\nThe test execution run of the non-functional test cases was performed on Mar 03. All the test cases of the project were executed without significant failures.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896745","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896745","key":"ORDGP-117","fields":{"summary":"Discrepancy Log","customfield_19901":"3.3","customfield_19902":"{color:blue}All failures and problems which have been observed during testing have been collected in a discrepancy log. The discrepancy log is attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All failures and problems which have been observed during testing have been collected in a discrepancy log. The discrepancy log is attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896744","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896744","key":"ORDGP-116","fields":{"summary":"Responsibilities and Signature Resource Log","customfield_19901":"3.2","customfield_19902":"{color:blue}All Testers and Test Administrators have signed the signature resource log prior to the start of testing activities. The signature resource log is attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All Testers and Test Administrators have signed the signature resource log prior to the start of testing activities. The signature resource log is attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896743","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896743","key":"ORDGP-115","fields":{"summary":"Training","customfield_19901":"3.1","customfield_19902":"{color:blue}All Testers and Test Administrators have been trained prior to the start of testing activities. Two classroom trainings have been performed on 23-Apr-2001 in Ingelheim and on 26-Apr-2011 in Ridgefield. Copies of the training records and agenda are attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All Testers and Test Administrators have been trained prior to the start of testing activities. Two classroom trainings have been performed on 23-Apr-2001 in Ingelheim and on 26-Apr-2011 in Ridgefield. Copies of the training records and agenda are attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896742","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896742","key":"ORDGP-114","fields":{"summary":"Testing Environment","customfield_19901":"2","customfield_19902":"{color:blue}All integration and acceptance test cases have been executed in the qualified validation environment as defined in the combined functional / requirements testing plan (ref).{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All integration and acceptance test cases have been executed in the qualified validation environment as defined in the combined functional / requirements testing plan (ref).

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896741","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896741","key":"ORDGP-113","fields":{"summary":"Purpose","customfield_19901":"1","customfield_19902":"{color:blue}The purpose of this document is to report on testing activities that were performed according to the functional / requirements testing plan, to summarize and asses all failed and skipped test cases, and decide if the System name can be formally released for installation in production environment.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The purpose of this document is to report on testing activities that were performed according to the functional / requirements testing plan, to summarize and asses all failed and skipped test cases, and decide if the System name can be formally released for installation in production environment.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896740","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896740","key":"ORDGP-112","fields":{"summary":"Document History","customfield_19901":"8","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896739","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896739","key":"ORDGP-111","fields":{"summary":"Reference Documents","customfield_19901":"7","customfield_19902":null,"issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896738","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896738","key":"ORDGP-110","fields":{"summary":"Definitions","customfield_19901":"6.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896737","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896737","key":"ORDGP-109","fields":{"summary":"Abbreviations","customfield_19901":"6.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896736","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896736","key":"ORDGP-108","fields":{"summary":"Traceability Matrix","customfield_19901":"9","customfield_19902":"{color:blue}The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix will be updated before test execution to include all functional and requirements test cases.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix will be updated before test execution to include all functional and requirements test cases.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896735","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896735","key":"ORDGP-107","fields":{"summary":"Test Cases","customfield_19901":"8.1","customfield_19902":"||Risk Priority||Level of Testing||\n|*3*|{color:blue}No testing required{color}\n |\n|*2*|{color:blue}Testing of functionality or requirements without challenge/boundary tests{color}\n |\n|*1*|{color:blue}Full test of requirement or functionality including challenge/boundary tests (e.g. invalid, borderline or missing input values, out-of-order execution of functions, disconnected interfaces etc.){color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Risk PriorityLevel of Testing
3No testing required
2Testing of functionality or requirements without challenge/boundary tests
1Full test of requirement or functionality including challenge/boundary tests (e.g. invalid, borderline or missing input values, out-of-order execution of functions, disconnected interfaces etc.)
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896734","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896734","key":"ORDGP-106","fields":{"summary":"Scope of Non-Functional Testing","customfield_19901":"7.2.2","customfield_19902":"{color:blue}The following aspects of system performance will be covered in requirements test cases:\n * Concurrent access of 10 users accessing the same study (including data entry, modification of data, and deletion of data)\n * Remote access via low-bandwidth connections, simulation slow DSL connections down to 1 Mbit/s and Ping time up to 1000ms. A WAN emulator will be used to simulate the exact conditions as specified in the test cases.\n\nPerformance testing will be done in the validation environment. Since the hardware of the future production environment is more powerful the risk of using the validation environment for performance testing is low and acceptable.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following aspects of system performance will be covered in requirements test cases:
\n * Concurrent access of 10 users accessing the same study (including data entry, modification of data, and deletion of data)
\n * Remote access via low-bandwidth connections, simulation slow DSL connections down to 1 Mbit/s and Ping time up to 1000ms. A WAN emulator will be used to simulate the exact conditions as specified in the test cases.
\n
\nPerformance testing will be done in the validation environment. Since the hardware of the future production environment is more powerful the risk of using the validation environment for performance testing is low and acceptable.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896733","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896733","key":"ORDGP-105","fields":{"summary":"Scope of Functional Testing","customfield_19901":"7.1.2","customfield_19902":"{color:blue}The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.\n * Functional testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.\n * Configuration specification will not be tested on a functional level, but only implicitly in acceptance test cases.\n * Standard product functionality will not be tested in functional testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Functional testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on a functional level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in functional testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896732","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896732","key":"ORDGP-104","fields":{"summary":"Scope of Integration Testing","customfield_19901":"6.2","customfield_19902":"{color:blue}The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.\n * Integration testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.\n * Configuration specification will not be tested on an integration level, but only implicitly in acceptance test cases.\n * Standard product functionality will not be tested in integration testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Integration testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on an integration level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in integration testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896731","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896731","key":"ORDGP-103","fields":{"summary":"Test Procedure 2: Verification of Training Documentation","customfield_19901":"5.2","customfield_19902":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dignissim finibus imperdiet. Fusce hendrerit luctus purus, et suscipit nisl porttitor in. Mauris pellentesque vestibulum tristique. Integer vel velit id felis dictum auctor id et ligula. Fusce consequat vehicula mattis. Duis non hendrerit felis, ut pellentesque metus. Donec egestas leo quis viverra pharetra. Suspendisse eu nulla et mi eleifend varius. Donec ullamcorper aliquet magna sed congue. Nam nec neque ac diam interdum dictum nec ac urna. Mauris egestas urna nibh, facilisis lacinia ipsum volutpat vitae. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce enim elit, venenatis non egestas sed, vestibulum at ante.","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dignissim finibus imperdiet. Fusce hendrerit luctus purus, et suscipit nisl porttitor in. Mauris pellentesque vestibulum tristique. Integer vel velit id felis dictum auctor id et ligula. Fusce consequat vehicula mattis. Duis non hendrerit felis, ut pellentesque metus. Donec egestas leo quis viverra pharetra. Suspendisse eu nulla et mi eleifend varius. Donec ullamcorper aliquet magna sed congue. Nam nec neque ac diam interdum dictum nec ac urna. Mauris egestas urna nibh, facilisis lacinia ipsum volutpat vitae. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce enim elit, venenatis non egestas sed, vestibulum at ante.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896730","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896730","key":"ORDGP-102","fields":{"summary":"Operational Qualification Activities and Training","customfield_19901":"5","customfield_19902":"{color:blue}Before test execution the testers will receive formal training on:\n * the testing process, including good documentation practice\n * a basic end user training for System name\n * an overview of the business processes supported by System name\n\nThe training will be documented and copies of the training records will be attached to the testing documentation package.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Before test execution the testers will receive formal training on:
\n * the testing process, including good documentation practice
\n * a basic end user training for System name
\n * an overview of the business processes supported by System name
\n
\nThe training will be documented and copies of the training records will be attached to the testing documentation package.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896729","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896729","key":"ORDGP-101","fields":{"summary":"Validation Environment","customfield_19901":"10","customfield_19902":"{color:blue}Description of the Environment of the system that will be used for test execution.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Description of the Environment of the system that will be used for test execution.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896728","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896728","key":"ORDGP-100","fields":{"summary":"Document History","customfield_19901":"15","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896727","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896727","key":"ORDGP-99","fields":{"summary":"Abbreviations","customfield_19901":"13.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896726","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896726","key":"ORDGP-98","fields":{"summary":"Definitions","customfield_19901":"13.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896725","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896725","key":"ORDGP-97","fields":{"summary":"Functional and Requirements Testing Documentation","customfield_19901":"12","customfield_19902":null,"issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896724","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896724","key":"ORDGP-96","fields":{"summary":"Scope","customfield_19901":"2","customfield_19902":"{color:blue}The Functional Testing of SCHEMA ST4 will include the standard functionalities of the system and the user account management. The Requirements Testing covers the workflow configuration and functionalities of SCHEMA ST4 according to the business process of the creation, management and handover of preparation specific texts.\n\nThe components of SCHEMA ST4 that will be challenged during this Functions / Requirements Testing are as follows:\n * Rich/Architect client application software\n * Workflow Module\n * Interface to MS Word\n\nMS Word functionalities will not be tested in this Functional / Requirements Testing.\n\nThe level of testing activities is based on the risk class as defined in the risk analysis (ref) for this system. Detailed definitions of the required depth and level of detail will be defined in the sections for functional and requirements testing.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The Functional Testing of SCHEMA ST4 will include the standard functionalities of the system and the user account management. The Requirements Testing covers the workflow configuration and functionalities of SCHEMA ST4 according to the business process of the creation, management and handover of preparation specific texts.
\n
\nThe components of SCHEMA ST4 that will be challenged during this Functions / Requirements Testing are as follows:
\n * Rich/Architect client application software
\n * Workflow Module
\n * Interface to MS Word
\n
\nMS Word functionalities will not be tested in this Functional / Requirements Testing.
\n
\nThe level of testing activities is based on the risk class as defined in the risk analysis (ref) for this system. Detailed definitions of the required depth and level of detail will be defined in the sections for functional and requirements testing.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896723","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896723","key":"ORDGP-95","fields":{"summary":"Reference Documents","customfield_19901":"9","customfield_19902":null,"issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896722","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896722","key":"ORDGP-94","fields":{"summary":"Abbreviations","customfield_19901":"8.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896721","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896721","key":"ORDGP-93","fields":{"summary":"Definitions","customfield_19901":"8.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896720","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896720","key":"ORDGP-92","fields":{"summary":"Scope","customfield_19901":"2","customfield_19902":"{color:blue}Hardware verification is out of scope, similar runtime platform verification, because those are qualified.\n||Runtime Platform||Qualification Summary Report||\n|BI-IT-CONTAINER-PAAS|tbd|{color}","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Hardware verification is out of scope, similar runtime platform verification, because those are qualified.
\n||Runtime Platform||Qualification Summary Report||
\n|BI-IT-CONTAINER-PAAS|tbd|

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896719","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896719","key":"ORDGP-91","fields":{"summary":"Configuration database CMDB","customfield_19901":"12.2","customfield_19902":"||Instructions||Expected result / Evidence||Observed result||Comments||\r\n|*Role assignment:*\r\n Check if name of contact persons are entered to CMDBWeb: IT System Lead Validation Manager System Owner CSV&C function|!image-2022-02-22-11-12-21-105.png|width=676,height=402!|RAL is required and available\r\n ☐ Yes ☐ No \r\n CMDB entries are correct\r\n ☐ Yes ☐ No| |\r\n|*Related components:*\r\n Check if components are related to Environments as described in System Design Specification.|Components are related to Environments as listed in System Design Specification|CMDB entries are correct\r\n ☐ Yes ☐ No| |\r\n|*Emergency class:*\r\n Check if emergency class is correctly set according to the related specification document|Emergency class per environment (env) is correctly set\r\n \r\n _Productive env: class_ \r\n _Validation env: class_ \r\n _Training env: class_|_Productive env:_ \r\n _Validation env:_ \r\n _Training env:_| |\r\n|*GxP relevance*|Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.|Actual setting in CMDB:| |\r\n|*Support category:*\r\n Check if support category is correctly set according to the related specification document|Support category per environment (env) is correctly set\r\n \r\n _Productive env: class_ \r\n _Validation env: class_ \r\n _Training env: class_|_Productive env:_ \r\n _Validation env:_ \r\n _Training env:_| |","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InstructionsExpected result / EvidenceObserved resultComments
Role assignment:
\n Check if name of contact persons are entered to CMDBWeb: IT System Lead Validation Manager System Owner CSV&C function
RAL is required and available
\n ☐ Yes ☐ No
\n CMDB entries are correct
\n ☐ Yes ☐ No
 
Related components:
\n Check if components are related to Environments as described in System Design Specification.
Components are related to Environments as listed in System Design SpecificationCMDB entries are correct
\n ☐ Yes ☐ No
 
Emergency class:
\n Check if emergency class is correctly set according to the related specification document
Emergency class per environment (env) is correctly set
\n <enter defined class number per environment>
\n Productive env: class
\n Validation env: class
\n Training env: class
Productive env:
\n Validation env:
\n Training env:
 
GxP relevanceSuspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.Actual setting in CMDB: 
Support category:
\n Check if support category is correctly set according to the related specification document
Support category per environment (env) is correctly set
\n <enter defined category number per environment>
\n Productive env: class
\n Validation env: class
\n Training env: class
Productive env:
\n Validation env:
\n Training env:
 
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896718","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896718","key":"ORDGP-90","fields":{"summary":"Operational documents on system level","customfield_19901":"12.1","customfield_19902":"{color:blue}Operational documents at system level:\n\n*System level monitoring:* {color}\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|Theplatform that runs ODS based applications|* Plan ID: ...\n* Release date:\n* Report ID: ....\n* Release date:|\n \n*System level backup :*\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ... \n* Release date:\n* Report ID: ....\n* Release date: |\n\n {color:blue}*System level restore/recovery:* {color}\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ... \n* Release date:\n* Report ID: .... \n* Release date:\n* |\n\n *System Operational instructions**:*\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ...\n* Release date:\n* Report ID: ....\n* Release date:\n* |\n\n*Service Agreement :*\n||Config Item||Description||Items Doc Id||\n| | |* Document ID: ...\n* Release date:|\n\n*AAP/IAP/TAP* *:*\n||Config Item||Description||Items Doc Id||\n| | |* Document ID: ... \n* Release date:|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Operational documents at system level:
\n
\nSystem level monitoring:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASTheplatform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

System level backup :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

System level restore/recovery:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n\t
  • \n
\n
\n
\n\n\n

System Operational instructions:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n\t
  • \n
\n
\n
\n\n\n

Service Agreement :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id
  
    \n\t
  • Document ID: ...
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

AAP/IAP/TAP :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id
  
    \n\t
  • Document ID: ...
  • \n\t
  • Release date:
  • \n
\n
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896717","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896717","key":"ORDGP-89","fields":{"summary":"Document History","customfield_19901":"10","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896716","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896716","key":"ORDGP-88","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896715","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896715","key":"ORDGP-87","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":null,"issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896714","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896714","key":"ORDGP-86","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896713","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896713","key":"ORDGP-85","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896712","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896712","key":"ORDGP-84","fields":{"summary":"Communication and Organization Tasks","customfield_19901":"3.4","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896711","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896711","key":"ORDGP-83","fields":{"summary":"Document History","customfield_19901":"12","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896710","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896710","key":"ORDGP-82","fields":{"summary":"Reference Documents","customfield_19901":"11","customfield_19902":null,"issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896709","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896709","key":"ORDGP-81","fields":{"summary":"Abbreviations","customfield_19901":"10.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896708","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896708","key":"ORDGP-80","fields":{"summary":"Definitions","customfield_19901":"10.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896707","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896707","key":"ORDGP-79","fields":{"summary":"System Description","customfield_19901":"3.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896706","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896706","key":"ORDGP-78","fields":{"summary":"Introduction","customfield_19901":"1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896705","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896705","key":"ORDGP-77","fields":{"summary":"System Design Overview","customfield_19901":"2.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896704","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896704","key":"ORDGP-76","fields":{"summary":"Software Design Overview","customfield_19901":"2.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896703","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896703","key":"ORDGP-75","fields":{"summary":"Source Code Review Overview","customfield_19901":"2.3","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896702","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896702","key":"ORDGP-74","fields":{"summary":"System Design Profile","customfield_19901":"3.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896701","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896701","key":"ORDGP-73","fields":{"summary":"Interfaces between Modules","customfield_19901":"3.2.2","customfield_19902":"||Interface||Between Module||And Module||Purpose||\n|{color:blue}Interface A{color}|{color:blue}backend{color}|{color:blue}frontend{color}| |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InterfaceBetween ModuleAnd ModulePurpose
Interface Abackendfrontend 
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896700","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896700","key":"ORDGP-72","fields":{"summary":"Interfaces to External Systems","customfield_19901":"3.2.3","customfield_19902":"||Interface||Between Module||And External System||Purpose||\n|{color:blue}BI-IF-{color}|{color:blue}backend{color}| | |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InterfaceBetween ModuleAnd External SystemPurpose
BI-IF-backend  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896699","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896699","key":"ORDGP-71","fields":{"summary":"System Diagram","customfield_19901":"3.2.4","customfield_19902":"{color:blue}< A system diagram to graphically represent the module and interface information should be included here. > - Only if different from the diagram in the 2.1 section{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< A system diagram to graphically represent the module and interface information should be included here. > - Only if different from the diagram in the 2.1 section

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896698","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896698","key":"ORDGP-70","fields":{"summary":"Architecture of the System","customfield_19901":"4","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896697","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896697","key":"ORDGP-69","fields":{"summary":"Utilisation of Existing Infrastructure Systems","customfield_19901":"5.3","customfield_19902":"||Name of Infrastructure System||Documentation Reference||\n|_{color:blue}BI-IT-APPL-LOAD-BALANCING{color}_\n |_{color:blue}ITEMS doc ID 20108828{color}_\n |\n|_{color:blue}BI-IT-AD{color}_\n |_{color:blue}ITEMS doc ID 20095172{color}_|\n|_{color:blue}BI-RT-WINDOWSSERVER{color}_\n |_{color:blue}Infrastructure Release Design and Management ITEMS doc ID 20184916{color}_\n |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name of Infrastructure SystemDocumentation Reference
BI-IT-APPL-LOAD-BALANCING
ITEMS doc ID 20108828
BI-IT-AD
ITEMS doc ID 20095172
BI-RT-WINDOWSSERVER
Infrastructure Release Design and Management ITEMS doc ID 20184916
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896696","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896696","key":"ORDGP-68","fields":{"summary":"Utilisation of Existing Infrastructure Services","customfield_19901":"5.4","customfield_19902":"||Name of Infrastructure Service||Documentation Reference||\n|{color:blue}_Monitoring_{color}| {color:blue}_Standard Monitoring (Baseline Monitoring) on component level is sufficient_{color}\n{color:blue}_System specific Monitoring Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}|\n|{color:blue}_Backup_{color}|{color:blue}_Standard Backup on component level is sufficient_{color}\n{color:blue}_System specific Backup Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}\n{color:blue}_**_{color}|\n|{color:blue}_Restore & Recovery_{color}|{color:blue}_Standard Restore & Recovery on component level is sufficient_{color}\n{color:blue}_System specific Restore & Recovery Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name of Infrastructure ServiceDocumentation Reference
Monitoring Standard Monitoring (Baseline Monitoring) on component level is sufficient
\nSystem specific Monitoring Plan required
\nITEMS doc ID ?..
BackupStandard Backup on component level is sufficient
\nSystem specific Backup Plan required
\nITEMS doc ID ?..
\n**
Restore & RecoveryStandard Restore & Recovery on component level is sufficient
\nSystem specific Restore & Recovery Plan required
\nITEMS doc ID ?..
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896695","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896695","key":"ORDGP-67","fields":{"summary":"Development Environment","customfield_19901":"6.1","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896694","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896694","key":"ORDGP-66","fields":{"summary":"QA/Test Environment","customfield_19901":"6.2","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896693","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896693","key":"ORDGP-65","fields":{"summary":"Training Environment","customfield_19901":"6.3","customfield_19902":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.\r\n Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.\r\n\r\nAliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\nMorbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.\r\n\r\n!image-2022-02-22-11-12-54-300.png|width=842,height=501!","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.
\n Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

\n\n

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

\n\n

Morbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.

\n\n

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896692","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896692","key":"ORDGP-64","fields":{"summary":"Environmental Conditions","customfield_19901":"7","customfield_19902":"{color:blue}< Describe the environmental conditions required for the system. A reference to an existing qualified computer room may be given. The following conditions should be considered: e.g. temperature, humidity, power conditions, physical security, etc. >{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< Describe the environmental conditions required for the system. A reference to an existing qualified computer room may be given. The following conditions should be considered: e.g. temperature, humidity, power conditions, physical security, etc. >

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896691","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896691","key":"ORDGP-63","fields":{"summary":"Software Design Principles","customfield_19901":"8","customfield_19902":"{color:blue}*<* The principles that may be included are:{color}\n* {color:blue}General layout rules for windows and reports{color}\n* {color:blue}Audit trail implementation{color}\n* {color:blue}Access control measures{color}\n* {color:blue}User administration{color}\n* {color:blue}Function key assignments{color}\n* {color:blue}Minimum requirements (resources) needed for the application to run properly, both hardware (e.g. storage space) as well as software (such as operating system, drivers).>{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< The principles that may be included are:

\n
    \n\t
  • General layout rules for windows and reports
  • \n\t
  • Audit trail implementation
  • \n\t
  • Access control measures
  • \n\t
  • User administration
  • \n\t
  • Function key assignments
  • \n\t
  • Minimum requirements (resources) needed for the application to run properly, both hardware (e.g. storage space) as well as software (such as operating system, drivers).>
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896690","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896690","key":"ORDGP-62","fields":{"summary":"System Data","customfield_19901":"9","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896689","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896689","key":"ORDGP-61","fields":{"summary":"Coding Review Results","customfield_19901":"12","customfield_19902":"{color:blue}< Identify the outcome of coding review. Identify standards that were not met and their corrective actions. The corrective actions should include evidence of agreement by developer and reviewer. >{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< Identify the outcome of coding review. Identify standards that were not met and their corrective actions. The corrective actions should include evidence of agreement by developer and reviewer. >

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896688","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896688","key":"ORDGP-60","fields":{"summary":"Definitions","customfield_19901":"13.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896687","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896687","key":"ORDGP-59","fields":{"summary":"Abbreviations","customfield_19901":"13.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896686","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896686","key":"ORDGP-58","fields":{"summary":"Document History","customfield_19901":"15","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896685","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896685","key":"ORDGP-57","fields":{"summary":"Reference Documents","customfield_19901":"14","customfield_19902":"* _{color:blue}Reference document 1{color}_\n* _{color:blue}Reference document 2{color}_","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
    \n\t
  • Reference document 1
  • \n\t
  • Reference document 2
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896684","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896684","key":"ORDGP-56","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896683","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896683","key":"ORDGP-55","fields":{"summary":"Reference Document","customfield_19901":"6","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:DTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896682","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896682","key":"ORDGP-54","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:DTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896681","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896681","key":"ORDGP-53","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896680","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896680","key":"ORDGP-52","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:DTP","Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896679","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896679","key":"ORDGP-51","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:DTP","Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896678","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896678","key":"ORDGP-50","fields":{"summary":"Document History","customfield_19901":"8","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896677","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896677","key":"ORDGP-49","fields":{"summary":"Reference Documents","customfield_19901":"7","customfield_19902":"{color:blue}No further reference documents{color}","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

No further reference documents

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896676","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896676","key":"ORDGP-48","fields":{"summary":"Abbreviations","customfield_19901":"6.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896675","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896675","key":"ORDGP-47","fields":{"summary":"Definitions","customfield_19901":"6.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896674","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896674","key":"ORDGP-46","fields":{"summary":"Assumptions","customfield_19901":"3","customfield_19902":"_{color:blue}None{color}_","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

None

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896673","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896673","key":"ORDGP-45","fields":{"summary":"Operational Requirements","customfield_19901":"3.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896672","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896672","key":"ORDGP-44","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":"* _{color:blue}Reference document 1{color}_\n * _{color:blue}Reference document 2{color}_","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
    \n\t
  • Reference document 1
  • \n\t
  • Reference document 2
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896671","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896671","key":"ORDGP-43","fields":{"summary":"Introduction and Purpose","customfield_19901":"1","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896670","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896670","key":"ORDGP-42","fields":{"summary":"Overview","customfield_19901":"2","customfield_19902":"Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.\r\n\r\n \r\n\r\n*!image-2022-02-22-11-11-22-023.png|width=484,height=142!*\r\n\r\n ","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

\n\n

 

\n\n

\n\n

 

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896669","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896669","key":"ORDGP-41","fields":{"summary":"Related Business / GxP Process","customfield_19901":"3.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896668","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896668","key":"ORDGP-40","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896667","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896667","key":"ORDGP-39","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896666","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896666","key":"ORDGP-38","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_search-8ef6c7d6-8440-4436-92e8-b3781efab7c4.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_search-8ef6c7d6-8440-4436-92e8-b3781efab7c4.json new file mode 100644 index 00000000..28d3bd13 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_api_2_search-8ef6c7d6-8440-4436-92e8-b3781efab7c4.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":37,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896665","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896665","key":"ORDGP-37","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7b245527[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@439c2bab[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2536e1ea[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7554794[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e3f9d19[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2c07d1c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@10ebe51f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3d2f7971[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2f6afc98[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2ec35cf4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61cf872e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@276d8e97[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VSR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VSR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui1g:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Summary Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896664","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896664","key":"ORDGP-36","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@73081c45[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1be44753[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7554d392[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4cb3dcb4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a9acd91[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@24907de5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@778bf2a6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@250fc69f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79a571ea[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5e7d546e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76cb93c5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2dab98bd[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:REP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-REP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui18:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Restore/Recovery Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896663","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896663","key":"ORDGP-35","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3340ad21[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ca8fff4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@30c3b023[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5b7fbe90[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@f1deacb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@68c51888[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45aaff1b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@63074200[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32cb719[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@436deeac[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@512d93fd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@863cc9a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:BUP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-BUP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui10:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Backup Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896662","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896662","key":"ORDGP-34","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7869112b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@23146806[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ba82133[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3bfc2a18[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@739ce797[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3c62a1a3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@46b9aea5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1ccff080[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8fb0cd1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@213dcbd4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2afa85d0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@49d23bff[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0s:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System Monitoring Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896661","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896661","key":"ORDGP-33","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3bda5538[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ea5d865[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8586a26[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@8beedb8[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5925626[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7020893f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b62d447[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@444e2dbe[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@53fa7077[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@27e76246[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a0a4a11[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3f9cb533[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:P11"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-P11","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0k:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Part 11 Compliance Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896660","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896660","key":"ORDGP-32","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@30bc8c53[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f9b74e1[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69e2c1b4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2d1a9c15[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a7cf272[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@270b8f8f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@581b05bb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2118d099[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1cca59aa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@67c6da4b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@67f03dd5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@8bb5aa[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0c:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Infrastructure Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896659","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896659","key":"ORDGP-31","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@20805bf[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4dff2997[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@20fbb02a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@147c8633[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3c95e685[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3da96080[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@40aeedff[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3093a6c7[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2321df9e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@557a061a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@620cd85f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4f84ff47[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui04:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896658","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896658","key":"ORDGP-30","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2c61f813[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@230b1211[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1933a86a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@62d3aac7[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a3ed1e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3151a8d3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35a5266b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4adf278a[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@550bf8d2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@69a0d590[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75aa20b1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@46fabaf9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:AAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-AAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Application Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896657","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896657","key":"ORDGP-29","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@62a63dd5[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@70a7fab6[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7242b770[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3dff81c4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@643a504e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@e7953e4[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69e79c6c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2857c135[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1e595c51[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5a7bda0d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@f2a29d2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@19e21f6b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TRC"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:16.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TRC","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Traceability Matrix","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896656","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896656","key":"ORDGP-28","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:43.183+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2e1d2580[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2324e209[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6a03dc3a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6eb34fd9[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3467aaf1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@37f8f509[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@436e0dc0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@37d75ff3[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3eee5bda[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4ecea1b3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d7db5a7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7058553c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896655","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896655","key":"ORDGP-27","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@60a54744[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6dcc1d0d[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d427ddf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@40eb350f[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6b25d438[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@50a18337[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ed3a079[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1789bfe1[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@52c83d3c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@e2cb469[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1def0dbd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4743cf56[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896654","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896654","key":"ORDGP-26","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:13.192+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2eada851[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a67100[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75f26c6d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@47ee2da2[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4ced942b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@f5e706c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69a9f4ee[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5f9c5744[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f70dc50[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3d10ec2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@257994d2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@18e2c14e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:53.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896653","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896653","key":"ORDGP-25","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@46314413[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c93ea01[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@67d2c476[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@34c2f96f[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f326688[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4c08d07a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3d884cf9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1ea2d3a6[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@12a8e0dc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@18a979f3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@67b9119b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6f0ed129[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:34.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhys:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896652","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896652","key":"ORDGP-24","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@535b3902[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c9a161a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@759ccae3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@69aa288c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@22b655d7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@769e1216[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@65c605f4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5d10bf88[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d185110[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4b90e407[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1eaca124[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4618a186[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896651","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896651","key":"ORDGP-23","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6b4a07d4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@562cd18f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@15dc9e8d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@254c8510[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b4dbf98[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@f2bc2e5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7e720d7b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3fd773a0[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69b0babd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@385d7184[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@562aba21[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@52e48937[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896650","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896650","key":"ORDGP-22","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7d6fba5f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c7b3618[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f626bcf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@a1c41cd[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29aeff3c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6aab776b[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@463b55e2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2ec176c1[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@70483b3a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@41691a77[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5de1d3fd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@78b3c1fe[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:14:28.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhy4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896649","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896649","key":"ORDGP-21","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:33:19.170+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@522a7ec[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@255a848[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d0ce77f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2234097e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@245487bb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3036ebcb[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5aebc5ad[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@58965877[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@587f7581[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5f90a5f6[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5bd2d504[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@31ed6be9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:52.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896648","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896648","key":"ORDGP-20","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@65ccf64a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@50213361[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@38b1f9a9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@61526fe5[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2bd84b39[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@78f66508[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fbdb70e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3de2c45b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@540ad15d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1f9f30f1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3db8e1cb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@16d32a3b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:54.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896647","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896647","key":"ORDGP-19","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@31058dbc[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@23960923[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35cda538[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@26816db3[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74a11726[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@19dbcb19[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4167497f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6c265815[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@10c27a90[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5786f892[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2cd17fac[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@72e97cd3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:08:41.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896646","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896646","key":"ORDGP-18","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@469424eb[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f21447f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59f6cf83[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6cc17a7e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@19758834[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3747004d[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@58224bf1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3f57d801[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a56c3f7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@59cef98[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fab4119[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4ebd1f3d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:00.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896645","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896645","key":"ORDGP-17","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:34.116+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@285c921a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d55ce81[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@55d918a3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@268bf55f[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@95055fc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5cf23693[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@417331ae[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@382b15d2[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33df589e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7ed4b6d8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@26f206ed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@46171264[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896644","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896644","key":"ORDGP-16","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2e6ddaec[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@258b6eba[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@51a55c32[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2fa50602[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f2b7322[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@46d65be[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7fd2edcd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@78407123[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4cc6bf6a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@23e973d9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b3d5eec[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@300fe7c1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhws:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896643","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896643","key":"ORDGP-15","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3cc557ec[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6dc976cc[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59587f31[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7f011dc0[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@fcf297b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@614d0f55[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7b7655ba[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@ceeb809[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7a1cdc1e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@732253af[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ab013f4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4367da5b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:06:25.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896642","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896642","key":"ORDGP-14","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@42b75505[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69a86f60[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@560a40e4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7c73f62a[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7666de06[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@31762834[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@357f439e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@56de21bd[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1608538e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@16bfeef3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59132c09[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7e673d5f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SSDS"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:17.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SSDS","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System and Software Design Specification including Source Code Review","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896641","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896641","key":"ORDGP-13","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:20.501+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3ae92f84[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@28384662[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35a0d06e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5fc19bee[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1ecd78f2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6aee963c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@597e08af[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@ab3f685[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7fcc05c9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@610d337a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@489f7484[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5d8db4cc[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:48.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhw4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896640","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896640","key":"ORDGP-12","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7616f628[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5f50c188[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@65a518e1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3c20d95c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6bc6194[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3a2cf891[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@77838d25[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4d5340b0[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2806284f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@75b3b5ae[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1eb2f498[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@49b3713e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:30.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896639","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896639","key":"ORDGP-11","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:34:49.813+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@17af631c[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@16ae62bb[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75482482[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@10163b2a[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a55e657[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1b5e94c9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2f86cf14[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@ee87ea5[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3bba4671[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@54ad6513[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4dcaeefd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@9aacb7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:15:07.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896638","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896638","key":"ORDGP-10","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:30:53.289+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7664f198[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7a996a8a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5e4a18da[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6f36f4a3[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2714dcec[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3672173b[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@387055e7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@603b3da6[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61497ef1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4724662c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7dc1dc42[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@44ae0851[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:05:18.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL for Dev Preview","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Developer Preview","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896637","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896637","key":"ORDGP-9","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-31T17:42:51.174+0200","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7e7d12eb[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@44f0ebc4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79518568[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3abcff4d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7e630a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@694c7e1[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@739b789e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2e80a737[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d95f7de[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7d9e9842[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@556950e7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7efbfc62[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:51.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896636","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896636","key":"ORDGP-8","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:04.572+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@93492de[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@62777a68[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@276d7bd2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7e10e16d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1ace8520[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5e29f61[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@491dc7e4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@307f5c23[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5ef63889[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4ffebda1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@687b715d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@222fb635[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:59.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896635","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896635","key":"ORDGP-7","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1d8c2c89[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@351167ed[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@768d5091[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@481d6fa2[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@712bb5fa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@359f6e55[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@290aa9af[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@ac9b353[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@26614395[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@68c27cca[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14f9f7ac[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@536d9d4b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:37.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhus:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896634","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896634","key":"ORDGP-6","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@40962ef7[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@17a8f116[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2f0b0a79[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7f7b6ecf[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@200432df[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@25ac253a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5283bb34[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@762aaabd[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7739ec6d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@33f89245[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7cedd515[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5f31e777[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RA"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:07:33.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RA","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Risk Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896633","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896633","key":"ORDGP-5","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:34:12.755+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3a5546bb[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@650c4046[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2215823[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5a82651[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f464d2f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@70aaf74f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78424939[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3c1c62ce[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@616e7f57[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@46d9ecba[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c387ed9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@73ed6382[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSD"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:03:55.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSD","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Specification Document","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896632","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896632","key":"ORDGP-4","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2ca309d2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5f1be377[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ed3ba9a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@e53f06c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@229d8ff5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4eb7146f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5da36049[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4ce23b01[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2cef74f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@74ac9f15[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32cb08e1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6fac078a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhu4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Client Site Qualification","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896631","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896631","key":"ORDGP-3","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@d160d4d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@108ac081[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@492efad9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@f66a5b5[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@502f67a9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5b20e4cd[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@65662542[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5f177f56[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74ae5932[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@28f4dde6[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7c6ca18f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@18e59c9b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RAL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RAL","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Role Assignment Log","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896630","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896630","key":"ORDGP-2","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@233bbc4e[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@40b6e167[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@25e925e8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@52a345eb[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4acfa57a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@60f38983[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@c593610[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@441db66d[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@73ce2fe1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@f0d0f8a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4aa151cd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@63a6282a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhto:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Supplier Assessment Mail Questionnaire","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896629","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896629","key":"ORDGP-1","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@448595d9[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6b77a10a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f5ee0f1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@297771e1[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3018c732[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4b5adc93[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@430bf461[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@51e16d98[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@27b601c1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3a15efe0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2621ac3f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7c7688ce[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:54.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-fddb1109-9bf7-426e-83e9-b79aa2ba554a.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-fddb1109-9bf7-426e-83e9-b79aa2ba554a.json new file mode 100644 index 00000000..d71c5e6f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-fddb1109-9bf7-426e-83e9-b79aa2ba554a.json @@ -0,0 +1,673 @@ +{ + "project" : { + "name" : "One Release DocGen Project", + "description" : "", + "key" : "ORDGP", + "jiraBaseUrl" : "https://jira-dev.biscrum.com/ORDGP", + "projectProperties" : { + "PROJECT.POO_CAT.LOW" : "Frequency of the usage of the related function is <10 times per year.", + "PROJECT.POO_CAT.HIGH" : "Frequency of the usage of the related function is >10 times per week.", + "WEBHOOK_PROXY.URL" : "https://webhook-proxy-ORDGP-cd.inh-odsapps.eu.boehringer.com/build?trigger_secret=f8055071-667e-4745-8d2e-deabf52f8a20", + "RM.REPOSITORY" : "ordgp-releasemanager", + "PROJECT.POO_CAT.MEDIUM" : "Frequency of the usage of the related function is <10 times per week.", + "PROJECT.NON-GXP_EVALUATION" : "Non-GxP risks are not being evaluated", + "PROJECT.USES_POO" : "true", + "PROJECT.IS_EDP_PROJECT" : "true", + "PROJECT.CONFIG_ITEM" : "BI-IT-DEVSTACK" + }, + "gampTopics" : [ "operational requirements", "functional requirements", "data requirements", "technical requirements", "interface requirements", "environment requirements", "performance requirements", "availability requirements", "security requirements", "maintenance requirements", "regulatory requirements", "roles", "compatibility", "procedural constraints", "overarching requirements" ], + "enumDictionary" : { + "ProbabilityOfDetection" : { + "1" : { + "value" : 1, + "text" : "Immediate", + "short" : "I" + }, + "2" : { + "value" : 2, + "text" : "Before Impact", + "short" : "B" + }, + "3" : { + "value" : 3, + "text" : "After Impact", + "short" : "A" + } + }, + "SeverityOfImpact" : { + "1" : { + "value" : 1, + "text" : "Low", + "short" : "L" + }, + "2" : { + "value" : 2, + "text" : "Medium", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "High", + "short" : "H" + } + }, + "ProbabilityOfOccurrence" : { + "1" : { + "value" : 1, + "text" : "LOW", + "short" : "L" + }, + "2" : { + "value" : 2, + "text" : "MEDIUM", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "HIGH", + "short" : "H" + } + }, + "RiskPriority" : { + "0" : { + "value" : 0, + "text" : "N/A", + "short" : "N" + }, + "1" : { + "value" : 1, + "text" : "HIGH", + "short" : "H" + }, + "2" : { + "value" : 2, + "text" : "MEDIUM", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "LOW", + "short" : "L" + } + }, + "GxPRelevance" : { + "R2" : { + "value" : 2, + "text" : "Relevant", + "short" : "R2" + }, + "N0" : { + "value" : 0, + "text" : "Not relevant/ZERO", + "short" : "N0" + }, + "N1" : { + "value" : 1, + "text" : "Not relevant/LESS", + "short" : "N1" + }, + "N2" : { + "value" : 2, + "text" : "Not relevant/EQUAL", + "short" : "N2" + } + } + }, + "versions" : [ "1.0" ], + "id" : "30107" + }, + "components" : { + "Technology-test" : { + "name" : "Technology-test", + "description" : "Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + }, + "Technology-backend" : { + "name" : "Technology-backend", + "description" : "Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "mitigations" : [ ] + }, + "Technology-frontend" : { + "name" : "Technology-frontend", + "description" : "Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + }, + "Technology-releasemanager" : { + "name" : "Technology-releasemanager", + "description" : "Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + } + }, + "releaseState" : "Change Ready for Implementation", + "version" : "1.0", + "epics" : { + "ORDGP-124" : { + "key" : "ORDGP-124", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

\n\n

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "epicName" : "Epic 1", + "predecessors" : [ ], + "title" : "Epic 1", + "requirements" : [ "ORDGP-126", "ORDGP-127", "ORDGP-125", "ORDGP-128", "ORDGP-129" ] + } + }, + "requirements" : { + "ORDGP-125" : { + "key" : "ORDGP-125", + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ "ORDGP-136" ], + "tests" : [ "ORDGP-144", "ORDGP-145", "ORDGP-143", "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "bugs" : [ ], + "mitigations" : [ "ORDGP-140" ], + "predecessors" : [ ] + }, + "ORDGP-126" : { + "key" : "ORDGP-126", + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ "ORDGP-141", "ORDGP-142" ], + "tests" : [ ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-127" : { + "key" : "ORDGP-127", + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-128" : { + "key" : "ORDGP-128", + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ "ORDGP-147" ], + "techSpecs" : [ "ORDGP-146" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-129" : { + "key" : "ORDGP-129", + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ "ORDGP-130", "ORDGP-133", "ORDGP-131", "ORDGP-132" ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + } + }, + "risks" : { + "ORDGP-136" : { + "key" : "ORDGP-136", + "name" : "RA 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "N1", + "probabilityOfOccurrence" : 1, + "severityOfImpact" : 2, + "probabilityOfDetection" : 2, + "riskPriorityNumber" : 4, + "riskPriority" : 3, + "mitigations" : [ "ORDGP-140" ], + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "tests" : [ "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "predecessors" : [ ], + "riskComment" : null + }, + "ORDGP-141" : { + "key" : "ORDGP-141", + "name" : "RA 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique.
\nSed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "R2", + "probabilityOfOccurrence" : 3, + "severityOfImpact" : 3, + "probabilityOfDetection" : 1, + "riskPriorityNumber" : 18, + "riskPriority" : 1, + "mitigations" : [ ], + "requirements" : [ "ORDGP-126" ], + "techSpecs" : [ ], + "tests" : [ ], + "predecessors" : [ ], + "riskComment" : null + }, + "ORDGP-142" : { + "key" : "ORDGP-142", + "name" : "RA 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "N0", + "probabilityOfOccurrence" : 1, + "severityOfImpact" : 1, + "probabilityOfDetection" : 3, + "riskPriorityNumber" : 0, + "riskPriority" : 0, + "mitigations" : [ ], + "requirements" : [ "ORDGP-126" ], + "techSpecs" : [ ], + "tests" : [ ], + "predecessors" : [ ], + "riskComment" : null + } + }, + "tests" : { + "ORDGP-130" : { + "id" : "896758", + "key" : "ORDGP-130", + "name" : "Acceptance Test 1", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-131" : { + "id" : "896759", + "key" : "ORDGP-131", + "name" : "Acceptance Test 2", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-132" : { + "id" : "896760", + "key" : "ORDGP-132", + "name" : "Acceptance Test 3", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-133" : { + "id" : "896761", + "key" : "ORDGP-133", + "name" : "Acceptance Test 4", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-137" : { + "id" : "896765", + "key" : "ORDGP-137", + "name" : "Unit Test 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-138" : { + "id" : "896766", + "key" : "ORDGP-138", + "name" : "Unit Test 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-139" : { + "id" : "896767", + "key" : "ORDGP-139", + "name" : "Unit Test 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-143" : { + "id" : "896771", + "key" : "ORDGP-143", + "name" : "Integration Test 1", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-144" : { + "id" : "896772", + "key" : "ORDGP-144", + "name" : "Integration Test 2", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-145" : { + "id" : "896773", + "key" : "ORDGP-145", + "name" : "Integration Test 3", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-147" : { + "id" : "896775", + "key" : "ORDGP-147", + "name" : "Installation Test 1", + "description" : "

Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Installation", + "executionType" : "Automated", + "requirements" : [ "ORDGP-128" ], + "techSpecs" : [ "ORDGP-146" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + } + }, + "mitigations" : { + "ORDGP-140" : { + "key" : "ORDGP-140", + "name" : "Mitigation 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "risks" : [ "ORDGP-136" ], + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "predecessors" : [ ] + } + }, + "techSpecs" : { + "ORDGP-134" : { + "key" : "ORDGP-134", + "name" : "TST 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "softwareDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "risks" : [ ], + "tests" : [ "ORDGP-144", "ORDGP-145", "ORDGP-143" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-135" : { + "key" : "ORDGP-135", + "name" : "TST 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "softwareDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "risks" : [ ], + "tests" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-146" : { + "key" : "ORDGP-146", + "name" : "TST 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

\n\n

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

\n\n

Morbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

", + "softwareDesignSpec" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "components" : [ ], + "requirements" : [ "ORDGP-128" ], + "risks" : [ ], + "tests" : [ "ORDGP-147" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + } + }, + "bugs" : { }, + "notesAndHints" : [ "Non-EDP linkType Cloners ignored: ORDGP-144 -> ORDGP-143" ], + "precedingVersions" : [ ], + "modifiedKeys" : { }, + "discontinuedKeys" : [ ], + "continuedKeys" : [ ] +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/secure_attachment_552315_552315_image-2022-02-22-11-11-22-023png-63ea691f-d1ed-4ba6-8d7e-91e5f6b9dfee.png b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/secure_attachment_552315_552315_image-2022-02-22-11-11-22-023png-63ea691f-d1ed-4ba6-8d7e-91e5f6b9dfee.png new file mode 100644 index 00000000..92677295 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/__files/secure_attachment_552315_552315_image-2022-02-22-11-11-22-023png-63ea691f-d1ed-4ba6-8d7e-91e5f6b9dfee.png differ diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-563e6c94-6d16-4585-bf69-b4b5f64c6a29.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-563e6c94-6d16-4585-bf69-b4b5f64c6a29.json new file mode 100644 index 00000000..07f0d110 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-563e6c94-6d16-4585-bf69-b4b5f64c6a29.json @@ -0,0 +1,33 @@ +{ + "id" : "563e6c94-6d16-4585-bf69-b4b5f64c6a29", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":10,\"isLast\":true,\"values\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/1\",\"id\":\"1\",\"description\":\"A problem which impairs or prevents the functions of the product.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10303&avatarType=issuetype\",\"name\":\"Bug\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10000\",\"id\":\"10000\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a big user story that needs to be broken down.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10307&avatarType=issuetype\",\"name\":\"Epic\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10001\",\"id\":\"10001\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a user story.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10315&avatarType=issuetype\",\"name\":\"Story\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006\",\"id\":\"10006\",\"description\":\"\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype\",\"name\":\"Documentation\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10009\",\"id\":\"10009\",\"description\":\"This Issue Type is used to create Zephyr Test within Jira.\",\"iconUrl\":\"https://jira-dev.biscrum.com/download/resources/com.thed.zephyr.je/images/icons/ico_zephyr_issuetype.png\",\"name\":\"Test\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14300\",\"id\":\"14300\",\"description\":\"Release status of project\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22841&avatarType=issuetype\",\"name\":\"Release Status\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14301\",\"id\":\"14301\",\"description\":\"Document part\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22842&avatarType=issuetype\",\"name\":\"Documentation Chapter\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14302\",\"id\":\"14302\",\"description\":\"The issue for risk definition\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22843&avatarType=issuetype\",\"name\":\"Risk Assessment\",\"subtask\":true},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14303\",\"id\":\"14303\",\"description\":\"The issue for definition of a risk mitigation\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22844&avatarType=issuetype\",\"name\":\"Mitigation\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14304\",\"id\":\"14304\",\"description\":\"The issue for technical specification\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22845&avatarType=issuetype\",\"name\":\"Technical Specification Task\",\"subtask\":false}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:39 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31123x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=DC1DCED07E9D7720C66848368B909DAE; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_62f6b178f9a39f5c090fda8c6219d2f728e90962_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "120ol3t", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "563e6c94-6d16-4585-bf69-b4b5f64c6a29", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-a0dde9ad-fe6a-4ff7-973d-d083e1110c74.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-a0dde9ad-fe6a-4ff7-973d-d083e1110c74.json new file mode 100644 index 00000000..8687c171 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-a0dde9ad-fe6a-4ff7-973d-d083e1110c74.json @@ -0,0 +1,33 @@ +{ + "id" : "a0dde9ad-fe6a-4ff7-973d-d083e1110c74", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_1", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/1", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":16,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19334},\"name\":\"EDP Definition of Ready for Bug\",\"fieldId\":\"customfield_19334\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72091\",\"value\":\"Confirmed\",\"id\":\"72091\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19335},\"name\":\"EDP Definition of Done for Bug\",\"fieldId\":\"customfield_19335\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72097\",\"value\":\"Test passed\",\"id\":\"72097\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/1\",\"id\":\"1\",\"description\":\"A problem which impairs or prevents the functions of the product.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10303&avatarType=issuetype\",\"name\":\"Bug\",\"subtask\":false,\"avatarId\":10303}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:40 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31124x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=C575B16ABABE07DEC35DF8C5BE524604; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_0c21be57962b1b3f98423ffede5a17ab9fc0b2af_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1p3x9mq", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "a0dde9ad-fe6a-4ff7-973d-d083e1110c74", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-cff404e2-6093-4555-a46f-48e346621ae8.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-cff404e2-6093-4555-a46f-48e346621ae8.json new file mode 100644 index 00000000..5ce0ac24 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-cff404e2-6093-4555-a46f-48e346621ae8.json @@ -0,0 +1,33 @@ +{ + "id" : "cff404e2-6093-4555-a46f-48e346621ae8", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10000", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10000", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-label\",\"customId\":10006},\"name\":\"Epic Name\",\"fieldId\":\"customfield_10006\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10000\",\"id\":\"10000\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a big user story that needs to be broken down.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10307&avatarType=issuetype\",\"name\":\"Epic\",\"subtask\":false,\"avatarId\":10307}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:42 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31125x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=84A88483C2F1F204E891E3708F411A5E; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_0274a4930f6de21d64f8c69b3263eeb816aa146f_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "ohbu77", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "cff404e2-6093-4555-a46f-48e346621ae8", + "persistent" : true, + "insertionIndex" : 3 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-a6e5d6ed-b9c5-42f2-80ca-2b6b75d2ff7e.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-a6e5d6ed-b9c5-42f2-80ca-2b6b75d2ff7e.json new file mode 100644 index 00000000..45f4e9e6 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-a6e5d6ed-b9c5-42f2-80ca-2b6b75d2ff7e.json @@ -0,0 +1,33 @@ +{ + "id" : "a6e5d6ed-b9c5-42f2-80ca-2b6b75d2ff7e", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10001", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10001", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10001-a6e5d6ed-b9c5-42f2-80ca-2b6b75d2ff7e.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:43 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31126x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=A1E385600483AAD678A79E4A9F5CE87A; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_0fcf3e358d216cd6c9760c90bc0f81cf29a51281_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1w3w7xb", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "a6e5d6ed-b9c5-42f2-80ca-2b6b75d2ff7e", + "persistent" : true, + "insertionIndex" : 4 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-f326aa18-94c2-4bbe-b976-9ab12ba412a1.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-f326aa18-94c2-4bbe-b976-9ab12ba412a1.json new file mode 100644 index 00000000..501d844d --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-f326aa18-94c2-4bbe-b976-9ab12ba412a1.json @@ -0,0 +1,33 @@ +{ + "id" : "f326aa18-94c2-4bbe-b976-9ab12ba412a1", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10006", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10006", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":15,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19306},\"name\":\"Document Id\",\"fieldId\":\"customfield_19306\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19307},\"name\":\"Document Version\",\"fieldId\":\"customfield_19307\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19308},\"name\":\"EDP Definition of Ready for Documentation\",\"fieldId\":\"customfield_19308\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72044\",\"value\":\"Risk Defined\",\"id\":\"72044\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72045\",\"value\":\"AcceptanceTest Ready for Implementation\",\"id\":\"72045\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19309},\"name\":\"EDP Definition of Done for Documentation\",\"fieldId\":\"customfield_19309\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72056\",\"value\":\"All Documentation Chapter Done\",\"id\":\"72056\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72057\",\"value\":\"All Issues in Done for Document\",\"id\":\"72057\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"environment\"},\"name\":\"Environment\",\"fieldId\":\"environment\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006\",\"id\":\"10006\",\"description\":\"\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype\",\"name\":\"Documentation\",\"subtask\":false,\"avatarId\":10306}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:45 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31127x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=9F794F8BEE5372228EDFB834ADE64320; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_096b6edfe32f4bafa9c7277788bc6206ec1d3651_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1fu072k", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "f326aa18-94c2-4bbe-b976-9ab12ba412a1", + "persistent" : true, + "insertionIndex" : 5 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-bd4931af-07f4-46fa-bae0-4ccfebb73855.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-bd4931af-07f4-46fa-bae0-4ccfebb73855.json new file mode 100644 index 00000000..c55bdf8f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-bd4931af-07f4-46fa-bae0-4ccfebb73855.json @@ -0,0 +1,33 @@ +{ + "id" : "bd4931af-07f4-46fa-bae0-4ccfebb73855", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10009", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10009", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":20,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"component\",\"system\":\"components\"},\"name\":\"Component/s\",\"fieldId\":\"components\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27522\",\"id\":\"27522\",\"name\":\"Technology-backend\",\"description\":\"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27523\",\"id\":\"27523\",\"name\":\"Technology-frontend\",\"description\":\"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27524\",\"id\":\"27524\",\"name\":\"Technology-releasemanager\",\"description\":\"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27525\",\"id\":\"27525\",\"name\":\"Technology-test\",\"description\":\"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse\"}]},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.thed.zephyr.je:zephyr-je-customfield-teststep\",\"customId\":10023},\"name\":\"Zephyr Teststep\",\"fieldId\":\"customfield_10023\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.test.testExecutiontype\",\"customId\":19330},\"name\":\"Test Execution Type\",\"fieldId\":\"customfield_19330\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72176\",\"value\":\"Automated\",\"id\":\"72176\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72177\",\"value\":\"Manual\",\"id\":\"72177\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.test.testLevel\",\"customId\":19331},\"name\":\"Test Level\",\"fieldId\":\"customfield_19331\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72154\",\"value\":\"Acceptance\",\"id\":\"72154\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72155\",\"value\":\"Integration\",\"id\":\"72155\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72156\",\"value\":\"Unit\",\"id\":\"72156\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72157\",\"value\":\"Installation\",\"id\":\"72157\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19332},\"name\":\"EDP Definition of Ready for Test\",\"fieldId\":\"customfield_19332\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72067\",\"value\":\"Jira test steps describe any applicable inputs and expected results\",\"id\":\"72067\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19333},\"name\":\"EDP Definition of Done for Test\",\"fieldId\":\"customfield_19333\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72075\",\"value\":\"Test implementation highlights where inputs and expected results can be found\",\"id\":\"72075\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72076\",\"value\":\"Test implementation reports evidence of expected results through log data or screenshots\",\"id\":\"72076\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72077\",\"value\":\"Test implementation allows the correlation of expected results in Jira test steps with evidence\",\"id\":\"72077\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10009\",\"id\":\"10009\",\"description\":\"This Issue Type is used to create Zephyr Test within Jira.\",\"iconUrl\":\"https://jira-dev.biscrum.com/download/resources/com.thed.zephyr.je/images/icons/ico_zephyr_issuetype.png\",\"name\":\"Test\",\"subtask\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:46 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31128x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=270524355C76EDDF89848C14EBABC1C6; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_cd72dfbd91ffbcb7eb92e95032877f16d5da1e12_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "q6ajag", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "bd4931af-07f4-46fa-bae0-4ccfebb73855", + "persistent" : true, + "insertionIndex" : 6 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-c38c8cff-ca6a-4676-acde-48ceac6f593f.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-c38c8cff-ca6a-4676-acde-48ceac6f593f.json new file mode 100644 index 00000000..f58d0ba9 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-c38c8cff-ca6a-4676-acde-48ceac6f593f.json @@ -0,0 +1,33 @@ +{ + "id" : "c38c8cff-ca6a-4676-acde-48ceac6f593f", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14300", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14300", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":16,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:select\",\"customId\":19301},\"name\":\"Release Manager Status\",\"fieldId\":\"customfield_19301\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72267\",\"value\":\"Running\",\"id\":\"72267\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72268\",\"value\":\"Failed\",\"id\":\"72268\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72269\",\"value\":\"Successful\",\"id\":\"72269\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19303},\"name\":\"Release Build\",\"fieldId\":\"customfield_19303\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:precedingversions\",\"customId\":20100},\"name\":\"Preceding Versions\",\"fieldId\":\"customfield_20100\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[]},{\"required\":false,\"schema\":{\"type\":\"version\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:version\",\"customId\":20101},\"name\":\"ProductRelease Version\",\"fieldId\":\"customfield_20101\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"description\":\"\",\"name\":\"1.0\",\"archived\":false,\"released\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:readonlyfield\",\"customId\":22101},\"name\":\"Branch Id _ not used\",\"fieldId\":\"customfield_22101\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14300\",\"id\":\"14300\",\"description\":\"Release status of project\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22841&avatarType=issuetype\",\"name\":\"Release Status\",\"subtask\":false,\"avatarId\":22841}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:48 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31129x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=F7333F5B865EE0FC5433D98409F63A10; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_510df2962171abd195f4546162d9b143da89793f_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "12h2hzs", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "c38c8cff-ca6a-4676-acde-48ceac6f593f", + "persistent" : true, + "insertionIndex" : 7 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-27894d60-02ed-46ea-9f39-e64200fb64dc.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-27894d60-02ed-46ea-9f39-e64200fb64dc.json new file mode 100644 index 00000000..ea064ad6 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-27894d60-02ed-46ea-9f39-e64200fb64dc.json @@ -0,0 +1,33 @@ +{ + "id" : "27894d60-02ed-46ea-9f39-e64200fb64dc", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14301", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14301", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:headingnumberfield\",\"customId\":19901},\"name\":\"EDP Heading Number\",\"fieldId\":\"customfield_19901\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19902},\"name\":\"EDP Content\",\"fieldId\":\"customfield_19902\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14301\",\"id\":\"14301\",\"description\":\"Document part\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22842&avatarType=issuetype\",\"name\":\"Documentation Chapter\",\"subtask\":false,\"avatarId\":22842}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:49 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31130x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=F19948B9A3AE1E419C8EEDD49AD80BB0; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_1932dc1ad65cd0f6e32878ebc532d25f9dec1244_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "17s5704", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "27894d60-02ed-46ea-9f39-e64200fb64dc", + "persistent" : true, + "insertionIndex" : 8 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-700a2520-e906-476b-ad4a-e8458b3e0df0.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-700a2520-e906-476b-ad4a-e8458b3e0df0.json new file mode 100644 index 00000000..df7298e0 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-700a2520-e906-476b-ad4a-e8458b3e0df0.json @@ -0,0 +1,33 @@ +{ + "id" : "700a2520-e906-476b-ad4a-e8458b3e0df0", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14302", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14302", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":21,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19310},\"name\":\"Risk Comment\",\"fieldId\":\"customfield_19310\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.gxp-relevance\",\"customId\":19311},\"name\":\"GxP Relevance for Risk\",\"fieldId\":\"customfield_19311\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72190\",\"value\":\"Relevant\",\"id\":\"72190\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72191\",\"value\":\"Not relevant/EQUAL\",\"id\":\"72191\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72192\",\"value\":\"Not relevant/LESS\",\"id\":\"72192\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72193\",\"value\":\"Not relevant/ZERO\",\"id\":\"72193\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.severityofimpact\",\"customId\":19312},\"name\":\"Severity of Impact\",\"fieldId\":\"customfield_19312\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72213\",\"value\":\"Low\",\"id\":\"72213\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72214\",\"value\":\"Medium\",\"id\":\"72214\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72215\",\"value\":\"High\",\"id\":\"72215\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.probabilityofdetection\",\"customId\":19313},\"name\":\"Probability of Detection\",\"fieldId\":\"customfield_19313\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72231\",\"value\":\"Immediate\",\"id\":\"72231\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72232\",\"value\":\"Before Impact\",\"id\":\"72232\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72233\",\"value\":\"After Impact\",\"id\":\"72233\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.probabilityofoccurrence\",\"customId\":19314},\"name\":\"Probability of Occurrence\",\"fieldId\":\"customfield_19314\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72249\",\"value\":\"LOW\",\"id\":\"72249\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72250\",\"value\":\"MEDIUM\",\"id\":\"72250\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72251\",\"value\":\"HIGH\",\"id\":\"72251\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.riskprioritynumber\",\"customId\":19315},\"name\":\"Risk Priority Number\",\"fieldId\":\"customfield_19315\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.riskpriority\",\"customId\":19316},\"name\":\"Risk Priority\",\"fieldId\":\"customfield_19316\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19317},\"name\":\"EDP Definition of Done for Risk\",\"fieldId\":\"customfield_19317\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72107\",\"value\":\"Identified\",\"id\":\"72107\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72108\",\"value\":\"Evaluated\",\"id\":\"72108\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72109\",\"value\":\"Mitigations/Tests defined\",\"id\":\"72109\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72110\",\"value\":\"Reevaluated\",\"id\":\"72110\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72111\",\"value\":\"Agreed with QA\",\"id\":\"72111\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14302\",\"id\":\"14302\",\"description\":\"The issue for risk definition\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22843&avatarType=issuetype\",\"name\":\"Risk Assessment\",\"subtask\":true,\"avatarId\":22843}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":true,\"schema\":{\"type\":\"issuelink\",\"system\":\"parent\"},\"name\":\"Parent\",\"fieldId\":\"parent\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:50 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31131x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=C314510360CE242DCDFDF8D4679C412F; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_4be489898130e3822465cdb9253645130109b0fc_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1plhkmt", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "700a2520-e906-476b-ad4a-e8458b3e0df0", + "persistent" : true, + "insertionIndex" : 9 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-967b4be7-6c5a-47af-b595-e43738b011ec.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-967b4be7-6c5a-47af-b595-e43738b011ec.json new file mode 100644 index 00000000..1dad6c79 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-967b4be7-6c5a-47af-b595-e43738b011ec.json @@ -0,0 +1,33 @@ +{ + "id" : "967b4be7-6c5a-47af-b595-e43738b011ec", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14303", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14303", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14303\",\"id\":\"14303\",\"description\":\"The issue for definition of a risk mitigation\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22844&avatarType=issuetype\",\"name\":\"Mitigation\",\"subtask\":false,\"avatarId\":22844}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:52 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31132x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=62B540248D0880A8368467E9F3E32B3E; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_ec806c9519fb89749b0e7777e32af27a69922338_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "yn98oo", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "967b4be7-6c5a-47af-b595-e43738b011ec", + "persistent" : true, + "insertionIndex" : 10 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-7f52189b-b105-4c4a-a485-ef4448bd0e91.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-7f52189b-b105-4c4a-a485-ef4448bd0e91.json new file mode 100644 index 00000000..3bffe7cf --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-7f52189b-b105-4c4a-a485-ef4448bd0e91.json @@ -0,0 +1,33 @@ +{ + "id" : "7f52189b-b105-4c4a-a485-ef4448bd0e91", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14304", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14304", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":18,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"component\",\"system\":\"components\"},\"name\":\"Component/s\",\"fieldId\":\"components\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27522\",\"id\":\"27522\",\"name\":\"Technology-backend\",\"description\":\"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27523\",\"id\":\"27523\",\"name\":\"Technology-frontend\",\"description\":\"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27524\",\"id\":\"27524\",\"name\":\"Technology-releasemanager\",\"description\":\"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27525\",\"id\":\"27525\",\"name\":\"Technology-test\",\"description\":\"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse\"}]},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19327},\"name\":\"System Design Specification\",\"fieldId\":\"customfield_19327\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19328},\"name\":\"Software Design Specification\",\"fieldId\":\"customfield_19328\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19329},\"name\":\"EDP Definition of Done for Technical Specification\",\"fieldId\":\"customfield_19329\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72135\",\"value\":\"All Risks Approved\",\"id\":\"72135\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72136\",\"value\":\"All Tests Defined\",\"id\":\"72136\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72137\",\"value\":\"All Tests Executed Successful\",\"id\":\"72137\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14304\",\"id\":\"14304\",\"description\":\"The issue for technical specification\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22845&avatarType=issuetype\",\"name\":\"Technical Specification Task\",\"subtask\":false,\"avatarId\":22845}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:54 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31133x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=75C00471CB5D9C5167B437EB3A540E7D; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_2c94319cd5351033194348b99263874cb04b7f3f_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1ljeh6u", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "7f52189b-b105-4c4a-a485-ef4448bd0e91", + "persistent" : true, + "insertionIndex" : 11 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_ordgp-123-17ae2d44-1e4c-4ea9-9000-ae3fa3c09b1a.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_ordgp-123-17ae2d44-1e4c-4ea9-9000-ae3fa3c09b1a.json new file mode 100644 index 00000000..1a4e1269 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_issue_ordgp-123-17ae2d44-1e4c-4ea9-9000-ae3fa3c09b1a.json @@ -0,0 +1,33 @@ +{ + "id" : "17ae2d44-1e4c-4ea9-9000-ae3fa3c09b1a", + "name" : "rest_api_2_issue_ordgp-123", + "request" : { + "url" : "/rest/api/2/issue/ORDGP-123?fields=customfield_20101", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"expand\":\"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations\",\"id\":\"896751\",\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issue/896751\",\"key\":\"ORDGP-123\",\"fields\":{\"customfield_20101\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"description\":\"\",\"name\":\"1.0\",\"archived\":false,\"released\":false}}}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:55 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31134x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=C7F039AF09489C416823414A83927140; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_2117420d9b5d24ac201e942a71b6e734c768543e_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "kfsr3m", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "17ae2d44-1e4c-4ea9-9000-ae3fa3c09b1a", + "persistent" : true, + "insertionIndex" : 12 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_project_ordgp_versions-1789104d-5073-46ac-8e2d-a2ddd0883b79.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_project_ordgp_versions-1789104d-5073-46ac-8e2d-a2ddd0883b79.json new file mode 100644 index 00000000..9814c357 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_project_ordgp_versions-1789104d-5073-46ac-8e2d-a2ddd0883b79.json @@ -0,0 +1,36 @@ +{ + "id" : "1789104d-5073-46ac-8e2d-a2ddd0883b79", + "name" : "rest_api_2_project_ordgp_versions", + "request" : { + "url" : "/rest/api/2/project/ORDGP/versions", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:02 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "651x31137x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=C35B070E4992DF50F994928553F0089C; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_79139f88f9d9ae7d3e8df40f0e16c8ff2d660b63_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "r5meta", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "1789104d-5073-46ac-8e2d-a2ddd0883b79", + "persistent" : true, + "scenarioName" : "scenario-1-rest-api-2-project-ORDGP-versions", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-1-rest-api-2-project-ORDGP-versions-2", + "insertionIndex" : 15 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_project_ordgp_versions-213e7743-6989-454c-9a4f-4a4038bdb79f.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_project_ordgp_versions-213e7743-6989-454c-9a4f-4a4038bdb79f.json new file mode 100644 index 00000000..d556f10b --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_project_ordgp_versions-213e7743-6989-454c-9a4f-4a4038bdb79f.json @@ -0,0 +1,35 @@ +{ + "id" : "213e7743-6989-454c-9a4f-4a4038bdb79f", + "name" : "rest_api_2_project_ordgp_versions", + "request" : { + "url" : "/rest/api/2/project/ORDGP/versions", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:03 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "651x31138x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=8C158CA918FFC05F0BB6D28736ABD25A; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_550e016d38384db39297d09f182db8d753a522c9_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "a8moe7", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "213e7743-6989-454c-9a4f-4a4038bdb79f", + "persistent" : true, + "scenarioName" : "scenario-1-rest-api-2-project-ORDGP-versions", + "requiredScenarioState" : "scenario-1-rest-api-2-project-ORDGP-versions-2", + "insertionIndex" : 16 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-0031ad5d-fd66-4052-a4dd-757a0976a594.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-0031ad5d-fd66-4052-a4dd-757a0976a594.json new file mode 100644 index 00000000..80770afa --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-0031ad5d-fd66-4052-a4dd-757a0976a594.json @@ -0,0 +1,38 @@ +{ + "id" : "0031ad5d-fd66-4052-a4dd-757a0976a594", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"jql\":\"project = ORDGP AND issuetype = 'Documentation' AND fixVersion = '1.0'\",\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-0031ad5d-fd66-4052-a4dd-757a0976a594.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:06 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "651x31140x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=4BB31C59EE992283E18AA6BC439B63D3; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_aba3c69753d703c1e981ee1dc090fc654c644ae5_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "160o6qc", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "0031ad5d-fd66-4052-a4dd-757a0976a594", + "persistent" : true, + "insertionIndex" : 18 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-333116e5-8074-4345-907d-498a2d62577d.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-333116e5-8074-4345-907d-498a2d62577d.json new file mode 100644 index 00000000..baafb448 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-333116e5-8074-4345-907d-498a2d62577d.json @@ -0,0 +1,38 @@ +{ + "id" : "333116e5-8074-4345-907d-498a2d62577d", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":[\"key\",\"status\",\"summary\",\"labels\",\"issuelinks\",\"customfield_19902\",\"customfield_19901\"],\"jql\":\"project = ORDGP AND issuetype = 'Documentation Chapter' AND fixVersion = '1.0'\",\"expand\":[\"renderedFields\"],\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-333116e5-8074-4345-907d-498a2d62577d.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:01 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31136x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=53C566363C9C05C6A98B612B7376D275; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_7c77575c00bd61d31215d19887c988105500292b_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "18g6ht1", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "333116e5-8074-4345-907d-498a2d62577d", + "persistent" : true, + "insertionIndex" : 14 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-8ef6c7d6-8440-4436-92e8-b3781efab7c4.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-8ef6c7d6-8440-4436-92e8-b3781efab7c4.json new file mode 100644 index 00000000..c48e74d3 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-8ef6c7d6-8440-4436-92e8-b3781efab7c4.json @@ -0,0 +1,38 @@ +{ + "id" : "8ef6c7d6-8440-4436-92e8-b3781efab7c4", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"jql\":\"project = ORDGP AND issuetype = 'Documentation'\",\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-8ef6c7d6-8440-4436-92e8-b3781efab7c4.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:09 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "651x31141x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=3DC2D9F92384E31C3F0C030DF8C67C8A; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_23c2c09cba7d7e4a3644587c6e2c467df5722b1c_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "125r3y8", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "8ef6c7d6-8440-4436-92e8-b3781efab7c4", + "persistent" : true, + "insertionIndex" : 19 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-adaf694c-8d8a-4965-a1a3-1565bba46b3a.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-adaf694c-8d8a-4965-a1a3-1565bba46b3a.json new file mode 100644 index 00000000..21c8b68c --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_api_2_search-adaf694c-8d8a-4965-a1a3-1565bba46b3a.json @@ -0,0 +1,38 @@ +{ + "id" : "adaf694c-8d8a-4965-a1a3-1565bba46b3a", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":[\"assignee\",\"duedate\",\"issuelinks\",\"status\",\"summary\",\"fixVersions\"],\"jql\":\"project = ORDGP AND issuetype = Bug AND status != Done AND fixVersion = '1.0'\",\"expand\":[],\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"startAt\":0,\"maxResults\":1000,\"total\":0,\"issues\":[]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:05 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "651x31139x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=05DFE917E6BDA439FF220672CC4EE5B9; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_fb5a756caefc4840afe5568e33ce4dec6213a5a1_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "cue41j", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "adaf694c-8d8a-4965-a1a3-1565bba46b3a", + "persistent" : true, + "insertionIndex" : 17 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-fddb1109-9bf7-426e-83e9-b79aa2ba554a.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-fddb1109-9bf7-426e-83e9-b79aa2ba554a.json new file mode 100644 index 00000000..d75a5936 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-fddb1109-9bf7-426e-83e9-b79aa2ba554a.json @@ -0,0 +1,33 @@ +{ + "id" : "fddb1109-9bf7-426e-83e9-b79aa2ba554a", + "name" : "rest_platform_11_deltadocgenreports_ordgp_10", + "request" : { + "url" : "/rest/platform/1.1/deltadocgenreports/ORDGP/1.0", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_platform_11_deltadocgenreports_ordgp_10-fddb1109-9bf7-426e-83e9-b79aa2ba554a.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:50:59 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "650x31135x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=2C46DFC273302B3509A73DB7E35CEC88; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_25406c31ddecb9bfdf9dae72c428718d8f283b69_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "67flg8", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "fddb1109-9bf7-426e-83e9-b79aa2ba554a", + "persistent" : true, + "insertionIndex" : 13 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/secure_attachment_552315_552315_image-2022-02-22-11-11-22-023png-63ea691f-d1ed-4ba6-8d7e-91e5f6b9dfee.json b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/secure_attachment_552315_552315_image-2022-02-22-11-11-22-023png-63ea691f-d1ed-4ba6-8d7e-91e5f6b9dfee.json new file mode 100644 index 00000000..390ab34b --- /dev/null +++ b/src/test/resources/wiremock/ordgp/CSD/WIP/jira/mappings/secure_attachment_552315_552315_image-2022-02-22-11-11-22-023png-63ea691f-d1ed-4ba6-8d7e-91e5f6b9dfee.json @@ -0,0 +1,34 @@ +{ + "id" : "63ea691f-d1ed-4ba6-8d7e-91e5f6b9dfee", + "name" : "secure_attachment_552315_552315_image-2022-02-22-11-11-22-023png", + "request" : { + "url" : "/secure/attachment/552315/552315_image-2022-02-22-11-11-22-023.png", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "secure_attachment_552315_552315_image-2022-02-22-11-11-22-023png-63ea691f-d1ed-4ba6-8d7e-91e5f6b9dfee.png", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:11 GMT", + "Content-Type" : "image/png", + "X-AREQUESTID" : "651x31142x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=40F0C6581CFCB77AAEC61D203334C021; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_c0f69cf5819960320d489514ffaceb084e979fee_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1pujjx9", + "Accept-Ranges" : "bytes", + "Content-Disposition" : "inline; filename*=UTF-8''image-2022-02-22-11-11-22-023.png;", + "Cache-control" : "private, max-age=31536000", + "Expires" : "Wed, 31 Dec 1969 23:59:59 GMT" + } + }, + "uuid" : "63ea691f-d1ed-4ba6-8d7e-91e5f6b9dfee", + "persistent" : true, + "insertionIndex" : 20 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-881c9360-7e9d-45c1-91fa-d204670f9753.txt b/src/test/resources/wiremock/ordgp/DTR/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-881c9360-7e9d-45c1-91fa-d204670f9753.txt new file mode 100644 index 00000000..7cdb830f Binary files /dev/null and b/src/test/resources/wiremock/ordgp/DTR/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-881c9360-7e9d-45c1-91fa-d204670f9753.txt differ diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-881c9360-7e9d-45c1-91fa-d204670f9753.json b/src/test/resources/wiremock/ordgp/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-881c9360-7e9d-45c1-91fa-d204670f9753.json new file mode 100644 index 00000000..de650e59 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-881c9360-7e9d-45c1-91fa-d204670f9753.json @@ -0,0 +1,31 @@ +{ + "id" : "881c9360-7e9d-45c1-91fa-d204670f9753", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive", + "request" : { + "url" : "/rest/api/latest/projects/ordgp/repos/ordgp-releasemanager/archive?at=master&format=zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-881c9360-7e9d-45c1-91fa-d204670f9753.txt", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:00 GMT", + "Content-Type" : "application/octet-stream", + "X-AREQUESTID" : "@1POZ2QTx648x1073116x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=848287A6B23335A5E63CE8EA43A59C98; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:48:00 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "1ypjwbe", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : [ "X-AUSERNAME", "X-AUSERID", "Cookie" ], + "X-Content-Type-Options" : "nosniff", + "Content-Disposition" : "attachment; filename=\"ordgp-releasemanager-master@4e693552bfd.zip\"; filename*=UTF-8''ordgp-releasemanager-master%404e693552bfd.zip", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "881c9360-7e9d-45c1-91fa-d204670f9753", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-da5696d4-51b5-4f5c-8771-a06fefa60396.json b/src/test/resources/wiremock/ordgp/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-da5696d4-51b5-4f5c-8771-a06fefa60396.json new file mode 100644 index 00000000..1464b94b --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-da5696d4-51b5-4f5c-8771-a06fefa60396.json @@ -0,0 +1,28 @@ +{ + "id" : "da5696d4-51b5-4f5c-8771-a06fefa60396", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive", + "request" : { + "url" : "/rest/api/latest/projects/ordgp/repos/ordgp-releasemanager/archive?at=workInProgressBranch&format=zip", + "method" : "GET" + }, + "response" : { + "status" : 400, + "body" : "{\"errors\":[{\"context\":null,\"message\":\"'workInProgressBranch' is not a valid ref and may not be archived.\",\"exceptionName\":\"com.atlassian.bitbucket.repository.InvalidRefNameException\",\"refName\":\"workInProgressBranch\"}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:47:59 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx647x1073115x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=D4C72FE27267CBBA048D07A32DB3B758; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:47:59 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "xlgexs", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding" + } + }, + "uuid" : "da5696d4-51b5-4f5c-8771-a06fefa60396", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-3ac26edc-e724-4d8a-b59c-125938b0b9f3.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-3ac26edc-e724-4d8a-b59c-125938b0b9f3.json new file mode 100644 index 00000000..119b223a --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-3ac26edc-e724-4d8a-b59c-125938b0b9f3.json @@ -0,0 +1 @@ +{"maxResults":50,"startAt":0,"total":23,"isLast":true,"values":[{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","fieldId":"assignee","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=","hasDefaultValue":true,"operations":["set"],"defaultValue":{"name":"-1"}},{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Component/s","fieldId":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27522","id":"27522","name":"Technology-backend","description":"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27523","id":"27523","name":"Technology-frontend","description":"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27524","id":"27524","name":"Technology-releasemanager","description":"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27525","id":"27525","name":"Technology-test","description":"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse"}]},{"required":false,"schema":{"type":"number","custom":"com.atlassian.jira.plugin.system.customfieldtypes:float","customId":10002},"name":"Story Points","fieldId":"customfield_10002","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"string","custom":"com.pyxis.greenhopper.jira:gh-sprint","customId":10004},"name":"Sprint","fieldId":"customfield_10004","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"option","custom":"org.opendevstack.jira.plugins.projecttemplate:field.requirement.gamptopic","customId":19318},"name":"Gamp Topic","fieldId":"customfield_19318","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72297","value":"operational requirements","id":"72297","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72298","value":"functional requirements","id":"72298","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72299","value":"data requirements","id":"72299","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72300","value":"technical requirements","id":"72300","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72301","value":"interface requirements","id":"72301","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72302","value":"environment requirements","id":"72302","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72303","value":"performance requirements","id":"72303","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72304","value":"availability requirements","id":"72304","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72305","value":"security requirements","id":"72305","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72306","value":"maintenance requirements","id":"72306","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72307","value":"regulatory requirements","id":"72307","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72308","value":"roles","id":"72308","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72309","value":"compatibility","id":"72309","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72310","value":"procedural constraints","id":"72310","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72311","value":"overarching requirements","id":"72311","disabled":false}]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19319},"name":"Req Acceptance Criteria","fieldId":"customfield_19319","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","customId":19320},"name":"FuncSpec Summary","fieldId":"customfield_19320","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19321},"name":"FuncSpec Description","fieldId":"customfield_19321","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19322},"name":"FuncSpec Acceptance Criteria","fieldId":"customfield_19322","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","customId":19323},"name":"ConfigSpec Summary","fieldId":"customfield_19323","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19324},"name":"ConfigSpec Description","fieldId":"customfield_19324","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"option","custom":"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes","customId":19325},"name":"EDP Definition of Ready for Story","fieldId":"customfield_19325","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72002","value":"Risks defined","id":"72002","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72003","value":"Acceptance Tests Ready for Implementation","id":"72003","disabled":false}]},{"required":false,"schema":{"type":"array","items":"option","custom":"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes","customId":19326},"name":"EDP Definition of Done for Story","fieldId":"customfield_19326","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72017","value":"FuncSpec Defined","id":"72017","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72018","value":"ConfigSpec Defined","id":"72018","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72019","value":"All Risks Approved","id":"72019","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72020","value":"All Tests Defined","id":"72020","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72021","value":"All Tests Executed Successful","id":"72021","disabled":false}]},{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","fieldId":"description","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix Version/s","fieldId":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","name":"1.0","archived":false,"released":false,"projectId":30107}]},{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked Issues","fieldId":"issuelinks","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add"]},{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue Type","fieldId":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10001","id":"10001","description":"Created by Jira Software - do not edit or delete. Issue type for a user story.","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10315&avatarType=issuetype","name":"Story","subtask":false,"avatarId":10315}]},{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","fieldId":"labels","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","fieldId":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/1","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/2","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/3","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/4","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/5","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/10400","iconUrl":"https://jira-dev.biscrum.com/images/icons/priority_major.gif","name":"Major","id":"10400"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/10300","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg","name":"Critical","id":"10300"}],"defaultValue":{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/4","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/low.svg","name":"Low","id":"4"}},{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","fieldId":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}}]},{"required":true,"schema":{"type":"user","system":"reporter"},"name":"Reporter","fieldId":"reporter","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=","hasDefaultValue":false,"operations":["set"]},{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","fieldId":"summary","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"version","system":"versions"},"name":"Affects Version/s","fieldId":"versions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","name":"1.0","archived":false,"released":false,"projectId":30107}]}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_search-22db5e0a-4e47-48e7-b59b-f96154502dd0.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_search-22db5e0a-4e47-48e7-b59b-f96154502dd0.json new file mode 100644 index 00000000..09c4e144 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_search-22db5e0a-4e47-48e7-b59b-f96154502dd0.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":37,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896665","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896665","key":"ORDGP-37","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5cda315d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@547ae0f6[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@674d9792[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6433a6dd[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7bfdaaa8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@119d0c20[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1ae7f886[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@639ba049[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75a5fe78[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@ca000e0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2926fa3a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@17818ebf[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VSR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VSR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui1g:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Summary Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896664","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896664","key":"ORDGP-36","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6a6d3807[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5058f02e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b9014e0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5cde443c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@297b6a11[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@147f666e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5f835715[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7152077d[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@38bc0a4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6ca88aad[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29d653d2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@485ec07a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:REP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-REP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui18:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Restore/Recovery Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896663","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896663","key":"ORDGP-35","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2a92083d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@e379220[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7e7c8bb8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4c68b0c5[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@111e0e0a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@78e516d6[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@625e6339[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6b39192f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ab6341c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5a35c03a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4be337ee[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6830afdc[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:BUP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-BUP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui10:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Backup Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896662","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896662","key":"ORDGP-34","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@77634b45[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4085838c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7fa92ea7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@13dc5b3d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@77932471[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@e21f7db[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@38cb3cae[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@49bf8d39[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@276198d3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@26ff2ccb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47b04af6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@72d3d17c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0s:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System Monitoring Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896661","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896661","key":"ORDGP-33","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@45cb513c[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@12254815[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@46e37068[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7ebeed41[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1220c92[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2c776c6c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@71ca29ba[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@78171627[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69c0c32b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7ec3c673[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5e64a7e8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1e02342d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:P11"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-P11","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0k:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Part 11 Compliance Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896660","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896660","key":"ORDGP-32","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@34ddc75f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@60b74b30[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1fdcddea[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@45e8ebea[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@487d4f21[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5b873a5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7cf2cd75[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7e47ceba[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5ce18214[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1a02e776[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@70711826[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@30032a8c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0c:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Infrastructure Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896659","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896659","key":"ORDGP-31","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7f159a93[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@f9e8f5c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6d8c76a6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1693f024[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@664b5515[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2d8952ba[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@23be28eb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2aa5ee68[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@167af5d4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@71016923[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@232aee98[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@26f9823b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui04:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896658","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896658","key":"ORDGP-30","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@16422e92[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@472ac6ac[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b87d44a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5a896430[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@328cf070[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4cebba84[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@39bb02d7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@28025934[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7dd83334[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6c769991[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@dba9372[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@37cbb008[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:AAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-AAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Application Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896657","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896657","key":"ORDGP-29","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@183ab5a3[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f492e18[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ef287d4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@28ed41fc[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@67cde8cf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@61ce2c54[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7b18cb9e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@393887a0[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@31bb8bd8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2107bd37[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1cfed6b2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6186570a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TRC"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:16.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TRC","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Traceability Matrix","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896656","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896656","key":"ORDGP-28","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:43.183+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@793bc8a6[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7505d2b3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d199c56[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5652570c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f8387ec[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@45932fd3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@429f01b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@40072da5[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33c86eae[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6ff922b3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@241bae7f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5d88c55c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896655","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896655","key":"ORDGP-27","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1c0fb9f5[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7c48a333[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ac2fd35[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@13aa9265[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76caa794[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@24d62a3d[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@19c050c7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5ebed020[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d6b2a64[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@68796036[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@73245396[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5bb3a202[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896654","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896654","key":"ORDGP-26","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:13.192+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3bcee9[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@289044a0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7b58f2b3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@51471c3c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@41fede82[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@35a3fbcc[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@9524aa1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@609d014b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@57a0d914[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7d7725b7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@666b6ffa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6ef4ad25[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:53.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896653","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896653","key":"ORDGP-25","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6d3e9b2b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b5d0b6b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5372f6aa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1037b9fc[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@51a6c709[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7d5ecafd[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@39ddb45a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@140802c4[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@737101c3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@78732472[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c583042[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7892092f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:34.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhys:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896652","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896652","key":"ORDGP-24","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@39ba62b6[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3cbdcba5[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@23fa98ed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@71c88fd4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a0f4c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3676d9ed[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@413c123e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@74bf83e2[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@248f8256[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@24b68e9b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5bad5d1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@d92e617[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896651","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896651","key":"ORDGP-23","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@66353f7[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f5e4ec4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5725c7c7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5a008b89[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@37385755[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@525598d0[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b3776a2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7535ec8e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@429f82[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7e2f0442[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e3def43[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@34b63f96[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896650","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896650","key":"ORDGP-22","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@31d485af[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35470620[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@19213ef9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@14da5dfb[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@308986fa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@55f8bf62[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45be95d2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@34d3d1b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f0fd5de[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6f9c66f2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5ebd7ed6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@347235ff[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:14:28.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhy4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896649","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896649","key":"ORDGP-21","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:33:19.170+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@683875ff[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@333ab9ad[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2070ccd9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4661feab[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@27d60700[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4a4936ff[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c792d6b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@25a412e9[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32ddff5a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3120d930[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1497a80a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@11a1c32b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:52.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896648","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896648","key":"ORDGP-20","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@145e11fb[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7738eb85[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2a501a18[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1a84a814[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@546efad5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@32b27105[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@18182d91[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@27e3e28e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f80cf5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@25637f36[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7cceaaae[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4401d02b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:54.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896647","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896647","key":"ORDGP-19","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@85ae324[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@645f7c37[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35607fcd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2ac10392[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1cfbdc78[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1199fa58[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@273171b1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5ce3b56[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47943f8b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1901461b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35111073[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4171890c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:08:41.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896646","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896646","key":"ORDGP-18","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@55d277d9[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6d1138c3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ced852a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@685e7354[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@231ba92[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@727e7a3f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@12da658f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@9857053[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6efaedb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7c183bb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@46f678d1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@64539fb4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:00.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896645","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896645","key":"ORDGP-17","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:34.116+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@709b7e0[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59bd8ad3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@339f249d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6c1cb2f[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14cdbf4a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@741993bf[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ee8ea6d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3678c62c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f361846[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@770afe74[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ec8d97a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7e712729[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896644","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896644","key":"ORDGP-16","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6da4d531[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c1578c7[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32834e1a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5537dbcd[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@c6fb710[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5d7188b2[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75aafe98[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1ea8ba53[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f8e59a1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3eeb68fa[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1c171f81[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@47364472[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhws:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896643","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896643","key":"ORDGP-15","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@698e6617[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f7741ef[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@564c51e9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3610af6[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3023eb68[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3d039011[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@9744d41[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2c9d023[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d1e03b9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@cbc8d13[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2789c780[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6b8d539a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:06:25.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896642","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896642","key":"ORDGP-14","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4ca8dcd3[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@68a76956[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@19b5e3eb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4a0bd452[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4666aca2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5a53e697[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c4ffc8d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@78f20c12[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b02ac12[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4ea094bb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d98b276[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3562b74b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SSDS"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:17.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SSDS","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System and Software Design Specification including Source Code Review","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896641","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896641","key":"ORDGP-13","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:20.501+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@72c8aa69[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@682f9e78[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b6dd018[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4fa54953[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@765d6d33[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@17ddee1f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@228501ec[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@478f3b3e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a26e209[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@22f35244[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2873bd97[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@169b256c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:48.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhw4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896640","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896640","key":"ORDGP-12","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1cbcdbe1[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@60912675[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@64a367e2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@de8578d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3d29de5a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@75fbaf04[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a985a2e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@458330cf[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@36abed2b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1e00f775[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@568187b1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@ad8c0e6[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:30.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896639","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896639","key":"ORDGP-11","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:34:49.813+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2683e8a6[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ad49d2f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4cdd6a2d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@52feab7c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@512b2521[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@37b88821[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@101310f9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3791eccc[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f9bd532[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4c11bb60[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@448deec3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7c428d12[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:15:07.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896638","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896638","key":"ORDGP-10","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:30:53.289+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@cf2e02f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@20d77707[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1fdb10fe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@42f234d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1e60a6c6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1925b56[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4689e77a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3bc191ad[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@200c5685[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@33d7e139[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3a6c620e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@d17d017[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:05:18.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL for Dev Preview","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Developer Preview","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896637","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896637","key":"ORDGP-9","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-31T17:42:51.174+0200","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@60634cc9[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@258ef1f3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b208360[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1973e29e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@20dfdba5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6de9800c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@229d3552[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@247c448d[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7aa0a154[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5b68a7ec[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@10943e76[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@568a58c5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:51.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896636","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896636","key":"ORDGP-8","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:04.572+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3081b6f5[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6cb690d[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78810ea0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@255f93bc[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@67e0c4c5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7389dbad[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@38d3f72[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5a168ecc[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b31afa7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6d85fdf[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6cc486d9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@24a0563[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:59.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896635","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896635","key":"ORDGP-7","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6a8ec52[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c649e31[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@22a1f773[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4adc6000[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14332a5f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2541767c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8f617c8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2183aab6[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c6f0d0b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2336c6c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ac363b5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6a9a841[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:37.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhus:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896634","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896634","key":"ORDGP-6","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@15ae35a8[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@245516ef[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5457516f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5839c764[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11cc8da3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@20c0233f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4e72d261[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@58e63e2c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2db21106[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@c4a1654[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@54732c66[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3d8d7f9a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RA"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:07:33.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RA","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Risk Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896633","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896633","key":"ORDGP-5","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:34:12.755+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1dd99698[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79efaee7[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@21e3c07f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@257fda32[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@776761c6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@781aa8b5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47457ff1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1cb08361[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5015a860[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7de7fdd7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11b1af6d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@9028db1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSD"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:03:55.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSD","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Specification Document","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896632","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896632","key":"ORDGP-4","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@70e44c93[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@15ef24af[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45c8f0f4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@29ee7ebe[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@55f439ed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@179e2db5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@155330e2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4f12b778[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b5dc426[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5d48a57d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@51905a16[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@b638e2b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhu4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Client Site Qualification","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896631","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896631","key":"ORDGP-3","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6748ff59[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76d8cbe6[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4e43ca1e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7ef4bfcb[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2f50dfd9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4bf08c0b[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1bb3bc51[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4062420b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69e5f3c9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@263aba2a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@206ddb88[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@724db794[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RAL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RAL","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Role Assignment Log","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896630","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896630","key":"ORDGP-2","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@282ba02e[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5e87a38e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@49c1db3c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2a398a59[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@53ac2145[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1e4d395f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59921991[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3f9f2bb8[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d8b9307[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7a7bd428[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@336c1467[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@75e83b59[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhto:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Supplier Assessment Mail Questionnaire","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896629","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896629","key":"ORDGP-1","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6b727423[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7975a1fa[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29939a38[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7d3d9481[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c26810f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7cf47174[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@49036688[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@588b7ab5[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7db652[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5fdd18f8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d3812ad[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@ee59f6d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:54.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_search-866043c0-5dd0-42c7-89a8-1b34ae2cf079.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_search-866043c0-5dd0-42c7-89a8-1b34ae2cf079.json new file mode 100644 index 00000000..0a0d2a6f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_search-866043c0-5dd0-42c7-89a8-1b34ae2cf079.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":85,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896750","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896750","key":"ORDGP-122","fields":{"summary":"Document History","customfield_19901":"3","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TRC"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896749","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896749","key":"ORDGP-121","fields":{"summary":"Document History","customfield_19901":"1","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TCP","Doc:TCR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896748","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896748","key":"ORDGP-120","fields":{"summary":"Risk Assessment","customfield_19901":"4","customfield_19902":"{color:blue}There have been no critical failures observed in the testing. For failed test cases no unacceptable risks have been identified. No follow-up actions are required.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

There have been no critical failures observed in the testing. For failed test cases no unacceptable risks have been identified. No follow-up actions are required.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896747","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896747","key":"ORDGP-119","fields":{"summary":"Traceability Matrix","customfield_19901":"3.6","customfield_19902":"{color:blue}The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix has been updated prior to execution of the test cases and has been archived in the validation archive (add a reference).{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix has been updated prior to execution of the test cases and has been archived in the validation archive (add a reference).

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896746","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896746","key":"ORDGP-118","fields":{"summary":"Non-Functional Testing Results","customfield_19901":"3.5.2","customfield_19902":"{color:blue}Non-Functional testing was performed according to the approved functional / requirements test plan (final v1.0), approved on .\n\nThe test execution run of the non-functional test cases was performed on Mar 03. All the test cases of the project were executed without significant failures.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Non-Functional testing was performed according to the approved functional / requirements test plan (final v1.0), approved on <date>.
\n
\nThe test execution run of the non-functional test cases was performed on Mar 03. All the test cases of the project were executed without significant failures.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896745","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896745","key":"ORDGP-117","fields":{"summary":"Discrepancy Log","customfield_19901":"3.3","customfield_19902":"{color:blue}All failures and problems which have been observed during testing have been collected in a discrepancy log. The discrepancy log is attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All failures and problems which have been observed during testing have been collected in a discrepancy log. The discrepancy log is attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896744","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896744","key":"ORDGP-116","fields":{"summary":"Responsibilities and Signature Resource Log","customfield_19901":"3.2","customfield_19902":"{color:blue}All Testers and Test Administrators have signed the signature resource log prior to the start of testing activities. The signature resource log is attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All Testers and Test Administrators have signed the signature resource log prior to the start of testing activities. The signature resource log is attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896743","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896743","key":"ORDGP-115","fields":{"summary":"Training","customfield_19901":"3.1","customfield_19902":"{color:blue}All Testers and Test Administrators have been trained prior to the start of testing activities. Two classroom trainings have been performed on 23-Apr-2001 in Ingelheim and on 26-Apr-2011 in Ridgefield. Copies of the training records and agenda are attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All Testers and Test Administrators have been trained prior to the start of testing activities. Two classroom trainings have been performed on 23-Apr-2001 in Ingelheim and on 26-Apr-2011 in Ridgefield. Copies of the training records and agenda are attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896742","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896742","key":"ORDGP-114","fields":{"summary":"Testing Environment","customfield_19901":"2","customfield_19902":"{color:blue}All integration and acceptance test cases have been executed in the qualified validation environment as defined in the combined functional / requirements testing plan (ref).{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All integration and acceptance test cases have been executed in the qualified validation environment as defined in the combined functional / requirements testing plan (ref).

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896741","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896741","key":"ORDGP-113","fields":{"summary":"Purpose","customfield_19901":"1","customfield_19902":"{color:blue}The purpose of this document is to report on testing activities that were performed according to the functional / requirements testing plan, to summarize and asses all failed and skipped test cases, and decide if the System name can be formally released for installation in production environment.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The purpose of this document is to report on testing activities that were performed according to the functional / requirements testing plan, to summarize and asses all failed and skipped test cases, and decide if the System name can be formally released for installation in production environment.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896740","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896740","key":"ORDGP-112","fields":{"summary":"Document History","customfield_19901":"8","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896739","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896739","key":"ORDGP-111","fields":{"summary":"Reference Documents","customfield_19901":"7","customfield_19902":null,"issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896738","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896738","key":"ORDGP-110","fields":{"summary":"Definitions","customfield_19901":"6.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896737","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896737","key":"ORDGP-109","fields":{"summary":"Abbreviations","customfield_19901":"6.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896736","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896736","key":"ORDGP-108","fields":{"summary":"Traceability Matrix","customfield_19901":"9","customfield_19902":"{color:blue}The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix will be updated before test execution to include all functional and requirements test cases.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix will be updated before test execution to include all functional and requirements test cases.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896735","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896735","key":"ORDGP-107","fields":{"summary":"Test Cases","customfield_19901":"8.1","customfield_19902":"||Risk Priority||Level of Testing||\n|*3*|{color:blue}No testing required{color}\n |\n|*2*|{color:blue}Testing of functionality or requirements without challenge/boundary tests{color}\n |\n|*1*|{color:blue}Full test of requirement or functionality including challenge/boundary tests (e.g. invalid, borderline or missing input values, out-of-order execution of functions, disconnected interfaces etc.){color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Risk PriorityLevel of Testing
3No testing required
2Testing of functionality or requirements without challenge/boundary tests
1Full test of requirement or functionality including challenge/boundary tests (e.g. invalid, borderline or missing input values, out-of-order execution of functions, disconnected interfaces etc.)
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896734","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896734","key":"ORDGP-106","fields":{"summary":"Scope of Non-Functional Testing","customfield_19901":"7.2.2","customfield_19902":"{color:blue}The following aspects of system performance will be covered in requirements test cases:\n * Concurrent access of 10 users accessing the same study (including data entry, modification of data, and deletion of data)\n * Remote access via low-bandwidth connections, simulation slow DSL connections down to 1 Mbit/s and Ping time up to 1000ms. A WAN emulator will be used to simulate the exact conditions as specified in the test cases.\n\nPerformance testing will be done in the validation environment. Since the hardware of the future production environment is more powerful the risk of using the validation environment for performance testing is low and acceptable.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following aspects of system performance will be covered in requirements test cases:
\n * Concurrent access of 10 users accessing the same study (including data entry, modification of data, and deletion of data)
\n * Remote access via low-bandwidth connections, simulation slow DSL connections down to 1 Mbit/s and Ping time up to 1000ms. A WAN emulator will be used to simulate the exact conditions as specified in the test cases.
\n
\nPerformance testing will be done in the validation environment. Since the hardware of the future production environment is more powerful the risk of using the validation environment for performance testing is low and acceptable.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896733","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896733","key":"ORDGP-105","fields":{"summary":"Scope of Functional Testing","customfield_19901":"7.1.2","customfield_19902":"{color:blue}The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.\n * Functional testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.\n * Configuration specification will not be tested on a functional level, but only implicitly in acceptance test cases.\n * Standard product functionality will not be tested in functional testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Functional testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on a functional level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in functional testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896732","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896732","key":"ORDGP-104","fields":{"summary":"Scope of Integration Testing","customfield_19901":"6.2","customfield_19902":"{color:blue}The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.\n * Integration testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.\n * Configuration specification will not be tested on an integration level, but only implicitly in acceptance test cases.\n * Standard product functionality will not be tested in integration testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Integration testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on an integration level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in integration testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896731","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896731","key":"ORDGP-103","fields":{"summary":"Test Procedure 2: Verification of Training Documentation","customfield_19901":"5.2","customfield_19902":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dignissim finibus imperdiet. Fusce hendrerit luctus purus, et suscipit nisl porttitor in. Mauris pellentesque vestibulum tristique. Integer vel velit id felis dictum auctor id et ligula. Fusce consequat vehicula mattis. Duis non hendrerit felis, ut pellentesque metus. Donec egestas leo quis viverra pharetra. Suspendisse eu nulla et mi eleifend varius. Donec ullamcorper aliquet magna sed congue. Nam nec neque ac diam interdum dictum nec ac urna. Mauris egestas urna nibh, facilisis lacinia ipsum volutpat vitae. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce enim elit, venenatis non egestas sed, vestibulum at ante.","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dignissim finibus imperdiet. Fusce hendrerit luctus purus, et suscipit nisl porttitor in. Mauris pellentesque vestibulum tristique. Integer vel velit id felis dictum auctor id et ligula. Fusce consequat vehicula mattis. Duis non hendrerit felis, ut pellentesque metus. Donec egestas leo quis viverra pharetra. Suspendisse eu nulla et mi eleifend varius. Donec ullamcorper aliquet magna sed congue. Nam nec neque ac diam interdum dictum nec ac urna. Mauris egestas urna nibh, facilisis lacinia ipsum volutpat vitae. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce enim elit, venenatis non egestas sed, vestibulum at ante.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896730","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896730","key":"ORDGP-102","fields":{"summary":"Operational Qualification Activities and Training","customfield_19901":"5","customfield_19902":"{color:blue}Before test execution the testers will receive formal training on:\n * the testing process, including good documentation practice\n * a basic end user training for System name\n * an overview of the business processes supported by System name\n\nThe training will be documented and copies of the training records will be attached to the testing documentation package.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Before test execution the testers will receive formal training on:
\n * the testing process, including good documentation practice
\n * a basic end user training for System name
\n * an overview of the business processes supported by System name
\n
\nThe training will be documented and copies of the training records will be attached to the testing documentation package.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896729","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896729","key":"ORDGP-101","fields":{"summary":"Validation Environment","customfield_19901":"10","customfield_19902":"{color:blue}Description of the Environment of the system that will be used for test execution.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Description of the Environment of the system that will be used for test execution.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896728","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896728","key":"ORDGP-100","fields":{"summary":"Document History","customfield_19901":"15","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896727","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896727","key":"ORDGP-99","fields":{"summary":"Abbreviations","customfield_19901":"13.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896726","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896726","key":"ORDGP-98","fields":{"summary":"Definitions","customfield_19901":"13.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896725","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896725","key":"ORDGP-97","fields":{"summary":"Functional and Requirements Testing Documentation","customfield_19901":"12","customfield_19902":null,"issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896724","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896724","key":"ORDGP-96","fields":{"summary":"Scope","customfield_19901":"2","customfield_19902":"{color:blue}The Functional Testing of SCHEMA ST4 will include the standard functionalities of the system and the user account management. The Requirements Testing covers the workflow configuration and functionalities of SCHEMA ST4 according to the business process of the creation, management and handover of preparation specific texts.\n\nThe components of SCHEMA ST4 that will be challenged during this Functions / Requirements Testing are as follows:\n * Rich/Architect client application software\n * Workflow Module\n * Interface to MS Word\n\nMS Word functionalities will not be tested in this Functional / Requirements Testing.\n\nThe level of testing activities is based on the risk class as defined in the risk analysis (ref) for this system. Detailed definitions of the required depth and level of detail will be defined in the sections for functional and requirements testing.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The Functional Testing of SCHEMA ST4 will include the standard functionalities of the system and the user account management. The Requirements Testing covers the workflow configuration and functionalities of SCHEMA ST4 according to the business process of the creation, management and handover of preparation specific texts.
\n
\nThe components of SCHEMA ST4 that will be challenged during this Functions / Requirements Testing are as follows:
\n * Rich/Architect client application software
\n * Workflow Module
\n * Interface to MS Word
\n
\nMS Word functionalities will not be tested in this Functional / Requirements Testing.
\n
\nThe level of testing activities is based on the risk class as defined in the risk analysis (ref) for this system. Detailed definitions of the required depth and level of detail will be defined in the sections for functional and requirements testing.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896723","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896723","key":"ORDGP-95","fields":{"summary":"Reference Documents","customfield_19901":"9","customfield_19902":null,"issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896722","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896722","key":"ORDGP-94","fields":{"summary":"Abbreviations","customfield_19901":"8.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896721","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896721","key":"ORDGP-93","fields":{"summary":"Definitions","customfield_19901":"8.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896720","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896720","key":"ORDGP-92","fields":{"summary":"Scope","customfield_19901":"2","customfield_19902":"{color:blue}Hardware verification is out of scope, similar runtime platform verification, because those are qualified.\n||Runtime Platform||Qualification Summary Report||\n|BI-IT-CONTAINER-PAAS|tbd|{color}","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Hardware verification is out of scope, similar runtime platform verification, because those are qualified.
\n||Runtime Platform||Qualification Summary Report||
\n|BI-IT-CONTAINER-PAAS|tbd|

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896719","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896719","key":"ORDGP-91","fields":{"summary":"Configuration database CMDB","customfield_19901":"12.2","customfield_19902":"||Instructions||Expected result / Evidence||Observed result||Comments||\r\n|*Role assignment:*\r\n Check if name of contact persons are entered to CMDBWeb: IT System Lead Validation Manager System Owner CSV&C function|!image-2022-02-22-11-12-21-105.png|width=676,height=402!|RAL is required and available\r\n ☐ Yes ☐ No \r\n CMDB entries are correct\r\n ☐ Yes ☐ No| |\r\n|*Related components:*\r\n Check if components are related to Environments as described in System Design Specification.|Components are related to Environments as listed in System Design Specification|CMDB entries are correct\r\n ☐ Yes ☐ No| |\r\n|*Emergency class:*\r\n Check if emergency class is correctly set according to the related specification document|Emergency class per environment (env) is correctly set\r\n \r\n _Productive env: class_ \r\n _Validation env: class_ \r\n _Training env: class_|_Productive env:_ \r\n _Validation env:_ \r\n _Training env:_| |\r\n|*GxP relevance*|Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.|Actual setting in CMDB:| |\r\n|*Support category:*\r\n Check if support category is correctly set according to the related specification document|Support category per environment (env) is correctly set\r\n \r\n _Productive env: class_ \r\n _Validation env: class_ \r\n _Training env: class_|_Productive env:_ \r\n _Validation env:_ \r\n _Training env:_| |","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InstructionsExpected result / EvidenceObserved resultComments
Role assignment:
\n Check if name of contact persons are entered to CMDBWeb: IT System Lead Validation Manager System Owner CSV&C function
RAL is required and available
\n ☐ Yes ☐ No
\n CMDB entries are correct
\n ☐ Yes ☐ No
 
Related components:
\n Check if components are related to Environments as described in System Design Specification.
Components are related to Environments as listed in System Design SpecificationCMDB entries are correct
\n ☐ Yes ☐ No
 
Emergency class:
\n Check if emergency class is correctly set according to the related specification document
Emergency class per environment (env) is correctly set
\n <enter defined class number per environment>
\n Productive env: class
\n Validation env: class
\n Training env: class
Productive env:
\n Validation env:
\n Training env:
 
GxP relevanceSuspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.Actual setting in CMDB: 
Support category:
\n Check if support category is correctly set according to the related specification document
Support category per environment (env) is correctly set
\n <enter defined category number per environment>
\n Productive env: class
\n Validation env: class
\n Training env: class
Productive env:
\n Validation env:
\n Training env:
 
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896718","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896718","key":"ORDGP-90","fields":{"summary":"Operational documents on system level","customfield_19901":"12.1","customfield_19902":"{color:blue}Operational documents at system level:\n\n*System level monitoring:* {color}\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|Theplatform that runs ODS based applications|* Plan ID: ...\n* Release date:\n* Report ID: ....\n* Release date:|\n \n*System level backup :*\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ... \n* Release date:\n* Report ID: ....\n* Release date: |\n\n {color:blue}*System level restore/recovery:* {color}\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ... \n* Release date:\n* Report ID: .... \n* Release date:\n* |\n\n *System Operational instructions**:*\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ...\n* Release date:\n* Report ID: ....\n* Release date:\n* |\n\n*Service Agreement :*\n||Config Item||Description||Items Doc Id||\n| | |* Document ID: ...\n* Release date:|\n\n*AAP/IAP/TAP* *:*\n||Config Item||Description||Items Doc Id||\n| | |* Document ID: ... \n* Release date:|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Operational documents at system level:
\n
\nSystem level monitoring:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASTheplatform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

System level backup :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

System level restore/recovery:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n\t
  • \n
\n
\n
\n\n\n

System Operational instructions:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n\t
  • \n
\n
\n
\n\n\n

Service Agreement :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id
  
    \n\t
  • Document ID: ...
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

AAP/IAP/TAP :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id
  
    \n\t
  • Document ID: ...
  • \n\t
  • Release date:
  • \n
\n
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896717","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896717","key":"ORDGP-89","fields":{"summary":"Document History","customfield_19901":"10","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896716","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896716","key":"ORDGP-88","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896715","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896715","key":"ORDGP-87","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":null,"issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896714","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896714","key":"ORDGP-86","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896713","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896713","key":"ORDGP-85","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896712","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896712","key":"ORDGP-84","fields":{"summary":"Communication and Organization Tasks","customfield_19901":"3.4","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896711","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896711","key":"ORDGP-83","fields":{"summary":"Document History","customfield_19901":"12","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896710","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896710","key":"ORDGP-82","fields":{"summary":"Reference Documents","customfield_19901":"11","customfield_19902":null,"issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896709","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896709","key":"ORDGP-81","fields":{"summary":"Abbreviations","customfield_19901":"10.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896708","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896708","key":"ORDGP-80","fields":{"summary":"Definitions","customfield_19901":"10.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896707","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896707","key":"ORDGP-79","fields":{"summary":"System Description","customfield_19901":"3.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896706","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896706","key":"ORDGP-78","fields":{"summary":"Introduction","customfield_19901":"1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896705","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896705","key":"ORDGP-77","fields":{"summary":"System Design Overview","customfield_19901":"2.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896704","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896704","key":"ORDGP-76","fields":{"summary":"Software Design Overview","customfield_19901":"2.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896703","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896703","key":"ORDGP-75","fields":{"summary":"Source Code Review Overview","customfield_19901":"2.3","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896702","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896702","key":"ORDGP-74","fields":{"summary":"System Design Profile","customfield_19901":"3.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896701","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896701","key":"ORDGP-73","fields":{"summary":"Interfaces between Modules","customfield_19901":"3.2.2","customfield_19902":"||Interface||Between Module||And Module||Purpose||\n|{color:blue}Interface A{color}|{color:blue}backend{color}|{color:blue}frontend{color}| |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InterfaceBetween ModuleAnd ModulePurpose
Interface Abackendfrontend 
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896700","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896700","key":"ORDGP-72","fields":{"summary":"Interfaces to External Systems","customfield_19901":"3.2.3","customfield_19902":"||Interface||Between Module||And External System||Purpose||\n|{color:blue}BI-IF-{color}|{color:blue}backend{color}| | |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InterfaceBetween ModuleAnd External SystemPurpose
BI-IF-backend  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896699","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896699","key":"ORDGP-71","fields":{"summary":"System Diagram","customfield_19901":"3.2.4","customfield_19902":"{color:blue}< A system diagram to graphically represent the module and interface information should be included here. > - Only if different from the diagram in the 2.1 section{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< A system diagram to graphically represent the module and interface information should be included here. > - Only if different from the diagram in the 2.1 section

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896698","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896698","key":"ORDGP-70","fields":{"summary":"Architecture of the System","customfield_19901":"4","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896697","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896697","key":"ORDGP-69","fields":{"summary":"Utilisation of Existing Infrastructure Systems","customfield_19901":"5.3","customfield_19902":"||Name of Infrastructure System||Documentation Reference||\n|_{color:blue}BI-IT-APPL-LOAD-BALANCING{color}_\n |_{color:blue}ITEMS doc ID 20108828{color}_\n |\n|_{color:blue}BI-IT-AD{color}_\n |_{color:blue}ITEMS doc ID 20095172{color}_|\n|_{color:blue}BI-RT-WINDOWSSERVER{color}_\n |_{color:blue}Infrastructure Release Design and Management ITEMS doc ID 20184916{color}_\n |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name of Infrastructure SystemDocumentation Reference
BI-IT-APPL-LOAD-BALANCING
ITEMS doc ID 20108828
BI-IT-AD
ITEMS doc ID 20095172
BI-RT-WINDOWSSERVER
Infrastructure Release Design and Management ITEMS doc ID 20184916
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896696","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896696","key":"ORDGP-68","fields":{"summary":"Utilisation of Existing Infrastructure Services","customfield_19901":"5.4","customfield_19902":"||Name of Infrastructure Service||Documentation Reference||\n|{color:blue}_Monitoring_{color}| {color:blue}_Standard Monitoring (Baseline Monitoring) on component level is sufficient_{color}\n{color:blue}_System specific Monitoring Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}|\n|{color:blue}_Backup_{color}|{color:blue}_Standard Backup on component level is sufficient_{color}\n{color:blue}_System specific Backup Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}\n{color:blue}_**_{color}|\n|{color:blue}_Restore & Recovery_{color}|{color:blue}_Standard Restore & Recovery on component level is sufficient_{color}\n{color:blue}_System specific Restore & Recovery Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name of Infrastructure ServiceDocumentation Reference
Monitoring Standard Monitoring (Baseline Monitoring) on component level is sufficient
\nSystem specific Monitoring Plan required
\nITEMS doc ID ?..
BackupStandard Backup on component level is sufficient
\nSystem specific Backup Plan required
\nITEMS doc ID ?..
\n**
Restore & RecoveryStandard Restore & Recovery on component level is sufficient
\nSystem specific Restore & Recovery Plan required
\nITEMS doc ID ?..
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896695","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896695","key":"ORDGP-67","fields":{"summary":"Development Environment","customfield_19901":"6.1","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896694","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896694","key":"ORDGP-66","fields":{"summary":"QA/Test Environment","customfield_19901":"6.2","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896693","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896693","key":"ORDGP-65","fields":{"summary":"Training Environment","customfield_19901":"6.3","customfield_19902":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.\r\n Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.\r\n\r\nAliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\nMorbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.\r\n\r\n!image-2022-02-22-11-12-54-300.png|width=842,height=501!","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.
\n Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

\n\n

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

\n\n

Morbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.

\n\n

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896692","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896692","key":"ORDGP-64","fields":{"summary":"Environmental Conditions","customfield_19901":"7","customfield_19902":"{color:blue}< Describe the environmental conditions required for the system. A reference to an existing qualified computer room may be given. The following conditions should be considered: e.g. temperature, humidity, power conditions, physical security, etc. >{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< Describe the environmental conditions required for the system. A reference to an existing qualified computer room may be given. The following conditions should be considered: e.g. temperature, humidity, power conditions, physical security, etc. >

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896691","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896691","key":"ORDGP-63","fields":{"summary":"Software Design Principles","customfield_19901":"8","customfield_19902":"{color:blue}*<* The principles that may be included are:{color}\n* {color:blue}General layout rules for windows and reports{color}\n* {color:blue}Audit trail implementation{color}\n* {color:blue}Access control measures{color}\n* {color:blue}User administration{color}\n* {color:blue}Function key assignments{color}\n* {color:blue}Minimum requirements (resources) needed for the application to run properly, both hardware (e.g. storage space) as well as software (such as operating system, drivers).>{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< The principles that may be included are:

\n
    \n\t
  • General layout rules for windows and reports
  • \n\t
  • Audit trail implementation
  • \n\t
  • Access control measures
  • \n\t
  • User administration
  • \n\t
  • Function key assignments
  • \n\t
  • Minimum requirements (resources) needed for the application to run properly, both hardware (e.g. storage space) as well as software (such as operating system, drivers).>
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896690","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896690","key":"ORDGP-62","fields":{"summary":"System Data","customfield_19901":"9","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896689","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896689","key":"ORDGP-61","fields":{"summary":"Coding Review Results","customfield_19901":"12","customfield_19902":"{color:blue}< Identify the outcome of coding review. Identify standards that were not met and their corrective actions. The corrective actions should include evidence of agreement by developer and reviewer. >{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< Identify the outcome of coding review. Identify standards that were not met and their corrective actions. The corrective actions should include evidence of agreement by developer and reviewer. >

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896688","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896688","key":"ORDGP-60","fields":{"summary":"Definitions","customfield_19901":"13.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896687","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896687","key":"ORDGP-59","fields":{"summary":"Abbreviations","customfield_19901":"13.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896686","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896686","key":"ORDGP-58","fields":{"summary":"Document History","customfield_19901":"15","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896685","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896685","key":"ORDGP-57","fields":{"summary":"Reference Documents","customfield_19901":"14","customfield_19902":"* _{color:blue}Reference document 1{color}_\n* _{color:blue}Reference document 2{color}_","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
    \n\t
  • Reference document 1
  • \n\t
  • Reference document 2
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896684","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896684","key":"ORDGP-56","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896683","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896683","key":"ORDGP-55","fields":{"summary":"Reference Document","customfield_19901":"6","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:DTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896682","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896682","key":"ORDGP-54","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:DTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896681","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896681","key":"ORDGP-53","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896680","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896680","key":"ORDGP-52","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:DTP","Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896679","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896679","key":"ORDGP-51","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:DTP","Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896678","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896678","key":"ORDGP-50","fields":{"summary":"Document History","customfield_19901":"8","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896677","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896677","key":"ORDGP-49","fields":{"summary":"Reference Documents","customfield_19901":"7","customfield_19902":"{color:blue}No further reference documents{color}","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

No further reference documents

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896676","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896676","key":"ORDGP-48","fields":{"summary":"Abbreviations","customfield_19901":"6.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896675","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896675","key":"ORDGP-47","fields":{"summary":"Definitions","customfield_19901":"6.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896674","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896674","key":"ORDGP-46","fields":{"summary":"Assumptions","customfield_19901":"3","customfield_19902":"_{color:blue}None{color}_","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

None

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896673","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896673","key":"ORDGP-45","fields":{"summary":"Operational Requirements","customfield_19901":"3.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896672","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896672","key":"ORDGP-44","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":"* _{color:blue}Reference document 1{color}_\n * _{color:blue}Reference document 2{color}_","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
    \n\t
  • Reference document 1
  • \n\t
  • Reference document 2
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896671","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896671","key":"ORDGP-43","fields":{"summary":"Introduction and Purpose","customfield_19901":"1","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896670","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896670","key":"ORDGP-42","fields":{"summary":"Overview","customfield_19901":"2","customfield_19902":"Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.\r\n\r\n \r\n\r\n*!image-2022-02-22-11-11-22-023.png|width=484,height=142!*\r\n\r\n ","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

\n\n

 

\n\n

\n\n

 

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896669","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896669","key":"ORDGP-41","fields":{"summary":"Related Business / GxP Process","customfield_19901":"3.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896668","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896668","key":"ORDGP-40","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896667","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896667","key":"ORDGP-39","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896666","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896666","key":"ORDGP-38","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_search-eb927ea2-2d85-4ded-a143-5580345f0041.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_search-eb927ea2-2d85-4ded-a143-5580345f0041.json new file mode 100644 index 00000000..7aa660e2 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_api_2_search-eb927ea2-2d85-4ded-a143-5580345f0041.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":37,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896665","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896665","key":"ORDGP-37","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7fbaf7e8[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2804ef95[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7b0975f5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@74fe4546[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a420ba[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@709bc77d[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@400da246[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@46df1b74[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@62da52e5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4c54d1ec[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61e655b2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5fdcf641[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VSR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VSR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui1g:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Summary Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896664","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896664","key":"ORDGP-36","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@61155889[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@60556985[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32154646[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@79c718c0[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7674e19[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@22aee63[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a95af16[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5b55b59c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@667f3f69[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@33f38c33[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4a97844[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7226c418[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:REP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-REP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui18:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Restore/Recovery Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896663","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896663","key":"ORDGP-35","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6c25425[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@218852f3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61998d9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@65e55d23[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@68048b81[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@ea22b31[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4437a56c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@b74e48c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47603ee0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@58846e9e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2161bc27[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@d9d7c03[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:BUP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-BUP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui10:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Backup Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896662","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896662","key":"ORDGP-34","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1527ab97[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@57d4528a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@698ee2e1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1c3bbd58[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@27756e0d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@a1757df[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14103596[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@55009b31[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5909829a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@69909fcb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7cb9bbea[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2db17e5f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0s:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System Monitoring Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896661","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896661","key":"ORDGP-33","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3d5b0afd[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@343959a8[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a3dfb9f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@74b70769[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7bfc7461[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3424a4ac[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@51a050b4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1d6089a6[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a7b917[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@14377ccb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47c1bb09[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5e7527ee[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:P11"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-P11","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0k:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Part 11 Compliance Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896660","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896660","key":"ORDGP-32","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@21e3d39a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@92d5d38[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@60a96076[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@38e35c6[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@70793e7c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@67bf7666[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c3e1037[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3eec2c73[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7df7f0c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1bcf25d7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@274c2131[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@789c0e1f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0c:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Infrastructure Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896659","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896659","key":"ORDGP-31","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@222245dd[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@583297c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1726e050[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@bf2f301[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2cf10c2e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@59b060be[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79343fb8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6542a164[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4176419e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1b997c9e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@438859aa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@33b1993e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui04:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896658","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896658","key":"ORDGP-30","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@53abc180[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61e44378[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43fb519c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@473518[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5468a235[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@138e9fb9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ae05be5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@33b64054[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@225e251d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@454a05b8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d7d4187[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4cc81c9c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:AAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-AAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Application Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896657","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896657","key":"ORDGP-29","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@53c99a35[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@36ef223f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1882ab20[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@57b38cd5[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@556e7191[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7eced9d2[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7318b680[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@38865912[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1ec2556a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@164a1f29[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@20d017d6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2a148417[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TRC"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:16.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TRC","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Traceability Matrix","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896656","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896656","key":"ORDGP-28","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:43.183+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6c1e0e9d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@34b184e6[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@73446a71[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4b6a564b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6704bfb6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1f1155a1[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fd6b3d0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@56176c6f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14ac9014[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@105737d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7bb708be[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@162e77b3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896655","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896655","key":"ORDGP-27","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7139bc69[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@71b6582b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ea35bc1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7d172b3e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@861e0d3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@21a5d91e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5fcf3b8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@41f666e2[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@46967177[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@49f43d92[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b776627[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5944c4dd[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896654","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896654","key":"ORDGP-26","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:13.192+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@21c6c727[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@18e010dd[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5f411cc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1d0a8f57[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7cafbefc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@e5b0c15[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b840663[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@623d5473[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@63645e96[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3589cd4b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3eb57287[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@36a327ee[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:53.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896653","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896653","key":"ORDGP-25","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4d516e68[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@304dda4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74d6a9b3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@511ab370[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4537f412[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@623fe8ac[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@23655e69[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2760e846[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d0d0fdc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@406af659[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@49f57e2b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@69778d8b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:34.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhys:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896652","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896652","key":"ORDGP-24","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1c9f3225[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1abd27ea[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@520cbbf7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@21fd542b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4872f07[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@ea3182a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@39c7d90a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@72d08e15[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f12685f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@59e64bdf[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5eeed660[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@28b84b8e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896651","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896651","key":"ORDGP-23","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5eb08d67[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@540521c5[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@786b5807[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@51d55c6[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ccd64b1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7fc069d2[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d49ad4d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@32157047[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@559a6258[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@29680fc0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@395bfc65[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@20d53441[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896650","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896650","key":"ORDGP-22","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@16d1917e[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b9ec8a9[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@564d6bef[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7bbb3a0f[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@709142c8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@56714b7a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6b5e5048[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4997646e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@336ae896[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6f1c5f1a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76d99ea1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@49f3000[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:14:28.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhy4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896649","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896649","key":"ORDGP-21","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:33:19.170+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@54ca2d54[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@18771afd[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4cf10c64[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6cf147f5[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@71e728f9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@191f26d2[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5dc98bb9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3be1b11a[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7389f67f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@13c0776a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c5b2e8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@349abacb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:52.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896648","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896648","key":"ORDGP-20","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6cd77ccb[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5cd5d093[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@42f5590f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@30d6488a[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@735cf32[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@85bf058[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@608efd7d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@629e7bfe[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b7b74c0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1cf594c7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b87e731[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1ad72c34[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:54.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896647","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896647","key":"ORDGP-19","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7c4ca6de[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@586325e4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4daf959d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@ca2c5c9[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@9fc4dd6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@381ddf26[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@9afb6c5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@13b9b6b4[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7840cbe8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2ef2df29[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a9f4dac[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4cd4c5d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:08:41.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896646","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896646","key":"ORDGP-18","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@18c55883[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4ab90fb3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3c108527[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3e56d181[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1125616[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@110899d1[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29891f6a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@215b0903[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@326a59d8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@67f98855[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@66ab98f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7f00ab50[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:00.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896645","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896645","key":"ORDGP-17","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:34.116+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@708ce4ca[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7cf16c62[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c907401[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1bf5978d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@48ac85f5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5839bccf[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@37e6fbb5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@985b3b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2cb7e5f0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@39fdfb6d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@394684b4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7b454124[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896644","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896644","key":"ORDGP-16","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@308f2834[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33140c4a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b3605e6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@38d32a96[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@25b985c1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4d18f7d5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@569ad2a5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@773cd57a[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1e42d1d1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@146e2b93[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1461cc41[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5e74cb2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhws:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896643","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896643","key":"ORDGP-15","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@38c6af89[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ad3a337[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@26a040c3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@115d853b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78dc3756[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6b9e09f2[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f9cea1a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3295ca8f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2bea2d0c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3020601a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1844903e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@419f00b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:06:25.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896642","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896642","key":"ORDGP-14","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@612b2b93[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@71c3d8e9[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f214e31[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@104ad5ac[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@19fb6eea[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2ab1764b[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5f94e5ea[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1935bc01[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b7b0df3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7ad93bf9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29a3afd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@36fb4b1b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SSDS"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:17.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SSDS","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System and Software Design Specification including Source Code Review","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896641","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896641","key":"ORDGP-13","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:20.501+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3fdb8347[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b7a2015[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78be974f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@229e7ac5[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@46e0b772[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3a762b00[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@367ec7ee[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6767dbb6[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@247fab0f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2fdaaaab[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f5b4909[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@36b8953f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:48.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhw4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896640","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896640","key":"ORDGP-12","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@303944f1[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5de65644[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@25f14ed0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4aca685c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6ec2b207[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1d1cedaf[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3234a712[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2ba5b180[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@500c7c79[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2a879242[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3d9cbc37[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3b3333b5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:30.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896639","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896639","key":"ORDGP-11","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:34:49.813+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@330327b3[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@49d9cdbe[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2f8e3372[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@28bdaf00[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79899eef[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2955d7d9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@779e6422[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@329e107e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d58e24[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@b97a18[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@402a159[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@46dd4c47[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:15:07.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896638","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896638","key":"ORDGP-10","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:30:53.289+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5fea8a61[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@175b246c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@65530301[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2be52383[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7413677c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@133c6415[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e0a2678[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6cf1e901[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b64b64[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@735a9bcb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c5c5a3e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2f061b55[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:05:18.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL for Dev Preview","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Developer Preview","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896637","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896637","key":"ORDGP-9","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-31T17:42:51.174+0200","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@608cf9d4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3640e175[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1220241c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@23da2464[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32a73dc8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@e176274[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d04a76e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6f8f59ae[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@64cd60ea[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@517caac5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@697b5853[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7c2c2efb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:51.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896636","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896636","key":"ORDGP-8","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:04.572+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7261f7b2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d2ab44b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@9a4bebb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@41e4db28[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43af6e07[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1f29c767[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3354f35f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@548e5386[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6ce9c046[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3daa2043[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29f0e2a2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@f448679[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:59.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896635","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896635","key":"ORDGP-7","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@141ceeba[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@685baf4d[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8d939e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@35196505[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@485e333[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@498c2d51[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2571469d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5bbe3e7b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7089c244[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@58c78fa1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@772d7f8a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5d4adaf2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:37.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhus:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896634","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896634","key":"ORDGP-6","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6fb4542b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b039dc0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69346d9f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5eee00e4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@206acbaa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6740eada[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d523b38[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@315e756[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75d44b05[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1522795f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29950b38[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@516760b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RA"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:07:33.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RA","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Risk Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896633","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896633","key":"ORDGP-5","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:34:12.755+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@17dfe2fc[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b911a8a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@40d8d079[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3ded7a2[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1991554[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@69754e30[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6fa8107f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1a3eb9ef[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@53442c49[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1003fcdf[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f072d48[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@50990a86[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSD"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:03:55.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSD","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Specification Document","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896632","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896632","key":"ORDGP-4","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7818f007[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@10b0fd74[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c40c333[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5b0ccc92[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11913b4f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5e553fe0[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14462642[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@29130004[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@31c01d2a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@461d8ecd[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@63ccc47a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@52eeeb27[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhu4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Client Site Qualification","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896631","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896631","key":"ORDGP-3","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@43fdc1cc[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79606c92[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@664652c9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1cb8a66f[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@280e55b5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@23d3b752[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@775769fb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2e8522a0[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74fc6938[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4aab29d2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6ff89cd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1e83b90[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RAL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RAL","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Role Assignment Log","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896630","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896630","key":"ORDGP-2","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@684596bf[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@754bf50a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74383058[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5e717870[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@137dfa76[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@46e048e9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@73ef1a9d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@26085e68[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5adabe95[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1eb91227[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1589c89f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@71163f58[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhto:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Supplier Assessment Mail Questionnaire","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896629","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896629","key":"ORDGP-1","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1acb8db7[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fe87d0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4cba2f07[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3c8af147[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11f984c3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4e926fef[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@534db32d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@382670ca[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@65243491[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3814d2cd[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6feda39[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@d555a0c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:54.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-3504df69-7664-423c-8995-abe51a42c2dc.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-3504df69-7664-423c-8995-abe51a42c2dc.json new file mode 100644 index 00000000..d71c5e6f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-3504df69-7664-423c-8995-abe51a42c2dc.json @@ -0,0 +1,673 @@ +{ + "project" : { + "name" : "One Release DocGen Project", + "description" : "", + "key" : "ORDGP", + "jiraBaseUrl" : "https://jira-dev.biscrum.com/ORDGP", + "projectProperties" : { + "PROJECT.POO_CAT.LOW" : "Frequency of the usage of the related function is <10 times per year.", + "PROJECT.POO_CAT.HIGH" : "Frequency of the usage of the related function is >10 times per week.", + "WEBHOOK_PROXY.URL" : "https://webhook-proxy-ORDGP-cd.inh-odsapps.eu.boehringer.com/build?trigger_secret=f8055071-667e-4745-8d2e-deabf52f8a20", + "RM.REPOSITORY" : "ordgp-releasemanager", + "PROJECT.POO_CAT.MEDIUM" : "Frequency of the usage of the related function is <10 times per week.", + "PROJECT.NON-GXP_EVALUATION" : "Non-GxP risks are not being evaluated", + "PROJECT.USES_POO" : "true", + "PROJECT.IS_EDP_PROJECT" : "true", + "PROJECT.CONFIG_ITEM" : "BI-IT-DEVSTACK" + }, + "gampTopics" : [ "operational requirements", "functional requirements", "data requirements", "technical requirements", "interface requirements", "environment requirements", "performance requirements", "availability requirements", "security requirements", "maintenance requirements", "regulatory requirements", "roles", "compatibility", "procedural constraints", "overarching requirements" ], + "enumDictionary" : { + "ProbabilityOfDetection" : { + "1" : { + "value" : 1, + "text" : "Immediate", + "short" : "I" + }, + "2" : { + "value" : 2, + "text" : "Before Impact", + "short" : "B" + }, + "3" : { + "value" : 3, + "text" : "After Impact", + "short" : "A" + } + }, + "SeverityOfImpact" : { + "1" : { + "value" : 1, + "text" : "Low", + "short" : "L" + }, + "2" : { + "value" : 2, + "text" : "Medium", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "High", + "short" : "H" + } + }, + "ProbabilityOfOccurrence" : { + "1" : { + "value" : 1, + "text" : "LOW", + "short" : "L" + }, + "2" : { + "value" : 2, + "text" : "MEDIUM", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "HIGH", + "short" : "H" + } + }, + "RiskPriority" : { + "0" : { + "value" : 0, + "text" : "N/A", + "short" : "N" + }, + "1" : { + "value" : 1, + "text" : "HIGH", + "short" : "H" + }, + "2" : { + "value" : 2, + "text" : "MEDIUM", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "LOW", + "short" : "L" + } + }, + "GxPRelevance" : { + "R2" : { + "value" : 2, + "text" : "Relevant", + "short" : "R2" + }, + "N0" : { + "value" : 0, + "text" : "Not relevant/ZERO", + "short" : "N0" + }, + "N1" : { + "value" : 1, + "text" : "Not relevant/LESS", + "short" : "N1" + }, + "N2" : { + "value" : 2, + "text" : "Not relevant/EQUAL", + "short" : "N2" + } + } + }, + "versions" : [ "1.0" ], + "id" : "30107" + }, + "components" : { + "Technology-test" : { + "name" : "Technology-test", + "description" : "Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + }, + "Technology-backend" : { + "name" : "Technology-backend", + "description" : "Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "mitigations" : [ ] + }, + "Technology-frontend" : { + "name" : "Technology-frontend", + "description" : "Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + }, + "Technology-releasemanager" : { + "name" : "Technology-releasemanager", + "description" : "Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + } + }, + "releaseState" : "Change Ready for Implementation", + "version" : "1.0", + "epics" : { + "ORDGP-124" : { + "key" : "ORDGP-124", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

\n\n

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "epicName" : "Epic 1", + "predecessors" : [ ], + "title" : "Epic 1", + "requirements" : [ "ORDGP-126", "ORDGP-127", "ORDGP-125", "ORDGP-128", "ORDGP-129" ] + } + }, + "requirements" : { + "ORDGP-125" : { + "key" : "ORDGP-125", + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ "ORDGP-136" ], + "tests" : [ "ORDGP-144", "ORDGP-145", "ORDGP-143", "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "bugs" : [ ], + "mitigations" : [ "ORDGP-140" ], + "predecessors" : [ ] + }, + "ORDGP-126" : { + "key" : "ORDGP-126", + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ "ORDGP-141", "ORDGP-142" ], + "tests" : [ ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-127" : { + "key" : "ORDGP-127", + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-128" : { + "key" : "ORDGP-128", + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ "ORDGP-147" ], + "techSpecs" : [ "ORDGP-146" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-129" : { + "key" : "ORDGP-129", + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ "ORDGP-130", "ORDGP-133", "ORDGP-131", "ORDGP-132" ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + } + }, + "risks" : { + "ORDGP-136" : { + "key" : "ORDGP-136", + "name" : "RA 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "N1", + "probabilityOfOccurrence" : 1, + "severityOfImpact" : 2, + "probabilityOfDetection" : 2, + "riskPriorityNumber" : 4, + "riskPriority" : 3, + "mitigations" : [ "ORDGP-140" ], + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "tests" : [ "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "predecessors" : [ ], + "riskComment" : null + }, + "ORDGP-141" : { + "key" : "ORDGP-141", + "name" : "RA 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique.
\nSed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "R2", + "probabilityOfOccurrence" : 3, + "severityOfImpact" : 3, + "probabilityOfDetection" : 1, + "riskPriorityNumber" : 18, + "riskPriority" : 1, + "mitigations" : [ ], + "requirements" : [ "ORDGP-126" ], + "techSpecs" : [ ], + "tests" : [ ], + "predecessors" : [ ], + "riskComment" : null + }, + "ORDGP-142" : { + "key" : "ORDGP-142", + "name" : "RA 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "N0", + "probabilityOfOccurrence" : 1, + "severityOfImpact" : 1, + "probabilityOfDetection" : 3, + "riskPriorityNumber" : 0, + "riskPriority" : 0, + "mitigations" : [ ], + "requirements" : [ "ORDGP-126" ], + "techSpecs" : [ ], + "tests" : [ ], + "predecessors" : [ ], + "riskComment" : null + } + }, + "tests" : { + "ORDGP-130" : { + "id" : "896758", + "key" : "ORDGP-130", + "name" : "Acceptance Test 1", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-131" : { + "id" : "896759", + "key" : "ORDGP-131", + "name" : "Acceptance Test 2", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-132" : { + "id" : "896760", + "key" : "ORDGP-132", + "name" : "Acceptance Test 3", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-133" : { + "id" : "896761", + "key" : "ORDGP-133", + "name" : "Acceptance Test 4", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-137" : { + "id" : "896765", + "key" : "ORDGP-137", + "name" : "Unit Test 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-138" : { + "id" : "896766", + "key" : "ORDGP-138", + "name" : "Unit Test 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-139" : { + "id" : "896767", + "key" : "ORDGP-139", + "name" : "Unit Test 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-143" : { + "id" : "896771", + "key" : "ORDGP-143", + "name" : "Integration Test 1", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-144" : { + "id" : "896772", + "key" : "ORDGP-144", + "name" : "Integration Test 2", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-145" : { + "id" : "896773", + "key" : "ORDGP-145", + "name" : "Integration Test 3", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-147" : { + "id" : "896775", + "key" : "ORDGP-147", + "name" : "Installation Test 1", + "description" : "

Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Installation", + "executionType" : "Automated", + "requirements" : [ "ORDGP-128" ], + "techSpecs" : [ "ORDGP-146" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + } + }, + "mitigations" : { + "ORDGP-140" : { + "key" : "ORDGP-140", + "name" : "Mitigation 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "risks" : [ "ORDGP-136" ], + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "predecessors" : [ ] + } + }, + "techSpecs" : { + "ORDGP-134" : { + "key" : "ORDGP-134", + "name" : "TST 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "softwareDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "risks" : [ ], + "tests" : [ "ORDGP-144", "ORDGP-145", "ORDGP-143" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-135" : { + "key" : "ORDGP-135", + "name" : "TST 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "softwareDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "risks" : [ ], + "tests" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-146" : { + "key" : "ORDGP-146", + "name" : "TST 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

\n\n

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

\n\n

Morbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

", + "softwareDesignSpec" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "components" : [ ], + "requirements" : [ "ORDGP-128" ], + "risks" : [ ], + "tests" : [ "ORDGP-147" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + } + }, + "bugs" : { }, + "notesAndHints" : [ "Non-EDP linkType Cloners ignored: ORDGP-144 -> ORDGP-143" ], + "precedingVersions" : [ ], + "modifiedKeys" : { }, + "discontinuedKeys" : [ ], + "continuedKeys" : [ ] +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-f2cbc455-110c-4103-b80a-ff0603bbc624.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-f2cbc455-110c-4103-b80a-ff0603bbc624.json new file mode 100644 index 00000000..2e87b352 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-f2cbc455-110c-4103-b80a-ff0603bbc624.json @@ -0,0 +1,33 @@ +{ + "id" : "f2cbc455-110c-4103-b80a-ff0603bbc624", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":10,\"isLast\":true,\"values\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/1\",\"id\":\"1\",\"description\":\"A problem which impairs or prevents the functions of the product.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10303&avatarType=issuetype\",\"name\":\"Bug\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10000\",\"id\":\"10000\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a big user story that needs to be broken down.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10307&avatarType=issuetype\",\"name\":\"Epic\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10001\",\"id\":\"10001\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a user story.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10315&avatarType=issuetype\",\"name\":\"Story\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006\",\"id\":\"10006\",\"description\":\"\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype\",\"name\":\"Documentation\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10009\",\"id\":\"10009\",\"description\":\"This Issue Type is used to create Zephyr Test within Jira.\",\"iconUrl\":\"https://jira-dev.biscrum.com/download/resources/com.thed.zephyr.je/images/icons/ico_zephyr_issuetype.png\",\"name\":\"Test\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14300\",\"id\":\"14300\",\"description\":\"Release status of project\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22841&avatarType=issuetype\",\"name\":\"Release Status\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14301\",\"id\":\"14301\",\"description\":\"Document part\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22842&avatarType=issuetype\",\"name\":\"Documentation Chapter\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14302\",\"id\":\"14302\",\"description\":\"The issue for risk definition\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22843&avatarType=issuetype\",\"name\":\"Risk Assessment\",\"subtask\":true},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14303\",\"id\":\"14303\",\"description\":\"The issue for definition of a risk mitigation\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22844&avatarType=issuetype\",\"name\":\"Mitigation\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14304\",\"id\":\"14304\",\"description\":\"The issue for technical specification\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22845&avatarType=issuetype\",\"name\":\"Technical Specification Task\",\"subtask\":false}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:02 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31103x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=7CD6932A58042868215964237CA4DC54; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_b21a783f0559c6e43afa834f439b99566f6677b4_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "mgjph7", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "f2cbc455-110c-4103-b80a-ff0603bbc624", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-f3620554-3559-4c19-b0d3-cc2d73032956.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-f3620554-3559-4c19-b0d3-cc2d73032956.json new file mode 100644 index 00000000..0629711b --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-f3620554-3559-4c19-b0d3-cc2d73032956.json @@ -0,0 +1,33 @@ +{ + "id" : "f3620554-3559-4c19-b0d3-cc2d73032956", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_1", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/1", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":16,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19334},\"name\":\"EDP Definition of Ready for Bug\",\"fieldId\":\"customfield_19334\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72091\",\"value\":\"Confirmed\",\"id\":\"72091\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19335},\"name\":\"EDP Definition of Done for Bug\",\"fieldId\":\"customfield_19335\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72097\",\"value\":\"Test passed\",\"id\":\"72097\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/1\",\"id\":\"1\",\"description\":\"A problem which impairs or prevents the functions of the product.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10303&avatarType=issuetype\",\"name\":\"Bug\",\"subtask\":false,\"avatarId\":10303}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:04 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31104x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=101B1AE78D92B39B23810A37A63F6C1F; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_2753de5c94d92d926095d27eea5b0097145d5a54_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1nzuuzg", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "f3620554-3559-4c19-b0d3-cc2d73032956", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-bee17fdf-7b57-4ebc-94c1-3aff92d29bfb.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-bee17fdf-7b57-4ebc-94c1-3aff92d29bfb.json new file mode 100644 index 00000000..ab40d3c8 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-bee17fdf-7b57-4ebc-94c1-3aff92d29bfb.json @@ -0,0 +1,33 @@ +{ + "id" : "bee17fdf-7b57-4ebc-94c1-3aff92d29bfb", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10000", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10000", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-label\",\"customId\":10006},\"name\":\"Epic Name\",\"fieldId\":\"customfield_10006\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10000\",\"id\":\"10000\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a big user story that needs to be broken down.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10307&avatarType=issuetype\",\"name\":\"Epic\",\"subtask\":false,\"avatarId\":10307}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:05 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31105x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=B1361A069579309CEF96C31B3FD0AAAF; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_336c8f4354681c9433e2621158efb1ce6110b234_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "c3tjl4", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "bee17fdf-7b57-4ebc-94c1-3aff92d29bfb", + "persistent" : true, + "insertionIndex" : 3 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-3ac26edc-e724-4d8a-b59c-125938b0b9f3.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-3ac26edc-e724-4d8a-b59c-125938b0b9f3.json new file mode 100644 index 00000000..5827e250 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-3ac26edc-e724-4d8a-b59c-125938b0b9f3.json @@ -0,0 +1,33 @@ +{ + "id" : "3ac26edc-e724-4d8a-b59c-125938b0b9f3", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10001", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10001", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10001-3ac26edc-e724-4d8a-b59c-125938b0b9f3.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:07 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31106x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=B88B7AF3B014C3982AF1A072C4084A61; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_43bc2fa41901e862045d353b08820be279e81cb7_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "3mnqwi", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "3ac26edc-e724-4d8a-b59c-125938b0b9f3", + "persistent" : true, + "insertionIndex" : 4 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-2063ffcb-660f-4363-9353-d425647dbd62.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-2063ffcb-660f-4363-9353-d425647dbd62.json new file mode 100644 index 00000000..e7ab5d18 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-2063ffcb-660f-4363-9353-d425647dbd62.json @@ -0,0 +1,33 @@ +{ + "id" : "2063ffcb-660f-4363-9353-d425647dbd62", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10006", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10006", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":15,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19306},\"name\":\"Document Id\",\"fieldId\":\"customfield_19306\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19307},\"name\":\"Document Version\",\"fieldId\":\"customfield_19307\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19308},\"name\":\"EDP Definition of Ready for Documentation\",\"fieldId\":\"customfield_19308\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72044\",\"value\":\"Risk Defined\",\"id\":\"72044\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72045\",\"value\":\"AcceptanceTest Ready for Implementation\",\"id\":\"72045\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19309},\"name\":\"EDP Definition of Done for Documentation\",\"fieldId\":\"customfield_19309\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72056\",\"value\":\"All Documentation Chapter Done\",\"id\":\"72056\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72057\",\"value\":\"All Issues in Done for Document\",\"id\":\"72057\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"environment\"},\"name\":\"Environment\",\"fieldId\":\"environment\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006\",\"id\":\"10006\",\"description\":\"\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype\",\"name\":\"Documentation\",\"subtask\":false,\"avatarId\":10306}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:08 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31107x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=560F879E16CD8DF2798DF6F65510B7CD; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_448e3882916062b053e99a668cedb98e6e996940_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1sop1wc", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "2063ffcb-660f-4363-9353-d425647dbd62", + "persistent" : true, + "insertionIndex" : 5 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-18abcea6-dd14-46c3-951a-ec70f73ec720.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-18abcea6-dd14-46c3-951a-ec70f73ec720.json new file mode 100644 index 00000000..afd0e6ca --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-18abcea6-dd14-46c3-951a-ec70f73ec720.json @@ -0,0 +1,33 @@ +{ + "id" : "18abcea6-dd14-46c3-951a-ec70f73ec720", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10009", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10009", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":20,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"component\",\"system\":\"components\"},\"name\":\"Component/s\",\"fieldId\":\"components\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27522\",\"id\":\"27522\",\"name\":\"Technology-backend\",\"description\":\"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27523\",\"id\":\"27523\",\"name\":\"Technology-frontend\",\"description\":\"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27524\",\"id\":\"27524\",\"name\":\"Technology-releasemanager\",\"description\":\"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27525\",\"id\":\"27525\",\"name\":\"Technology-test\",\"description\":\"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse\"}]},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.thed.zephyr.je:zephyr-je-customfield-teststep\",\"customId\":10023},\"name\":\"Zephyr Teststep\",\"fieldId\":\"customfield_10023\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.test.testExecutiontype\",\"customId\":19330},\"name\":\"Test Execution Type\",\"fieldId\":\"customfield_19330\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72176\",\"value\":\"Automated\",\"id\":\"72176\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72177\",\"value\":\"Manual\",\"id\":\"72177\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.test.testLevel\",\"customId\":19331},\"name\":\"Test Level\",\"fieldId\":\"customfield_19331\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72154\",\"value\":\"Acceptance\",\"id\":\"72154\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72155\",\"value\":\"Integration\",\"id\":\"72155\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72156\",\"value\":\"Unit\",\"id\":\"72156\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72157\",\"value\":\"Installation\",\"id\":\"72157\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19332},\"name\":\"EDP Definition of Ready for Test\",\"fieldId\":\"customfield_19332\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72067\",\"value\":\"Jira test steps describe any applicable inputs and expected results\",\"id\":\"72067\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19333},\"name\":\"EDP Definition of Done for Test\",\"fieldId\":\"customfield_19333\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72075\",\"value\":\"Test implementation highlights where inputs and expected results can be found\",\"id\":\"72075\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72076\",\"value\":\"Test implementation reports evidence of expected results through log data or screenshots\",\"id\":\"72076\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72077\",\"value\":\"Test implementation allows the correlation of expected results in Jira test steps with evidence\",\"id\":\"72077\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10009\",\"id\":\"10009\",\"description\":\"This Issue Type is used to create Zephyr Test within Jira.\",\"iconUrl\":\"https://jira-dev.biscrum.com/download/resources/com.thed.zephyr.je/images/icons/ico_zephyr_issuetype.png\",\"name\":\"Test\",\"subtask\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:10 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31108x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=1FF04767BF8A46DBC24AF5AF1DA87DFB; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_7afe3a32bec75010ee0fbbf42b975d77f34f8505_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "ort60", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "18abcea6-dd14-46c3-951a-ec70f73ec720", + "persistent" : true, + "insertionIndex" : 6 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-27d599a6-d677-42e6-beb8-f2c1fd5f35a6.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-27d599a6-d677-42e6-beb8-f2c1fd5f35a6.json new file mode 100644 index 00000000..58e0b34c --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-27d599a6-d677-42e6-beb8-f2c1fd5f35a6.json @@ -0,0 +1,33 @@ +{ + "id" : "27d599a6-d677-42e6-beb8-f2c1fd5f35a6", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14300", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14300", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":16,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:select\",\"customId\":19301},\"name\":\"Release Manager Status\",\"fieldId\":\"customfield_19301\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72267\",\"value\":\"Running\",\"id\":\"72267\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72268\",\"value\":\"Failed\",\"id\":\"72268\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72269\",\"value\":\"Successful\",\"id\":\"72269\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19303},\"name\":\"Release Build\",\"fieldId\":\"customfield_19303\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:precedingversions\",\"customId\":20100},\"name\":\"Preceding Versions\",\"fieldId\":\"customfield_20100\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[]},{\"required\":false,\"schema\":{\"type\":\"version\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:version\",\"customId\":20101},\"name\":\"ProductRelease Version\",\"fieldId\":\"customfield_20101\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"description\":\"\",\"name\":\"1.0\",\"archived\":false,\"released\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:readonlyfield\",\"customId\":22101},\"name\":\"Branch Id _ not used\",\"fieldId\":\"customfield_22101\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14300\",\"id\":\"14300\",\"description\":\"Release status of project\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22841&avatarType=issuetype\",\"name\":\"Release Status\",\"subtask\":false,\"avatarId\":22841}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:11 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31109x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=F6D21C6D3CBDBE86636A80FA842F374E; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_a763738f46eb445fc83baba405a8086aa62e587b_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "xs6n8k", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "27d599a6-d677-42e6-beb8-f2c1fd5f35a6", + "persistent" : true, + "insertionIndex" : 7 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-7a588d51-c9b6-421c-be3a-654c344cfa9d.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-7a588d51-c9b6-421c-be3a-654c344cfa9d.json new file mode 100644 index 00000000..52ba353b --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-7a588d51-c9b6-421c-be3a-654c344cfa9d.json @@ -0,0 +1,33 @@ +{ + "id" : "7a588d51-c9b6-421c-be3a-654c344cfa9d", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14301", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14301", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:headingnumberfield\",\"customId\":19901},\"name\":\"EDP Heading Number\",\"fieldId\":\"customfield_19901\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19902},\"name\":\"EDP Content\",\"fieldId\":\"customfield_19902\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14301\",\"id\":\"14301\",\"description\":\"Document part\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22842&avatarType=issuetype\",\"name\":\"Documentation Chapter\",\"subtask\":false,\"avatarId\":22842}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:13 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31110x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=E1CEE915C32DA1219DDB4B4475D78BBC; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_46fe8d9a05cc2b470e711bf6076c2f67acbce70f_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1rnho7p", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "7a588d51-c9b6-421c-be3a-654c344cfa9d", + "persistent" : true, + "insertionIndex" : 8 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-6f3e10ac-ea1e-4f23-9d24-8aef937635da.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-6f3e10ac-ea1e-4f23-9d24-8aef937635da.json new file mode 100644 index 00000000..67ca17c0 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-6f3e10ac-ea1e-4f23-9d24-8aef937635da.json @@ -0,0 +1,33 @@ +{ + "id" : "6f3e10ac-ea1e-4f23-9d24-8aef937635da", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14302", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14302", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":21,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19310},\"name\":\"Risk Comment\",\"fieldId\":\"customfield_19310\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.gxp-relevance\",\"customId\":19311},\"name\":\"GxP Relevance for Risk\",\"fieldId\":\"customfield_19311\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72190\",\"value\":\"Relevant\",\"id\":\"72190\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72191\",\"value\":\"Not relevant/EQUAL\",\"id\":\"72191\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72192\",\"value\":\"Not relevant/LESS\",\"id\":\"72192\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72193\",\"value\":\"Not relevant/ZERO\",\"id\":\"72193\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.severityofimpact\",\"customId\":19312},\"name\":\"Severity of Impact\",\"fieldId\":\"customfield_19312\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72213\",\"value\":\"Low\",\"id\":\"72213\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72214\",\"value\":\"Medium\",\"id\":\"72214\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72215\",\"value\":\"High\",\"id\":\"72215\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.probabilityofdetection\",\"customId\":19313},\"name\":\"Probability of Detection\",\"fieldId\":\"customfield_19313\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72231\",\"value\":\"Immediate\",\"id\":\"72231\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72232\",\"value\":\"Before Impact\",\"id\":\"72232\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72233\",\"value\":\"After Impact\",\"id\":\"72233\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.probabilityofoccurrence\",\"customId\":19314},\"name\":\"Probability of Occurrence\",\"fieldId\":\"customfield_19314\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72249\",\"value\":\"LOW\",\"id\":\"72249\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72250\",\"value\":\"MEDIUM\",\"id\":\"72250\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72251\",\"value\":\"HIGH\",\"id\":\"72251\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.riskprioritynumber\",\"customId\":19315},\"name\":\"Risk Priority Number\",\"fieldId\":\"customfield_19315\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.riskpriority\",\"customId\":19316},\"name\":\"Risk Priority\",\"fieldId\":\"customfield_19316\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19317},\"name\":\"EDP Definition of Done for Risk\",\"fieldId\":\"customfield_19317\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72107\",\"value\":\"Identified\",\"id\":\"72107\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72108\",\"value\":\"Evaluated\",\"id\":\"72108\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72109\",\"value\":\"Mitigations/Tests defined\",\"id\":\"72109\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72110\",\"value\":\"Reevaluated\",\"id\":\"72110\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72111\",\"value\":\"Agreed with QA\",\"id\":\"72111\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14302\",\"id\":\"14302\",\"description\":\"The issue for risk definition\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22843&avatarType=issuetype\",\"name\":\"Risk Assessment\",\"subtask\":true,\"avatarId\":22843}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":true,\"schema\":{\"type\":\"issuelink\",\"system\":\"parent\"},\"name\":\"Parent\",\"fieldId\":\"parent\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:14 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31111x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=B371AA8B99655D642266B8884A53EF88; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_ddf4551abb921ca1744a30b9941ff9c52f0dff0c_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "jr78qc", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "6f3e10ac-ea1e-4f23-9d24-8aef937635da", + "persistent" : true, + "insertionIndex" : 9 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-6c625a39-4d63-4e36-bc10-eb815ffe039c.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-6c625a39-4d63-4e36-bc10-eb815ffe039c.json new file mode 100644 index 00000000..33a739b0 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-6c625a39-4d63-4e36-bc10-eb815ffe039c.json @@ -0,0 +1,33 @@ +{ + "id" : "6c625a39-4d63-4e36-bc10-eb815ffe039c", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14303", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14303", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14303\",\"id\":\"14303\",\"description\":\"The issue for definition of a risk mitigation\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22844&avatarType=issuetype\",\"name\":\"Mitigation\",\"subtask\":false,\"avatarId\":22844}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:16 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31112x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=A32D92BA70961E7ED155A1CAD98E4F2D; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_28c18c1746d088d3a7dae57d017feaed23eb19ca_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1v0tbgj", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "6c625a39-4d63-4e36-bc10-eb815ffe039c", + "persistent" : true, + "insertionIndex" : 10 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-2c0ced3a-23cd-4989-b2b4-a64ce9149fa9.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-2c0ced3a-23cd-4989-b2b4-a64ce9149fa9.json new file mode 100644 index 00000000..0f299875 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-2c0ced3a-23cd-4989-b2b4-a64ce9149fa9.json @@ -0,0 +1,33 @@ +{ + "id" : "2c0ced3a-23cd-4989-b2b4-a64ce9149fa9", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14304", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14304", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":18,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"component\",\"system\":\"components\"},\"name\":\"Component/s\",\"fieldId\":\"components\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27522\",\"id\":\"27522\",\"name\":\"Technology-backend\",\"description\":\"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27523\",\"id\":\"27523\",\"name\":\"Technology-frontend\",\"description\":\"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27524\",\"id\":\"27524\",\"name\":\"Technology-releasemanager\",\"description\":\"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27525\",\"id\":\"27525\",\"name\":\"Technology-test\",\"description\":\"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse\"}]},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19327},\"name\":\"System Design Specification\",\"fieldId\":\"customfield_19327\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19328},\"name\":\"Software Design Specification\",\"fieldId\":\"customfield_19328\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19329},\"name\":\"EDP Definition of Done for Technical Specification\",\"fieldId\":\"customfield_19329\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72135\",\"value\":\"All Risks Approved\",\"id\":\"72135\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72136\",\"value\":\"All Tests Defined\",\"id\":\"72136\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72137\",\"value\":\"All Tests Executed Successful\",\"id\":\"72137\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14304\",\"id\":\"14304\",\"description\":\"The issue for technical specification\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22845&avatarType=issuetype\",\"name\":\"Technical Specification Task\",\"subtask\":false,\"avatarId\":22845}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:17 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31113x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=38158431F12201A179AEE61C35FFEA46; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_7283ed5f2538cde90e20140560eed5076387ecc4_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1fvr9ly", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "2c0ced3a-23cd-4989-b2b4-a64ce9149fa9", + "persistent" : true, + "insertionIndex" : 11 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_ordgp-123-f7d29b21-e753-46b4-90bb-b13f258cf6e4.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_ordgp-123-f7d29b21-e753-46b4-90bb-b13f258cf6e4.json new file mode 100644 index 00000000..d37fe86c --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_issue_ordgp-123-f7d29b21-e753-46b4-90bb-b13f258cf6e4.json @@ -0,0 +1,33 @@ +{ + "id" : "f7d29b21-e753-46b4-90bb-b13f258cf6e4", + "name" : "rest_api_2_issue_ordgp-123", + "request" : { + "url" : "/rest/api/2/issue/ORDGP-123?fields=customfield_20101", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"expand\":\"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations\",\"id\":\"896751\",\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issue/896751\",\"key\":\"ORDGP-123\",\"fields\":{\"customfield_20101\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"description\":\"\",\"name\":\"1.0\",\"archived\":false,\"released\":false}}}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:19 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31114x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=CAB9581406B38FF9D4E675A1701A8D77; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_d89de9f295f48e5a37e8d07f6bc433040b2e15bd_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1q9mu9n", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "f7d29b21-e753-46b4-90bb-b13f258cf6e4", + "persistent" : true, + "insertionIndex" : 12 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-5eb7a9e6-96c5-4260-9447-15ec45a4d720.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-5eb7a9e6-96c5-4260-9447-15ec45a4d720.json new file mode 100644 index 00000000..4f148fb7 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-5eb7a9e6-96c5-4260-9447-15ec45a4d720.json @@ -0,0 +1,35 @@ +{ + "id" : "5eb7a9e6-96c5-4260-9447-15ec45a4d720", + "name" : "rest_api_2_project_ordgp_versions", + "request" : { + "url" : "/rest/api/2/project/ORDGP/versions", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:27 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31118x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=75C6DACCAEB45EA12BA2FA331648E2D0; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_5b43fd030ad6d7da8ca5c106bd50d9a8df85c4f4_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "tko832", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "5eb7a9e6-96c5-4260-9447-15ec45a4d720", + "persistent" : true, + "scenarioName" : "scenario-1-rest-api-2-project-ORDGP-versions", + "requiredScenarioState" : "scenario-1-rest-api-2-project-ORDGP-versions-2", + "insertionIndex" : 16 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-cda81d7d-239b-44ad-8710-058351072c98.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-cda81d7d-239b-44ad-8710-058351072c98.json new file mode 100644 index 00000000..6a91a5c2 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-cda81d7d-239b-44ad-8710-058351072c98.json @@ -0,0 +1,36 @@ +{ + "id" : "cda81d7d-239b-44ad-8710-058351072c98", + "name" : "rest_api_2_project_ordgp_versions", + "request" : { + "url" : "/rest/api/2/project/ORDGP/versions", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:26 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31117x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=3D827B87DFA62B4EAABC36381B20FCFF; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_8c845f2217057e794293af53592118c20806a407_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "d5zhza", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "cda81d7d-239b-44ad-8710-058351072c98", + "persistent" : true, + "scenarioName" : "scenario-1-rest-api-2-project-ORDGP-versions", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-1-rest-api-2-project-ORDGP-versions-2", + "insertionIndex" : 15 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-22db5e0a-4e47-48e7-b59b-f96154502dd0.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-22db5e0a-4e47-48e7-b59b-f96154502dd0.json new file mode 100644 index 00000000..f9238607 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-22db5e0a-4e47-48e7-b59b-f96154502dd0.json @@ -0,0 +1,38 @@ +{ + "id" : "22db5e0a-4e47-48e7-b59b-f96154502dd0", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"jql\":\"project = ORDGP AND issuetype = 'Documentation'\",\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-22db5e0a-4e47-48e7-b59b-f96154502dd0.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:32 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31121x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=047A48B2CE477AD94F63622214261602; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_f992f484880168958c87d6d05998ad3f964ef442_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "11ebjda", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "22db5e0a-4e47-48e7-b59b-f96154502dd0", + "persistent" : true, + "insertionIndex" : 19 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-866043c0-5dd0-42c7-89a8-1b34ae2cf079.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-866043c0-5dd0-42c7-89a8-1b34ae2cf079.json new file mode 100644 index 00000000..5a1032d6 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-866043c0-5dd0-42c7-89a8-1b34ae2cf079.json @@ -0,0 +1,38 @@ +{ + "id" : "866043c0-5dd0-42c7-89a8-1b34ae2cf079", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":[\"key\",\"status\",\"summary\",\"labels\",\"issuelinks\",\"customfield_19902\",\"customfield_19901\"],\"jql\":\"project = ORDGP AND issuetype = 'Documentation Chapter' AND fixVersion = '1.0'\",\"expand\":[\"renderedFields\"],\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-866043c0-5dd0-42c7-89a8-1b34ae2cf079.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:24 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31116x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=D8AB220DB745C301182EF0EEDAEE2D1E; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_3898ee1e99c36a9544cc69499c3730f14ac44334_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1e5o3e", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "866043c0-5dd0-42c7-89a8-1b34ae2cf079", + "persistent" : true, + "insertionIndex" : 14 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-b8719e3f-1cef-4890-a83e-267a756fc325.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-b8719e3f-1cef-4890-a83e-267a756fc325.json new file mode 100644 index 00000000..a12b4b01 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-b8719e3f-1cef-4890-a83e-267a756fc325.json @@ -0,0 +1,38 @@ +{ + "id" : "b8719e3f-1cef-4890-a83e-267a756fc325", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":[\"assignee\",\"duedate\",\"issuelinks\",\"status\",\"summary\",\"fixVersions\"],\"jql\":\"project = ORDGP AND issuetype = Bug AND status != Done AND fixVersion = '1.0'\",\"expand\":[],\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"startAt\":0,\"maxResults\":1000,\"total\":0,\"issues\":[]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:28 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31119x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=28775E2899E769ED2368F0551E749992; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_bd9cc158110304381ffca700f58396d2cf273e35_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "acm0rp", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "b8719e3f-1cef-4890-a83e-267a756fc325", + "persistent" : true, + "insertionIndex" : 17 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-eb927ea2-2d85-4ded-a143-5580345f0041.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-eb927ea2-2d85-4ded-a143-5580345f0041.json new file mode 100644 index 00000000..56ffd749 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_api_2_search-eb927ea2-2d85-4ded-a143-5580345f0041.json @@ -0,0 +1,38 @@ +{ + "id" : "eb927ea2-2d85-4ded-a143-5580345f0041", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"jql\":\"project = ORDGP AND issuetype = 'Documentation' AND fixVersion = '1.0'\",\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-eb927ea2-2d85-4ded-a143-5580345f0041.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:30 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31120x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=9A509E3C2F0CF9FC3F9515F050E0CDEB; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_1e769de11f405907af8010cec70a384fa2695dd8_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1mojxxv", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "eb927ea2-2d85-4ded-a143-5580345f0041", + "persistent" : true, + "insertionIndex" : 18 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-3504df69-7664-423c-8995-abe51a42c2dc.json b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-3504df69-7664-423c-8995-abe51a42c2dc.json new file mode 100644 index 00000000..127a5d73 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/DTR/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-3504df69-7664-423c-8995-abe51a42c2dc.json @@ -0,0 +1,33 @@ +{ + "id" : "3504df69-7664-423c-8995-abe51a42c2dc", + "name" : "rest_platform_11_deltadocgenreports_ordgp_10", + "request" : { + "url" : "/rest/platform/1.1/deltadocgenreports/ORDGP/1.0", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_platform_11_deltadocgenreports_ordgp_10-3504df69-7664-423c-8995-abe51a42c2dc.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:48:23 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "648x31115x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=52E1BBE8F91D0396D8D21B7147872D52; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_5bbf019f086ecd3bfe9db3ec54aa3c651c07e785_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "zpzvoc", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "3504df69-7664-423c-8995-abe51a42c2dc", + "persistent" : true, + "insertionIndex" : 13 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/IVP/WIP/jira/__files/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-bc136e59-8c4f-4c01-9fc5-efcb151eb40b.png b/src/test/resources/wiremock/ordgp/IVP/WIP/jira/__files/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-bc136e59-8c4f-4c01-9fc5-efcb151eb40b.png new file mode 100644 index 00000000..81cadf09 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/IVP/WIP/jira/__files/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-bc136e59-8c4f-4c01-9fc5-efcb151eb40b.png differ diff --git a/src/test/resources/wiremock/ordgp/IVP/WIP/jira/mappings/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-bc136e59-8c4f-4c01-9fc5-efcb151eb40b.json b/src/test/resources/wiremock/ordgp/IVP/WIP/jira/mappings/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-bc136e59-8c4f-4c01-9fc5-efcb151eb40b.json new file mode 100644 index 00000000..e6e63664 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/IVP/WIP/jira/mappings/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-bc136e59-8c4f-4c01-9fc5-efcb151eb40b.json @@ -0,0 +1,34 @@ +{ + "id" : "bc136e59-8c4f-4c01-9fc5-efcb151eb40b", + "name" : "secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png", + "request" : { + "url" : "/secure/attachment/552316/552316_image-2022-02-22-11-12-21-105.png", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-bc136e59-8c4f-4c01-9fc5-efcb151eb40b.png", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:38 GMT", + "Content-Type" : "image/png", + "X-AREQUESTID" : "651x31143x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=425CB17ECF665C941E62911C24C6EB3D; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_c425f465ad583821bb8433cd915e96d51c5694d4_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1psw0tj", + "Accept-Ranges" : "bytes", + "Content-Disposition" : "inline; filename*=UTF-8''image-2022-02-22-11-12-21-105.png;", + "Cache-control" : "private, max-age=31536000", + "Expires" : "Wed, 31 Dec 1969 23:59:59 GMT" + } + }, + "uuid" : "bc136e59-8c4f-4c01-9fc5-efcb151eb40b", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/IVR/WIP/jira/__files/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-ea287edd-d8e5-4012-bb15-af06e989d31f.png b/src/test/resources/wiremock/ordgp/IVR/WIP/jira/__files/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-ea287edd-d8e5-4012-bb15-af06e989d31f.png new file mode 100644 index 00000000..81cadf09 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/IVR/WIP/jira/__files/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-ea287edd-d8e5-4012-bb15-af06e989d31f.png differ diff --git a/src/test/resources/wiremock/ordgp/IVR/WIP/jira/mappings/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-ea287edd-d8e5-4012-bb15-af06e989d31f.json b/src/test/resources/wiremock/ordgp/IVR/WIP/jira/mappings/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-ea287edd-d8e5-4012-bb15-af06e989d31f.json new file mode 100644 index 00000000..3800d6a4 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/IVR/WIP/jira/mappings/secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-ea287edd-d8e5-4012-bb15-af06e989d31f.json @@ -0,0 +1,34 @@ +{ + "id" : "ea287edd-d8e5-4012-bb15-af06e989d31f", + "name" : "secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png", + "request" : { + "url" : "/secure/attachment/552316/552316_image-2022-02-22-11-12-21-105.png", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "secure_attachment_552316_552316_image-2022-02-22-11-12-21-105png-ea287edd-d8e5-4012-bb15-af06e989d31f.png", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:55:37 GMT", + "Content-Type" : "image/png", + "X-AREQUESTID" : "655x31186x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=241BE7942965D90D73839187BA256EAA; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_d07a32e16c5d8c27b85afd8b977a13876da15e06_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "qasvmf", + "Accept-Ranges" : "bytes", + "Content-Disposition" : "inline; filename*=UTF-8''image-2022-02-22-11-12-21-105.png;", + "Cache-control" : "private, max-age=31536000", + "Expires" : "Wed, 31 Dec 1969 23:59:59 GMT" + } + }, + "uuid" : "ea287edd-d8e5-4012-bb15-af06e989d31f", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/IVR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_installationzip-952a6d8e-f760-4b18-bd48-7c8f1c214755.zip b/src/test/resources/wiremock/ordgp/IVR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_installationzip-952a6d8e-f760-4b18-bd48-7c8f1c214755.zip new file mode 100644 index 00000000..5c2b85b4 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/IVR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_installationzip-952a6d8e-f760-4b18-bd48-7c8f1c214755.zip differ diff --git a/src/test/resources/wiremock/ordgp/IVR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_installationzip-952a6d8e-f760-4b18-bd48-7c8f1c214755.json b/src/test/resources/wiremock/ordgp/IVR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_installationzip-952a6d8e-f760-4b18-bd48-7c8f1c214755.json new file mode 100644 index 00000000..2fa7997e --- /dev/null +++ b/src/test/resources/wiremock/ordgp/IVR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_installationzip-952a6d8e-f760-4b18-bd48-7c8f1c214755.json @@ -0,0 +1,27 @@ +{ + "id" : "952a6d8e-f760-4b18-bd48-7c8f1c214755", + "name" : "repository_leva-documentation_ordgp_13_installationzip", + "request" : { + "url" : "/repository/leva-documentation/ordgp/13/installation.zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "repository_leva-documentation_ordgp_13_installationzip-952a6d8e-f760-4b18-bd48-7c8f1c214755.zip", + "headers" : { + "Date" : "Mon, 04 Apr 2022 08:55:32 GMT", + "Server" : "Nexus/3.28.1-01 (OSS)", + "X-Content-Type-Options" : "nosniff", + "Content-Security-Policy" : "sandbox allow-forms allow-modals allow-popups allow-presentation allow-scripts allow-top-navigation", + "X-XSS-Protection" : "1; mode=block", + "Last-Modified" : "Fri, 01 Apr 2022 09:23:36 GMT", + "Content-Disposition" : "inline", + "Content-Type" : "application/zip", + "Set-Cookie" : "b7bd9d362cf28fa3746ddf3faaa39cfe=13a61aa10205f36ad051ed3d9d80bf64; path=/; HttpOnly; Secure; SameSite=None", + "Cache-control" : "private" + } + }, + "uuid" : "952a6d8e-f760-4b18-bd48-7c8f1c214755", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits-09dd28c3-26f0-4894-8244-844f3030e664.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits-09dd28c3-26f0-4894-8244-844f3030e664.json new file mode 100644 index 00000000..8c965c79 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits-09dd28c3-26f0-4894-8244-844f3030e664.json @@ -0,0 +1,30 @@ +{ + "id" : "09dd28c3-26f0-4894-8244-844f3030e664", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-backend_commits", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-backend/commits?limit=10&start=0", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"values\":[{\"id\":\"138495888301232315f5455aeb17cc635982ba2c\",\"displayId\":\"13849588830\",\"author\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1646133854000,\"committer\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1646133854000,\"message\":\"ODS: Export OpenShift configuration \\rBuild (assemble) #13 - Change: 1.0, Project: ordgp, Target Environment: ordgp-dev, Version: WIP\\rhttps://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/13/ [ci skip]\",\"parents\":[{\"id\":\"27eb2abe4554932afa94f9a40a72d2165158ae6b\",\"displayId\":\"27eb2abe455\"}]},{\"id\":\"27eb2abe4554932afa94f9a40a72d2165158ae6b\",\"displayId\":\"27eb2abe455\",\"author\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1643375640000,\"committer\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1643375640000,\"message\":\"ODS: Export OpenShift configuration \\rBuild (assemble) #7 - Change: 1.0, Project: ordgp, Target Environment: ordgp-dev, Version: WIP\\rhttps://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/7/ [ci skip]\",\"parents\":[{\"id\":\"6f8daea49927f08c0be572fc745f8396d2aec66f\",\"displayId\":\"6f8daea4992\"}]},{\"id\":\"6f8daea49927f08c0be572fc745f8396d2aec66f\",\"displayId\":\"6f8daea4992\",\"author\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1643374699000,\"committer\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1643374699000,\"message\":\"ODS: Export OpenShift configuration \\rBuild (assemble) #6 - Change: 1.0, Project: ordgp, Target Environment: ordgp-dev, Version: WIP\\rhttps://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/6/ [ci skip]\",\"parents\":[{\"id\":\"ed5e4be3331511c1f01c3a9e88a8193612fe2304\",\"displayId\":\"ed5e4be3331\"}]},{\"id\":\"ed5e4be3331511c1f01c3a9e88a8193612fe2304\",\"displayId\":\"ed5e4be3331\",\"author\":{\"name\":\"tech_integration\",\"emailAddress\":\"tech_integration@bi.com\",\"id\":254,\"displayName\":\"Technical Integration\",\"active\":true,\"slug\":\"tech_integration\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/tech_integration\"}]}},\"authorTimestamp\":1643369766000,\"committer\":{\"name\":\"tech_integration\",\"emailAddress\":\"tech_integration@bi.com\",\"id\":254,\"displayName\":\"Technical Integration\",\"active\":true,\"slug\":\"tech_integration\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/tech_integration\"}]}},\"committerTimestamp\":1643369766000,\"message\":\"4.x by 3.x\",\"parents\":[{\"id\":\"0f87acdfaca7006b1c6138bd92257efcd3cf7605\",\"displayId\":\"0f87acdfaca\"}]},{\"id\":\"0f87acdfaca7006b1c6138bd92257efcd3cf7605\",\"displayId\":\"0f87acdfaca\",\"author\":{\"name\":\"tech_integration\",\"emailAddress\":\"tech_integration@bi.com\",\"id\":254,\"displayName\":\"Technical Integration\",\"active\":true,\"slug\":\"tech_integration\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/tech_integration\"}]}},\"authorTimestamp\":1643369141000,\"committer\":{\"name\":\"tech_integration\",\"emailAddress\":\"tech_integration@bi.com\",\"id\":254,\"displayName\":\"Technical Integration\",\"active\":true,\"slug\":\"tech_integration\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/tech_integration\"}]}},\"committerTimestamp\":1643369141000,\"message\":\"3.x by 4.x\",\"parents\":[{\"id\":\"a8744cfae44668c9de1d7233d1ce0123ae2413bc\",\"displayId\":\"a8744cfae44\"}]},{\"id\":\"a8744cfae44668c9de1d7233d1ce0123ae2413bc\",\"displayId\":\"a8744cfae44\",\"author\":{\"name\":\"tech_integration\",\"emailAddress\":\"tech_integration@bi.com\",\"id\":254,\"displayName\":\"Technical Integration\",\"active\":true,\"slug\":\"tech_integration\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/tech_integration\"}]}},\"authorTimestamp\":1643366919000,\"committer\":{\"name\":\"tech_integration\",\"emailAddress\":\"tech_integration@bi.com\",\"id\":254,\"displayName\":\"Technical Integration\",\"active\":true,\"slug\":\"tech_integration\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/tech_integration\"}]}},\"committerTimestamp\":1643366919000,\"message\":\"odsComponentStageImportOpenShiftImageOrElse has been replaced by odsComponentFindOpenShiftImageOrElse\",\"parents\":[{\"id\":\"fe4095dce87782e9be9d4a6ea43042c05db3e53e\",\"displayId\":\"fe4095dce87\"}]},{\"id\":\"fe4095dce87782e9be9d4a6ea43042c05db3e53e\",\"displayId\":\"fe4095dce87\",\"author\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"authorTimestamp\":1643288584000,\"committer\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"committerTimestamp\":1643288584000,\"message\":\"BackendApplicationTests.java edited online with Bitbucket\",\"parents\":[{\"id\":\"c986f2b5d9fa9e87da35817bc49b06c643332518\",\"displayId\":\"c986f2b5d9f\"}]},{\"id\":\"c986f2b5d9fa9e87da35817bc49b06c643332518\",\"displayId\":\"c986f2b5d9f\",\"author\":{\"name\":\"ODS System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1643211042000,\"committer\":{\"name\":\"ODS System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1643211042000,\"message\":\"Initial OpenDevStack commit\",\"parents\":[]}],\"size\":8,\"isLastPage\":true,\"start\":0,\"limit\":10,\"nextPageStart\":null}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:45 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073134x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=D9B0E02BF8CFBB6DB921E2CF1CF0F848; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:45 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "r5s4h1", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "09dd28c3-26f0-4894-8244-844f3030e664", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_0f87acdfaca7006b1c6138bd92257efcd3cf7605_pull-requests-a749ae09-5d2f-43d1-9f5e-1a5c5414d1f9.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_0f87acdfaca7006b1c6138bd92257efcd3cf7605_pull-requests-a749ae09-5d2f-43d1-9f5e-1a5c5414d1f9.json new file mode 100644 index 00000000..54094d90 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_0f87acdfaca7006b1c6138bd92257efcd3cf7605_pull-requests-a749ae09-5d2f-43d1-9f5e-1a5c5414d1f9.json @@ -0,0 +1,30 @@ +{ + "id" : "a749ae09-5d2f-43d1-9f5e-1a5c5414d1f9", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_0f87acdfaca7006b1c6138bd92257efcd3cf7605_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-backend/commits/0f87acdfaca7006b1c6138bd92257efcd3cf7605/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:46 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073139x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=A1BFEE85E2961C83BDD47BB1550D7BC1; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:46 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "ly9erf", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "a749ae09-5d2f-43d1-9f5e-1a5c5414d1f9", + "persistent" : true, + "insertionIndex" : 6 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_138495888301232315f5455aeb17cc635982ba2c_pull-requests-c675df80-bc13-41f5-83ac-3e8bef16abcb.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_138495888301232315f5455aeb17cc635982ba2c_pull-requests-c675df80-bc13-41f5-83ac-3e8bef16abcb.json new file mode 100644 index 00000000..17c0f10f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_138495888301232315f5455aeb17cc635982ba2c_pull-requests-c675df80-bc13-41f5-83ac-3e8bef16abcb.json @@ -0,0 +1,30 @@ +{ + "id" : "c675df80-bc13-41f5-83ac-3e8bef16abcb", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_138495888301232315f5455aeb17cc635982ba2c_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-backend/commits/138495888301232315f5455aeb17cc635982ba2c/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:45 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073135x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=9A2A6B1EE8403B4A631A48380F77530F; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:45 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "ttcuvi", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "c675df80-bc13-41f5-83ac-3e8bef16abcb", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_27eb2abe4554932afa94f9a40a72d2165158ae6b_pull-requests-c12eab7a-227e-4793-8e3c-62d059c97e8b.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_27eb2abe4554932afa94f9a40a72d2165158ae6b_pull-requests-c12eab7a-227e-4793-8e3c-62d059c97e8b.json new file mode 100644 index 00000000..e9cbabf6 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_27eb2abe4554932afa94f9a40a72d2165158ae6b_pull-requests-c12eab7a-227e-4793-8e3c-62d059c97e8b.json @@ -0,0 +1,30 @@ +{ + "id" : "c12eab7a-227e-4793-8e3c-62d059c97e8b", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_27eb2abe4554932afa94f9a40a72d2165158ae6b_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-backend/commits/27eb2abe4554932afa94f9a40a72d2165158ae6b/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:45 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073136x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=A82856745D5DC566EBB5050827F68B0B; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:45 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "1gybw4l", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "c12eab7a-227e-4793-8e3c-62d059c97e8b", + "persistent" : true, + "insertionIndex" : 3 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_6f8daea49927f08c0be572fc745f8396d2aec66f_pull-requests-97721679-4c8d-4dfd-b846-22631f403ce0.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_6f8daea49927f08c0be572fc745f8396d2aec66f_pull-requests-97721679-4c8d-4dfd-b846-22631f403ce0.json new file mode 100644 index 00000000..f8945a54 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_6f8daea49927f08c0be572fc745f8396d2aec66f_pull-requests-97721679-4c8d-4dfd-b846-22631f403ce0.json @@ -0,0 +1,30 @@ +{ + "id" : "97721679-4c8d-4dfd-b846-22631f403ce0", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_6f8daea49927f08c0be572fc745f8396d2aec66f_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-backend/commits/6f8daea49927f08c0be572fc745f8396d2aec66f/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:46 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073137x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=38E395E08D135EE205A0BB58EA776F84; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:45 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "1dhvaay", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "97721679-4c8d-4dfd-b846-22631f403ce0", + "persistent" : true, + "insertionIndex" : 4 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_a8744cfae44668c9de1d7233d1ce0123ae2413bc_pull-requests-d1ca0129-7617-4563-a828-d1d4afc230a8.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_a8744cfae44668c9de1d7233d1ce0123ae2413bc_pull-requests-d1ca0129-7617-4563-a828-d1d4afc230a8.json new file mode 100644 index 00000000..b5ff6df2 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_a8744cfae44668c9de1d7233d1ce0123ae2413bc_pull-requests-d1ca0129-7617-4563-a828-d1d4afc230a8.json @@ -0,0 +1,30 @@ +{ + "id" : "d1ca0129-7617-4563-a828-d1d4afc230a8", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_a8744cfae44668c9de1d7233d1ce0123ae2413bc_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-backend/commits/a8744cfae44668c9de1d7233d1ce0123ae2413bc/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:46 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073140x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=103C56CA0FE622BAC3BE4ADA394918C1; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:46 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "162t3px", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "d1ca0129-7617-4563-a828-d1d4afc230a8", + "persistent" : true, + "insertionIndex" : 7 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_c986f2b5d9fa9e87da35817bc49b06c643332518_pull-requests-f63bc47e-d776-4ec9-8395-110d233b54de.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_c986f2b5d9fa9e87da35817bc49b06c643332518_pull-requests-f63bc47e-d776-4ec9-8395-110d233b54de.json new file mode 100644 index 00000000..889c068a --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_c986f2b5d9fa9e87da35817bc49b06c643332518_pull-requests-f63bc47e-d776-4ec9-8395-110d233b54de.json @@ -0,0 +1,30 @@ +{ + "id" : "f63bc47e-d776-4ec9-8395-110d233b54de", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_c986f2b5d9fa9e87da35817bc49b06c643332518_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-backend/commits/c986f2b5d9fa9e87da35817bc49b06c643332518/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:47 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073142x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=69319448C6F50445414050426CC1A2E5; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:47 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "19jn20m", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "f63bc47e-d776-4ec9-8395-110d233b54de", + "persistent" : true, + "insertionIndex" : 9 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_ed5e4be3331511c1f01c3a9e88a8193612fe2304_pull-requests-3394baf5-2fe2-42f7-98b2-04d2ffa6f4e6.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_ed5e4be3331511c1f01c3a9e88a8193612fe2304_pull-requests-3394baf5-2fe2-42f7-98b2-04d2ffa6f4e6.json new file mode 100644 index 00000000..b655f8ba --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_ed5e4be3331511c1f01c3a9e88a8193612fe2304_pull-requests-3394baf5-2fe2-42f7-98b2-04d2ffa6f4e6.json @@ -0,0 +1,30 @@ +{ + "id" : "3394baf5-2fe2-42f7-98b2-04d2ffa6f4e6", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_ed5e4be3331511c1f01c3a9e88a8193612fe2304_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-backend/commits/ed5e4be3331511c1f01c3a9e88a8193612fe2304/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:46 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073138x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=2AC2BC968F8CCA45592E5395EA1B76E2; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:46 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "imj9ue", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "3394baf5-2fe2-42f7-98b2-04d2ffa6f4e6", + "persistent" : true, + "insertionIndex" : 5 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_fe4095dce87782e9be9d4a6ea43042c05db3e53e_pull-requests-a5955bd4-96ca-4847-9da7-ff4a128f5e46.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_fe4095dce87782e9be9d4a6ea43042c05db3e53e_pull-requests-a5955bd4-96ca-4847-9da7-ff4a128f5e46.json new file mode 100644 index 00000000..fe2fc364 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_fe4095dce87782e9be9d4a6ea43042c05db3e53e_pull-requests-a5955bd4-96ca-4847-9da7-ff4a128f5e46.json @@ -0,0 +1,30 @@ +{ + "id" : "a5955bd4-96ca-4847-9da7-ff4a128f5e46", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-backend_commits_fe4095dce87782e9be9d4a6ea43042c05db3e53e_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-backend/commits/fe4095dce87782e9be9d4a6ea43042c05db3e53e/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:46 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073141x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=09A720943B09C4DCFBB8E9F393D6ADA6; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:46 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "4ctzkv", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "a5955bd4-96ca-4847-9da7-ff4a128f5e46", + "persistent" : true, + "insertionIndex" : 8 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits-ef5bcd40-4e61-4f33-adf7-1d280c4b6ccc.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits-ef5bcd40-4e61-4f33-adf7-1d280c4b6ccc.json new file mode 100644 index 00000000..45e98535 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits-ef5bcd40-4e61-4f33-adf7-1d280c4b6ccc.json @@ -0,0 +1,30 @@ +{ + "id" : "ef5bcd40-4e61-4f33-adf7-1d280c4b6ccc", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-frontend/commits?limit=10&start=0", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"values\":[{\"id\":\"3b5a62fbb2307d95360da386408b7f668f0e89ae\",\"displayId\":\"3b5a62fbb23\",\"author\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1646133854000,\"committer\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1646133854000,\"message\":\"ODS: Export OpenShift configuration \\rBuild (assemble) #13 - Change: 1.0, Project: ordgp, Target Environment: ordgp-dev, Version: WIP\\rhttps://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/13/ [ci skip]\",\"parents\":[{\"id\":\"c385c58ed1e65b1a62be56f8ceb1eb0ed7fdf293\",\"displayId\":\"c385c58ed1e\"}]},{\"id\":\"c385c58ed1e65b1a62be56f8ceb1eb0ed7fdf293\",\"displayId\":\"c385c58ed1e\",\"author\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1643375639000,\"committer\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1643375639000,\"message\":\"ODS: Export OpenShift configuration \\rBuild (assemble) #7 - Change: 1.0, Project: ordgp, Target Environment: ordgp-dev, Version: WIP\\rhttps://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/7/ [ci skip]\",\"parents\":[{\"id\":\"1d20ca4cbd91841d48f85866f309030f06cf0fa2\",\"displayId\":\"1d20ca4cbd9\"}]},{\"id\":\"1d20ca4cbd91841d48f85866f309030f06cf0fa2\",\"displayId\":\"1d20ca4cbd9\",\"author\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1643374699000,\"committer\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1643374699000,\"message\":\"ODS: Export OpenShift configuration \\rBuild (assemble) #6 - Change: 1.0, Project: ordgp, Target Environment: ordgp-dev, Version: WIP\\rhttps://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/6/ [ci skip]\",\"parents\":[{\"id\":\"22a22af1acf9bdbd3d8afa1a4398036ac7ba0825\",\"displayId\":\"22a22af1acf\"}]},{\"id\":\"22a22af1acf9bdbd3d8afa1a4398036ac7ba0825\",\"displayId\":\"22a22af1acf\",\"author\":{\"name\":\"ODS System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1643211113000,\"committer\":{\"name\":\"ODS System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1643211113000,\"message\":\"Initial OpenDevStack commit\",\"parents\":[]}],\"size\":4,\"isLastPage\":true,\"start\":0,\"limit\":10,\"nextPageStart\":null}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:47 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073143x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=C018860A7B6B97B557F747BE68C853F6; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:47 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "igyhbq", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "ef5bcd40-4e61-4f33-adf7-1d280c4b6ccc", + "persistent" : true, + "insertionIndex" : 10 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_1d20ca4cbd91841d48f85866f309030f06cf0fa2_pull-requests-16e80e9f-0649-437b-a9cb-bff8a7961e5e.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_1d20ca4cbd91841d48f85866f309030f06cf0fa2_pull-requests-16e80e9f-0649-437b-a9cb-bff8a7961e5e.json new file mode 100644 index 00000000..a97052ca --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_1d20ca4cbd91841d48f85866f309030f06cf0fa2_pull-requests-16e80e9f-0649-437b-a9cb-bff8a7961e5e.json @@ -0,0 +1,30 @@ +{ + "id" : "16e80e9f-0649-437b-a9cb-bff8a7961e5e", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_1d20ca4cbd91841d48f85866f309030f06cf0fa2_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-frontend/commits/1d20ca4cbd91841d48f85866f309030f06cf0fa2/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:47 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073146x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=BDA72DAEA3668D9AF2BBBBBE79CBB157; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:47 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "18vzute", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "16e80e9f-0649-437b-a9cb-bff8a7961e5e", + "persistent" : true, + "insertionIndex" : 13 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_22a22af1acf9bdbd3d8afa1a4398036ac7ba0825_pull-requests-b157b9a6-0827-4118-98cb-dff72f40997a.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_22a22af1acf9bdbd3d8afa1a4398036ac7ba0825_pull-requests-b157b9a6-0827-4118-98cb-dff72f40997a.json new file mode 100644 index 00000000..860d78d6 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_22a22af1acf9bdbd3d8afa1a4398036ac7ba0825_pull-requests-b157b9a6-0827-4118-98cb-dff72f40997a.json @@ -0,0 +1,30 @@ +{ + "id" : "b157b9a6-0827-4118-98cb-dff72f40997a", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_22a22af1acf9bdbd3d8afa1a4398036ac7ba0825_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-frontend/commits/22a22af1acf9bdbd3d8afa1a4398036ac7ba0825/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:48 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073147x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=B3E3CE1463EF40597BE6F9FD810245D8; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:48 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "1evud9", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "b157b9a6-0827-4118-98cb-dff72f40997a", + "persistent" : true, + "insertionIndex" : 14 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_3b5a62fbb2307d95360da386408b7f668f0e89ae_pull-requests-aa27c6d3-f30f-4cfd-b7e6-3d72561c0839.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_3b5a62fbb2307d95360da386408b7f668f0e89ae_pull-requests-aa27c6d3-f30f-4cfd-b7e6-3d72561c0839.json new file mode 100644 index 00000000..2547e580 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_3b5a62fbb2307d95360da386408b7f668f0e89ae_pull-requests-aa27c6d3-f30f-4cfd-b7e6-3d72561c0839.json @@ -0,0 +1,30 @@ +{ + "id" : "aa27c6d3-f30f-4cfd-b7e6-3d72561c0839", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_3b5a62fbb2307d95360da386408b7f668f0e89ae_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-frontend/commits/3b5a62fbb2307d95360da386408b7f668f0e89ae/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:47 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073144x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=F708B86F48F06331103BF15DD29BB7B7; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:47 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "157qcma", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "aa27c6d3-f30f-4cfd-b7e6-3d72561c0839", + "persistent" : true, + "insertionIndex" : 11 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_c385c58ed1e65b1a62be56f8ceb1eb0ed7fdf293_pull-requests-5f84f99a-c631-4585-83c8-d209c417d1aa.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_c385c58ed1e65b1a62be56f8ceb1eb0ed7fdf293_pull-requests-5f84f99a-c631-4585-83c8-d209c417d1aa.json new file mode 100644 index 00000000..902d20a7 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_c385c58ed1e65b1a62be56f8ceb1eb0ed7fdf293_pull-requests-5f84f99a-c631-4585-83c8-d209c417d1aa.json @@ -0,0 +1,30 @@ +{ + "id" : "5f84f99a-c631-4585-83c8-d209c417d1aa", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-frontend_commits_c385c58ed1e65b1a62be56f8ceb1eb0ed7fdf293_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-frontend/commits/c385c58ed1e65b1a62be56f8ceb1eb0ed7fdf293/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:47 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073145x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=314467E590EE8095983FDEE3398CED73; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:47 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "l699at", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "5f84f99a-c631-4585-83c8-d209c417d1aa", + "persistent" : true, + "insertionIndex" : 12 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits-2af217ef-9a4d-4708-b28c-f1b87a3cfdab.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits-2af217ef-9a4d-4708-b28c-f1b87a3cfdab.json new file mode 100644 index 00000000..65892784 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits-2af217ef-9a4d-4708-b28c-f1b87a3cfdab.json @@ -0,0 +1,30 @@ +{ + "id" : "2af217ef-9a4d-4708-b28c-f1b87a3cfdab", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits?limit=10&start=0", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"values\":[{\"id\":\"417c5b12c0af838cf0b843feb16ee5b7b1dab4ec\",\"displayId\":\"417c5b12c0a\",\"author\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1646133845000,\"committer\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1646133845000,\"message\":\"ODS: Record configuration only\\rBuild (assemble) #13 - Change: 1.0, Project: ordgp, Target Environment: ordgp-dev, Version: WIP\\rhttps://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/13/ [ci skip]\",\"parents\":[{\"id\":\"61a229c55991e0e89362016bf53d968df233aa80\",\"displayId\":\"61a229c5599\"}]},{\"id\":\"61a229c55991e0e89362016bf53d968df233aa80\",\"displayId\":\"61a229c5599\",\"author\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"authorTimestamp\":1646133164000,\"committer\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"committerTimestamp\":1646133164000,\"message\":\"DemoAcceptanceSpec.groovy edited online with Bitbucket\",\"parents\":[{\"id\":\"3e9ed20ad8199d1918747615bd883eab81b03d59\",\"displayId\":\"3e9ed20ad81\"}]},{\"id\":\"3e9ed20ad8199d1918747615bd883eab81b03d59\",\"displayId\":\"3e9ed20ad81\",\"author\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1643375627000,\"committer\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1643375627000,\"message\":\"ODS: Record configuration only\\rBuild (assemble) #7 - Change: 1.0, Project: ordgp, Target Environment: ordgp-dev, Version: WIP\\rhttps://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/7/ [ci skip]\",\"parents\":[{\"id\":\"a57135216f276212ca68e928b057a620a8c8f893\",\"displayId\":\"a57135216f2\"}]},{\"id\":\"a57135216f276212ca68e928b057a620a8c8f893\",\"displayId\":\"a57135216f2\",\"author\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"authorTimestamp\":1643374861000,\"committer\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"committerTimestamp\":1643374861000,\"message\":\"DemoInstallationSpec.groovy edited online with Bitbucket\",\"parents\":[{\"id\":\"94cee7f4c383e25f7de9a792a3102dcc1baae3f6\",\"displayId\":\"94cee7f4c38\"}]},{\"id\":\"94cee7f4c383e25f7de9a792a3102dcc1baae3f6\",\"displayId\":\"94cee7f4c38\",\"author\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1643374690000,\"committer\":{\"name\":\"ODS Jenkins Shared Library System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1643374690000,\"message\":\"ODS: Record configuration only\\rBuild (assemble) #6 - Change: 1.0, Project: ordgp, Target Environment: ordgp-dev, Version: WIP\\rhttps://jenkins-ordgp-cd.inh-odsapps.eu.boehringer.com/job/ordgp-cd/job/ordgp-cd-releasemanager-master/6/ [ci skip]\",\"parents\":[{\"id\":\"c614ba7de496377adcee5714efd55c70eb46aa48\",\"displayId\":\"c614ba7de49\"}]},{\"id\":\"c614ba7de496377adcee5714efd55c70eb46aa48\",\"displayId\":\"c614ba7de49\",\"author\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"authorTimestamp\":1643366632000,\"committer\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"committerTimestamp\":1643366632000,\"message\":\"DemoIntegrationSpec.groovy edited online with Bitbucket\",\"parents\":[{\"id\":\"477acbe8cc0776a2bdac22562562fb56f7dbf63a\",\"displayId\":\"477acbe8cc0\"}]},{\"id\":\"477acbe8cc0776a2bdac22562562fb56f7dbf63a\",\"displayId\":\"477acbe8cc0\",\"author\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"authorTimestamp\":1643288337000,\"committer\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"committerTimestamp\":1643288337000,\"message\":\"DemoIntegrationSpec.groovy edited online with Bitbucket\",\"parents\":[{\"id\":\"6eb766261ba773653289dbe73a813ec028a239a0\",\"displayId\":\"6eb766261ba\"}]},{\"id\":\"6eb766261ba773653289dbe73a813ec028a239a0\",\"displayId\":\"6eb766261ba\",\"author\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"authorTimestamp\":1643288279000,\"committer\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"committerTimestamp\":1643288279000,\"message\":\"DemoInstallationSpec.groovy edited online with Bitbucket\",\"parents\":[{\"id\":\"67d6729bebad928ac72848c5bc39329102e21146\",\"displayId\":\"67d6729beba\"}]},{\"id\":\"67d6729bebad928ac72848c5bc39329102e21146\",\"displayId\":\"67d6729beba\",\"author\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"authorTimestamp\":1643288249000,\"committer\":{\"name\":\"user1.paraiso.ext@domain.com\",\"emailAddress\":\"user1.paraiso.ext@domain.com\",\"id\":3748,\"displayName\":\"zxBCN Paraiso,User (IT EDS) EXTERNAL\",\"active\":true,\"slug\":\"user1.paraiso.ext_domain.com\",\"type\":\"NORMAL\",\"links\":{\"self\":[{\"href\":\"https://bitbucket-dev.biscrum.com/users/user1.paraiso.ext_domain.com\"}]}},\"committerTimestamp\":1643288249000,\"message\":\"DemoAcceptanceSpec.groovy edited online with Bitbucket\",\"parents\":[{\"id\":\"cb3c9767e7616b6409327e44989032222c9cb384\",\"displayId\":\"cb3c9767e76\"}]},{\"id\":\"cb3c9767e7616b6409327e44989032222c9cb384\",\"displayId\":\"cb3c9767e76\",\"author\":{\"name\":\"ODS System User\",\"emailAddress\":\"undefined\"},\"authorTimestamp\":1643211092000,\"committer\":{\"name\":\"ODS System User\",\"emailAddress\":\"undefined\"},\"committerTimestamp\":1643211092000,\"message\":\"Initial OpenDevStack commit\",\"parents\":[]}],\"size\":10,\"isLastPage\":true,\"start\":0,\"limit\":10,\"nextPageStart\":null}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:48 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073148x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=C6968BC47CE4324E552583780A46EF0B; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:48 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "1x8t7ze", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "2af217ef-9a4d-4708-b28c-f1b87a3cfdab", + "persistent" : true, + "insertionIndex" : 15 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_3e9ed20ad8199d1918747615bd883eab81b03d59_pull-requests-2697e482-2d4e-49aa-b2da-1a955e11c3ae.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_3e9ed20ad8199d1918747615bd883eab81b03d59_pull-requests-2697e482-2d4e-49aa-b2da-1a955e11c3ae.json new file mode 100644 index 00000000..8bc5afe9 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_3e9ed20ad8199d1918747615bd883eab81b03d59_pull-requests-2697e482-2d4e-49aa-b2da-1a955e11c3ae.json @@ -0,0 +1,30 @@ +{ + "id" : "2697e482-2d4e-49aa-b2da-1a955e11c3ae", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_3e9ed20ad8199d1918747615bd883eab81b03d59_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/3e9ed20ad8199d1918747615bd883eab81b03d59/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:49 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073151x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=57CFFC90E3D240B5AF57BF4E367BFE82; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:49 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "5k9lop", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "2697e482-2d4e-49aa-b2da-1a955e11c3ae", + "persistent" : true, + "insertionIndex" : 18 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_417c5b12c0af838cf0b843feb16ee5b7b1dab4ec_pull-requests-d567705c-c9f6-4d6b-b921-7db1bf39ad4f.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_417c5b12c0af838cf0b843feb16ee5b7b1dab4ec_pull-requests-d567705c-c9f6-4d6b-b921-7db1bf39ad4f.json new file mode 100644 index 00000000..6b5039a0 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_417c5b12c0af838cf0b843feb16ee5b7b1dab4ec_pull-requests-d567705c-c9f6-4d6b-b921-7db1bf39ad4f.json @@ -0,0 +1,30 @@ +{ + "id" : "d567705c-c9f6-4d6b-b921-7db1bf39ad4f", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_417c5b12c0af838cf0b843feb16ee5b7b1dab4ec_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/417c5b12c0af838cf0b843feb16ee5b7b1dab4ec/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:48 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073149x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=682BF1525F6144CC989DF44F6190D94D; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:48 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "p31ex0", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "d567705c-c9f6-4d6b-b921-7db1bf39ad4f", + "persistent" : true, + "insertionIndex" : 16 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_477acbe8cc0776a2bdac22562562fb56f7dbf63a_pull-requests-76dfd7a5-ad9b-4743-b8a2-f9bf101d9a7a.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_477acbe8cc0776a2bdac22562562fb56f7dbf63a_pull-requests-76dfd7a5-ad9b-4743-b8a2-f9bf101d9a7a.json new file mode 100644 index 00000000..dda06569 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_477acbe8cc0776a2bdac22562562fb56f7dbf63a_pull-requests-76dfd7a5-ad9b-4743-b8a2-f9bf101d9a7a.json @@ -0,0 +1,30 @@ +{ + "id" : "76dfd7a5-ad9b-4743-b8a2-f9bf101d9a7a", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_477acbe8cc0776a2bdac22562562fb56f7dbf63a_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/477acbe8cc0776a2bdac22562562fb56f7dbf63a/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:49 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073155x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=2E0A7FD5DEF77E4DE59F01EEFA16F84F; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:49 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "tlyvug", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "76dfd7a5-ad9b-4743-b8a2-f9bf101d9a7a", + "persistent" : true, + "insertionIndex" : 22 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_61a229c55991e0e89362016bf53d968df233aa80_pull-requests-788928e0-72a7-4c0e-9c90-7d75f1e108b0.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_61a229c55991e0e89362016bf53d968df233aa80_pull-requests-788928e0-72a7-4c0e-9c90-7d75f1e108b0.json new file mode 100644 index 00000000..6cc7e086 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_61a229c55991e0e89362016bf53d968df233aa80_pull-requests-788928e0-72a7-4c0e-9c90-7d75f1e108b0.json @@ -0,0 +1,30 @@ +{ + "id" : "788928e0-72a7-4c0e-9c90-7d75f1e108b0", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_61a229c55991e0e89362016bf53d968df233aa80_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/61a229c55991e0e89362016bf53d968df233aa80/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:48 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073150x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=14C547F72105DB0C06F2AC6FFA37A2FF; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:48 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "2x8m3a", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "788928e0-72a7-4c0e-9c90-7d75f1e108b0", + "persistent" : true, + "insertionIndex" : 17 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_67d6729bebad928ac72848c5bc39329102e21146_pull-requests-56813f7c-e607-4fbd-ae04-d0201fa37e20.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_67d6729bebad928ac72848c5bc39329102e21146_pull-requests-56813f7c-e607-4fbd-ae04-d0201fa37e20.json new file mode 100644 index 00000000..6aeee47a --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_67d6729bebad928ac72848c5bc39329102e21146_pull-requests-56813f7c-e607-4fbd-ae04-d0201fa37e20.json @@ -0,0 +1,30 @@ +{ + "id" : "56813f7c-e607-4fbd-ae04-d0201fa37e20", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_67d6729bebad928ac72848c5bc39329102e21146_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/67d6729bebad928ac72848c5bc39329102e21146/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:50 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073157x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=4BC35D005728A41729CEE88AC48E84D8; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:50 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "dx0kgi", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "56813f7c-e607-4fbd-ae04-d0201fa37e20", + "persistent" : true, + "insertionIndex" : 24 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_6eb766261ba773653289dbe73a813ec028a239a0_pull-requests-7bfd6dda-75f4-4b81-b3b3-098f11d9393f.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_6eb766261ba773653289dbe73a813ec028a239a0_pull-requests-7bfd6dda-75f4-4b81-b3b3-098f11d9393f.json new file mode 100644 index 00000000..53f861ec --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_6eb766261ba773653289dbe73a813ec028a239a0_pull-requests-7bfd6dda-75f4-4b81-b3b3-098f11d9393f.json @@ -0,0 +1,30 @@ +{ + "id" : "7bfd6dda-75f4-4b81-b3b3-098f11d9393f", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_6eb766261ba773653289dbe73a813ec028a239a0_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/6eb766261ba773653289dbe73a813ec028a239a0/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:50 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073156x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=95EF536B1F9EC767F3B2D0AA904C76C5; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:50 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "mz2w9k", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "7bfd6dda-75f4-4b81-b3b3-098f11d9393f", + "persistent" : true, + "insertionIndex" : 23 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_94cee7f4c383e25f7de9a792a3102dcc1baae3f6_pull-requests-86cbf831-2dfd-498e-bb0a-9a0df395b567.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_94cee7f4c383e25f7de9a792a3102dcc1baae3f6_pull-requests-86cbf831-2dfd-498e-bb0a-9a0df395b567.json new file mode 100644 index 00000000..a3b285f4 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_94cee7f4c383e25f7de9a792a3102dcc1baae3f6_pull-requests-86cbf831-2dfd-498e-bb0a-9a0df395b567.json @@ -0,0 +1,30 @@ +{ + "id" : "86cbf831-2dfd-498e-bb0a-9a0df395b567", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_94cee7f4c383e25f7de9a792a3102dcc1baae3f6_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/94cee7f4c383e25f7de9a792a3102dcc1baae3f6/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:49 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073153x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=88D3F6E73EEE97BB782FB98A178919B0; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:49 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "11yuca4", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "86cbf831-2dfd-498e-bb0a-9a0df395b567", + "persistent" : true, + "insertionIndex" : 20 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_a57135216f276212ca68e928b057a620a8c8f893_pull-requests-e62cb6a9-a0a8-4ea8-a232-fb4742ce89ed.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_a57135216f276212ca68e928b057a620a8c8f893_pull-requests-e62cb6a9-a0a8-4ea8-a232-fb4742ce89ed.json new file mode 100644 index 00000000..24ebc413 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_a57135216f276212ca68e928b057a620a8c8f893_pull-requests-e62cb6a9-a0a8-4ea8-a232-fb4742ce89ed.json @@ -0,0 +1,30 @@ +{ + "id" : "e62cb6a9-a0a8-4ea8-a232-fb4742ce89ed", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_a57135216f276212ca68e928b057a620a8c8f893_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/a57135216f276212ca68e928b057a620a8c8f893/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:49 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073152x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=50BE6976A35755879A8BC46A955E4F78; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:49 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "1xwntip", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "e62cb6a9-a0a8-4ea8-a232-fb4742ce89ed", + "persistent" : true, + "insertionIndex" : 19 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_c614ba7de496377adcee5714efd55c70eb46aa48_pull-requests-b5da4014-5560-44e2-bfcc-676cdf6e192f.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_c614ba7de496377adcee5714efd55c70eb46aa48_pull-requests-b5da4014-5560-44e2-bfcc-676cdf6e192f.json new file mode 100644 index 00000000..ec05098b --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_c614ba7de496377adcee5714efd55c70eb46aa48_pull-requests-b5da4014-5560-44e2-bfcc-676cdf6e192f.json @@ -0,0 +1,30 @@ +{ + "id" : "b5da4014-5560-44e2-bfcc-676cdf6e192f", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_c614ba7de496377adcee5714efd55c70eb46aa48_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/c614ba7de496377adcee5714efd55c70eb46aa48/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:49 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073154x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=C5D1E8042D82CB11DC19A1B14CDD29A0; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:49 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "lpscyb", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "b5da4014-5560-44e2-bfcc-676cdf6e192f", + "persistent" : true, + "insertionIndex" : 21 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_cb3c9767e7616b6409327e44989032222c9cb384_pull-requests-6aaf88e2-4ac5-4552-8d67-1741f6455bf6.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_cb3c9767e7616b6409327e44989032222c9cb384_pull-requests-6aaf88e2-4ac5-4552-8d67-1741f6455bf6.json new file mode 100644 index 00000000..1a6dca49 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-test_commits_cb3c9767e7616b6409327e44989032222c9cb384_pull-requests-6aaf88e2-4ac5-4552-8d67-1741f6455bf6.json @@ -0,0 +1,30 @@ +{ + "id" : "6aaf88e2-4ac5-4552-8d67-1741f6455bf6", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-test_commits_cb3c9767e7616b6409327e44989032222c9cb384_pull-requests", + "request" : { + "url" : "/rest/api/latest/projects/ORDGP/repos/ordgp-test/commits/cb3c9767e7616b6409327e44989032222c9cb384/pull-requests", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"size\":0,\"limit\":25,\"isLastPage\":true,\"values\":[],\"start\":0}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:50 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx651x1073158x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=13A9AE6A3DFDAB7102B9CBC2757DAC3E; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:51:50 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "qplx00", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding", + "X-Content-Type-Options" : "nosniff", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "6aaf88e2-4ac5-4552-8d67-1741f6455bf6", + "persistent" : true, + "insertionIndex" : 25 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/__files/secure_attachment_552314_552314_image-2022-02-22-11-10-21-018png-5064372b-fc2d-451d-a61e-f68141c554b0.png b/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/__files/secure_attachment_552314_552314_image-2022-02-22-11-10-21-018png-5064372b-fc2d-451d-a61e-f68141c554b0.png new file mode 100644 index 00000000..92677295 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/__files/secure_attachment_552314_552314_image-2022-02-22-11-10-21-018png-5064372b-fc2d-451d-a61e-f68141c554b0.png differ diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/__files/secure_attachment_552317_552317_image-2022-02-22-11-12-54-300png-ef1dde7e-6bab-4065-a76b-eb89d3678c7d.png b/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/__files/secure_attachment_552317_552317_image-2022-02-22-11-12-54-300png-ef1dde7e-6bab-4065-a76b-eb89d3678c7d.png new file mode 100644 index 00000000..81cadf09 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/__files/secure_attachment_552317_552317_image-2022-02-22-11-12-54-300png-ef1dde7e-6bab-4065-a76b-eb89d3678c7d.png differ diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/mappings/secure_attachment_552314_552314_image-2022-02-22-11-10-21-018png-5064372b-fc2d-451d-a61e-f68141c554b0.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/mappings/secure_attachment_552314_552314_image-2022-02-22-11-10-21-018png-5064372b-fc2d-451d-a61e-f68141c554b0.json new file mode 100644 index 00000000..5e62b966 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/mappings/secure_attachment_552314_552314_image-2022-02-22-11-10-21-018png-5064372b-fc2d-451d-a61e-f68141c554b0.json @@ -0,0 +1,34 @@ +{ + "id" : "5064372b-fc2d-451d-a61e-f68141c554b0", + "name" : "secure_attachment_552314_552314_image-2022-02-22-11-10-21-018png", + "request" : { + "url" : "/secure/attachment/552314/552314_image-2022-02-22-11-10-21-018.png", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "secure_attachment_552314_552314_image-2022-02-22-11-10-21-018png-5064372b-fc2d-451d-a61e-f68141c554b0.png", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:55 GMT", + "Content-Type" : "image/png", + "X-AREQUESTID" : "651x31145x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=2DE2EE7F9E400B136E2DF9A051D0C20C; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_7a980fc1c04cb28d051b1477ad026d3deb9b5323_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "16cbsn0", + "Accept-Ranges" : "bytes", + "Content-Disposition" : "inline; filename*=UTF-8''image-2022-02-22-11-10-21-018.png;", + "Cache-control" : "private, max-age=31536000", + "Expires" : "Wed, 31 Dec 1969 23:59:59 GMT" + } + }, + "uuid" : "5064372b-fc2d-451d-a61e-f68141c554b0", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/mappings/secure_attachment_552317_552317_image-2022-02-22-11-12-54-300png-ef1dde7e-6bab-4065-a76b-eb89d3678c7d.json b/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/mappings/secure_attachment_552317_552317_image-2022-02-22-11-12-54-300png-ef1dde7e-6bab-4065-a76b-eb89d3678c7d.json new file mode 100644 index 00000000..afb33f5c --- /dev/null +++ b/src/test/resources/wiremock/ordgp/SSDS/WIP/jira/mappings/secure_attachment_552317_552317_image-2022-02-22-11-12-54-300png-ef1dde7e-6bab-4065-a76b-eb89d3678c7d.json @@ -0,0 +1,34 @@ +{ + "id" : "ef1dde7e-6bab-4065-a76b-eb89d3678c7d", + "name" : "secure_attachment_552317_552317_image-2022-02-22-11-12-54-300png", + "request" : { + "url" : "/secure/attachment/552317/552317_image-2022-02-22-11-12-54-300.png", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "secure_attachment_552317_552317_image-2022-02-22-11-12-54-300png-ef1dde7e-6bab-4065-a76b-eb89d3678c7d.png", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:51:53 GMT", + "Content-Type" : "image/png", + "X-AREQUESTID" : "651x31144x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=5ABE3833FA24D23C2DEDE04194B5DBBF; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_eec66276229d70a53c674dc938565d338bf52235_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1pvfit", + "Accept-Ranges" : "bytes", + "Content-Disposition" : "inline; filename*=UTF-8''image-2022-02-22-11-12-54-300.png;", + "Cache-control" : "private, max-age=31536000", + "Expires" : "Wed, 31 Dec 1969 23:59:59 GMT" + } + }, + "uuid" : "ef1dde7e-6bab-4065-a76b-eb89d3678c7d", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-033f3d82-9fe2-4a01-8134-8c5db41cb83a.txt b/src/test/resources/wiremock/ordgp/TCR/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-033f3d82-9fe2-4a01-8134-8c5db41cb83a.txt new file mode 100644 index 00000000..7cdb830f Binary files /dev/null and b/src/test/resources/wiremock/ordgp/TCR/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-033f3d82-9fe2-4a01-8134-8c5db41cb83a.txt differ diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-033f3d82-9fe2-4a01-8134-8c5db41cb83a.json b/src/test/resources/wiremock/ordgp/TCR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-033f3d82-9fe2-4a01-8134-8c5db41cb83a.json new file mode 100644 index 00000000..75e88892 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-033f3d82-9fe2-4a01-8134-8c5db41cb83a.json @@ -0,0 +1,31 @@ +{ + "id" : "033f3d82-9fe2-4a01-8134-8c5db41cb83a", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive", + "request" : { + "url" : "/rest/api/latest/projects/ordgp/repos/ordgp-releasemanager/archive?at=master&format=zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-033f3d82-9fe2-4a01-8134-8c5db41cb83a.txt", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:53:51 GMT", + "Content-Type" : "application/octet-stream", + "X-AREQUESTID" : "@1POZ2QTx653x1073162x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=D935958E511C2CD9B49780E7FD284488; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:53:51 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "1udnxw1", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : [ "X-AUSERNAME", "X-AUSERID", "Cookie" ], + "X-Content-Type-Options" : "nosniff", + "Content-Disposition" : "attachment; filename=\"ordgp-releasemanager-master@4e693552bfd.zip\"; filename*=UTF-8''ordgp-releasemanager-master%404e693552bfd.zip", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "033f3d82-9fe2-4a01-8134-8c5db41cb83a", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-b2aad88f-dd90-488a-bdfe-49a8719e904a.json b/src/test/resources/wiremock/ordgp/TCR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-b2aad88f-dd90-488a-bdfe-49a8719e904a.json new file mode 100644 index 00000000..6d550c33 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-b2aad88f-dd90-488a-bdfe-49a8719e904a.json @@ -0,0 +1,28 @@ +{ + "id" : "b2aad88f-dd90-488a-bdfe-49a8719e904a", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive", + "request" : { + "url" : "/rest/api/latest/projects/ordgp/repos/ordgp-releasemanager/archive?at=workInProgressBranch&format=zip", + "method" : "GET" + }, + "response" : { + "status" : 400, + "body" : "{\"errors\":[{\"context\":null,\"message\":\"'workInProgressBranch' is not a valid ref and may not be archived.\",\"exceptionName\":\"com.atlassian.bitbucket.repository.InvalidRefNameException\",\"refName\":\"workInProgressBranch\"}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:53:51 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx653x1073161x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=19661A0758513B6BFAD73FC1B4B00575; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:53:50 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "eprc6z", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding" + } + }, + "uuid" : "b2aad88f-dd90-488a-bdfe-49a8719e904a", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-defc9cbf-0704-4314-9b3f-beef33aa13bb.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-defc9cbf-0704-4314-9b3f-beef33aa13bb.json new file mode 100644 index 00000000..119b223a --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-defc9cbf-0704-4314-9b3f-beef33aa13bb.json @@ -0,0 +1 @@ +{"maxResults":50,"startAt":0,"total":23,"isLast":true,"values":[{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","fieldId":"assignee","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=","hasDefaultValue":true,"operations":["set"],"defaultValue":{"name":"-1"}},{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Component/s","fieldId":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27522","id":"27522","name":"Technology-backend","description":"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27523","id":"27523","name":"Technology-frontend","description":"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27524","id":"27524","name":"Technology-releasemanager","description":"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27525","id":"27525","name":"Technology-test","description":"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse"}]},{"required":false,"schema":{"type":"number","custom":"com.atlassian.jira.plugin.system.customfieldtypes:float","customId":10002},"name":"Story Points","fieldId":"customfield_10002","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"string","custom":"com.pyxis.greenhopper.jira:gh-sprint","customId":10004},"name":"Sprint","fieldId":"customfield_10004","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"option","custom":"org.opendevstack.jira.plugins.projecttemplate:field.requirement.gamptopic","customId":19318},"name":"Gamp Topic","fieldId":"customfield_19318","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72297","value":"operational requirements","id":"72297","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72298","value":"functional requirements","id":"72298","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72299","value":"data requirements","id":"72299","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72300","value":"technical requirements","id":"72300","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72301","value":"interface requirements","id":"72301","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72302","value":"environment requirements","id":"72302","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72303","value":"performance requirements","id":"72303","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72304","value":"availability requirements","id":"72304","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72305","value":"security requirements","id":"72305","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72306","value":"maintenance requirements","id":"72306","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72307","value":"regulatory requirements","id":"72307","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72308","value":"roles","id":"72308","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72309","value":"compatibility","id":"72309","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72310","value":"procedural constraints","id":"72310","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72311","value":"overarching requirements","id":"72311","disabled":false}]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19319},"name":"Req Acceptance Criteria","fieldId":"customfield_19319","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","customId":19320},"name":"FuncSpec Summary","fieldId":"customfield_19320","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19321},"name":"FuncSpec Description","fieldId":"customfield_19321","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19322},"name":"FuncSpec Acceptance Criteria","fieldId":"customfield_19322","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","customId":19323},"name":"ConfigSpec Summary","fieldId":"customfield_19323","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19324},"name":"ConfigSpec Description","fieldId":"customfield_19324","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"option","custom":"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes","customId":19325},"name":"EDP Definition of Ready for Story","fieldId":"customfield_19325","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72002","value":"Risks defined","id":"72002","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72003","value":"Acceptance Tests Ready for Implementation","id":"72003","disabled":false}]},{"required":false,"schema":{"type":"array","items":"option","custom":"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes","customId":19326},"name":"EDP Definition of Done for Story","fieldId":"customfield_19326","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72017","value":"FuncSpec Defined","id":"72017","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72018","value":"ConfigSpec Defined","id":"72018","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72019","value":"All Risks Approved","id":"72019","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72020","value":"All Tests Defined","id":"72020","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72021","value":"All Tests Executed Successful","id":"72021","disabled":false}]},{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","fieldId":"description","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix Version/s","fieldId":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","name":"1.0","archived":false,"released":false,"projectId":30107}]},{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked Issues","fieldId":"issuelinks","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add"]},{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue Type","fieldId":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10001","id":"10001","description":"Created by Jira Software - do not edit or delete. Issue type for a user story.","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10315&avatarType=issuetype","name":"Story","subtask":false,"avatarId":10315}]},{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","fieldId":"labels","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","fieldId":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/1","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/2","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/3","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/4","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/5","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/10400","iconUrl":"https://jira-dev.biscrum.com/images/icons/priority_major.gif","name":"Major","id":"10400"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/10300","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg","name":"Critical","id":"10300"}],"defaultValue":{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/4","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/low.svg","name":"Low","id":"4"}},{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","fieldId":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}}]},{"required":true,"schema":{"type":"user","system":"reporter"},"name":"Reporter","fieldId":"reporter","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=","hasDefaultValue":false,"operations":["set"]},{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","fieldId":"summary","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"version","system":"versions"},"name":"Affects Version/s","fieldId":"versions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","name":"1.0","archived":false,"released":false,"projectId":30107}]}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_search-11acbe57-af94-4a42-9dbb-e8d56a6fd926.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_search-11acbe57-af94-4a42-9dbb-e8d56a6fd926.json new file mode 100644 index 00000000..06c2605f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_search-11acbe57-af94-4a42-9dbb-e8d56a6fd926.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":37,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896665","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896665","key":"ORDGP-37","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@36d61ea3[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@9a990c5[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5234148d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@17de99b6[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6d1c8dd4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@300da7a6[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@42ef5d56[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@211f7f94[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2864244e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@75898673[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d347079[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@170d4594[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VSR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VSR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui1g:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Summary Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896664","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896664","key":"ORDGP-36","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3d4cfc91[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1dd0a01e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ea50dd1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@26ed9a4b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ec6583f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@74a65a64[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@62fb1aa4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@288efb72[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@349549fc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@72a65070[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@48b25aba[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@17387db5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:REP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-REP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui18:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Restore/Recovery Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896663","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896663","key":"ORDGP-35","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@46b591f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@48f35051[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29ae3ca9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7b0d8015[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@77a49532[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@199e17f3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@410d3b1d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@56171601[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5c914f4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6c81aa31[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@447cb16f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2a3510ff[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:BUP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-BUP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui10:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Backup Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896662","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896662","key":"ORDGP-34","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@655a1c47[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6162e85e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6a5a0b3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@70f38821[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@63149ae5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@111bf930[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3a106398[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@56ce467b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11ca2df5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5fd68485[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@66e33044[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@42ba4f7d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0s:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System Monitoring Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896661","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896661","key":"ORDGP-33","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@17fcc1f0[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@28a44215[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@18186a1a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@122637e6[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61d1d67b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5e58f9cc[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5cb10a7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@26f18eff[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@497cf654[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@50f3f02e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@de09cbf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@274c6d8a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:P11"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-P11","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0k:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Part 11 Compliance Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896660","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896660","key":"ORDGP-32","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5ebc409a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2bdc7dd0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33cb5a45[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7bb18311[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@62cf7680[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@16696b2c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f9902d6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@847bf3f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11a5a3c1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4cc89ad2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7b70ae2f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4e7b5839[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0c:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Infrastructure Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896659","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896659","key":"ORDGP-31","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1a544b9b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@178bd35[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61a2c336[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@25774b22[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7a016fbe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3140c941[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@468c072c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@593d7a84[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@28308282[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1f0d5c04[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@399e9dae[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@b453943[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui04:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896658","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896658","key":"ORDGP-30","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@33598aa9[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7fc7e1f4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@68db13cc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@28538762[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c78ed8d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7dfbe58f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d8ecc8f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@79d22acb[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@12ada4f9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3058fcbe[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b09b48e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@63e54356[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:AAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-AAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Application Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896657","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896657","key":"ORDGP-29","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@41fa2b5[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@412e4be[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ab6f6fd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2912d201[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4a5c4245[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2604411a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b884a39[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@14351793[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3c53313a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@38dbab3b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@516be79b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6d5efbaa[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TRC"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:16.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TRC","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Traceability Matrix","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896656","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896656","key":"ORDGP-28","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:43.183+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@715dfc1[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6fefb92d[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33796238[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@214d93ab[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@10efd051[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@507f07a0[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@28efc735[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6572c948[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@bf1e0ef[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@231ba436[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@751b090f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@650b66d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896655","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896655","key":"ORDGP-27","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4a6ff59c[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6dcc02d[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e19edbb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@ea495fd[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@40791a89[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@62363781[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43e37a49[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@69c214b5[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61e7f656[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@32be4fd4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6a575af8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@13c98cbb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896654","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896654","key":"ORDGP-26","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:13.192+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1192d6d6[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d92099f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f965228[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@121564b4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b98510[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@62a09530[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1fda9c5e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@26d37bd5[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@688cfb1a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@e63ea2e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4510afd0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@78206974[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:53.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896653","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896653","key":"ORDGP-25","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@297cfc81[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@605885b3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@21d7be1f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@586c28b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@315e3c40[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@50c2d87e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4cf9a33f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7fd8b2b1[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3fa43d36[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@79630394[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7882b7dc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4275cf47[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:34.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhys:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896652","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896652","key":"ORDGP-24","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2ee25922[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fc54b66[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@38313a3f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5d4ad824[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2e0c518a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@18da7c43[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@298b4da5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@228b3b48[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6ec7ae92[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@25b4ff6d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5621781b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2d8b58ec[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896651","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896651","key":"ORDGP-23","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1c3206e2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2e6191[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f086e48[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6cd9b6d1[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2610d71c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3e77b30d[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@62d1e0a5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@431fad10[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@63173a58[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@607b12ec[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@dc2028e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@330b590b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896650","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896650","key":"ORDGP-22","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@65e1747d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c52d345[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6837f0de[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@52c5ce66[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8d18fc8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@57e2ac60[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@840742[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7c4e4fca[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78e52044[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3aa60294[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a38bc95[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@14068007[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:14:28.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhy4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896649","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896649","key":"ORDGP-21","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:33:19.170+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@762b82e0[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6720c3ca[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4353cd17[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@228c7824[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4bd22486[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@9278c27[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5441c361[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@154ddc95[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fe13cae[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7a92c7c1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@20925939[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5b4080ca[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:52.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896648","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896648","key":"ORDGP-20","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@48e87b63[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f9a9cc5[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@576b0cd4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3cfcde48[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b9552d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@42161bd3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d94a2e9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@17403b8d[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@599e0475[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2b244416[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@434f2871[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5545ffc6[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:54.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896647","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896647","key":"ORDGP-19","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@713fa0b6[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@c802ef5[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@689c79e5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@65661585[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4a755ce9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7c97fe0e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@77cfe328[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@22d00a69[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@422288ce[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@106690a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@9581ca1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2b79cca1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:08:41.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896646","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896646","key":"ORDGP-18","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5ac3319[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@fa5bec0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@73327778[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@51c39460[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4930f1db[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4b03d301[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b6af4ae[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@66c70537[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@28b78e1d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7df9cbd1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14a9f44[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5f7adce7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:00.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896645","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896645","key":"ORDGP-17","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:34.116+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@63ef33b5[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1ce744a3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ae45aeb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@c00c148[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@408d650c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@157ada5c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d41e91a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1741617b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3c4fc39a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7f244675[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6d3f79b2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@716987d7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896644","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896644","key":"ORDGP-16","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@42968744[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@22446176[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6bf9327d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6a37a1a5[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@73d5a709[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@77a32123[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@556b8f70[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@20636f1[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5c353457[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3271bccb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b68a5fa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@8eaadd8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhws:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896643","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896643","key":"ORDGP-15","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@73155e39[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@21557ff0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@49dd9520[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@43fdd914[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@41be773e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5665dee7[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7334259e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5eac7795[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c99fcf9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@14f3856b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@46b95abe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7b948d23[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:06:25.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896642","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896642","key":"ORDGP-14","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7863991[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f3ad657[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2870d80a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@61b12b3d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@603aa703[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1fcec807[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3150e37c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@59d0dea8[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6ce7782e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5801b45[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33fd538a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6c87eec3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SSDS"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:17.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SSDS","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System and Software Design Specification including Source Code Review","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896641","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896641","key":"ORDGP-13","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:20.501+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@291f7259[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@162f9272[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6842adfa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2940e82[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5efbf13f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@8da50f7[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@750a016b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@57c8e156[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@56bb8099[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@c3c2f51[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@299876e4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@39caf0d0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:48.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhw4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896640","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896640","key":"ORDGP-12","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3e60d549[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3835299[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4ba87128[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@52a6f55e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@223ba63d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7bcfd[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@82eace4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6d47a4ba[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@12b2ed61[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2f6f4b9e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@525b9b1b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@269979e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:30.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896639","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896639","key":"ORDGP-11","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:34:49.813+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@75552c4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@251cd494[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@44279f4f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7dc4b2b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@313444ba[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@11c3266f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69e60eff[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@c0695fb[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f841155[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@17fcac94[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4e34c962[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@76a52412[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:15:07.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896638","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896638","key":"ORDGP-10","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:30:53.289+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@60d82bfd[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@720e55f4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6db21d27[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6d934490[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5686f832[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@38787a71[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45de037c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@321e6893[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5338518a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2868126e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d9831fc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5c83982c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:05:18.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL for Dev Preview","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Developer Preview","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896637","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896637","key":"ORDGP-9","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-31T17:42:51.174+0200","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5ba9bcd4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ccc7074[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@409c4c77[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2f3ccbc0[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@144ca0ac[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6adcf1ff[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4801e727[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1aa572c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7012de75[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7d4c9a81[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ab362d0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@69f3419d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:51.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896636","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896636","key":"ORDGP-8","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:04.572+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@cbdef05[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@454ac51[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@483074c5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@69276fb6[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5fc97b9d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@475cb6ca[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@c0174b8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5e09e051[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4a887d9e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@68c078e3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6fe375f7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7e791b32[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:59.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896635","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896635","key":"ORDGP-7","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@42db8937[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@de92fd1[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@766a9e6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@43b5897c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b8fdaaf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@126214f2[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@20f9a6c1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4f6825cb[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6a97c42b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6850880f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5f2e46a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@b3adf62[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:37.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhus:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896634","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896634","key":"ORDGP-6","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4e07244b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1fbb5211[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61838b9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@43f6d9b1[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@24b0adbe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6a559c8[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@413f6455[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@34f11692[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@158d90ef[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@394af08f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@36d263f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3f94e546[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RA"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:07:33.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RA","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Risk Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896633","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896633","key":"ORDGP-5","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:34:12.755+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@322756d1[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@e7ebd32[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4adfd392[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@313360d6[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@468b9ad[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@727ee549[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4689ebd7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6c161600[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d726ffe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@28a383b4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@21fd0224[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7d87a60d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSD"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:03:55.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSD","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Specification Document","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896632","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896632","key":"ORDGP-4","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@336c125a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2eec3d5c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5f8a1077[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1043c007[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@f9f04a8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3a66bcc5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35601a56[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3bada705[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c604e9c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@43ef4341[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@766843c0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@202b4787[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhu4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Client Site Qualification","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896631","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896631","key":"ORDGP-3","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@409ed2cc[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@19a31e8b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47ede600[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@463bef30[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7571f96f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1edb54e7[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@36ae6cda[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2f755750[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@55356950[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@118d637d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5480152a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@51ca173d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RAL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RAL","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Role Assignment Log","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896630","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896630","key":"ORDGP-2","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@788a7504[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33bd6c83[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d43f576[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5c25329[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2fa2f268[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@dad368e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f078a08[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@584bd3da[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@60c24b09[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@43f18d9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@779b959c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@71c84db6[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhto:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Supplier Assessment Mail Questionnaire","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896629","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896629","key":"ORDGP-1","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@708b7ef9[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3e6e2ae8[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@415cf7f4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@e2aac5d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3c1474fe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@f2b9fe6[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@296e2aa0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@727d3394[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6dd11aa1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3e567c52[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@66b57a12[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7d4f04c3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:54.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_search-4d2f49f5-dcad-426f-99a7-0445f6d1c67e.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_search-4d2f49f5-dcad-426f-99a7-0445f6d1c67e.json new file mode 100644 index 00000000..dcffce39 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_search-4d2f49f5-dcad-426f-99a7-0445f6d1c67e.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":37,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896665","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896665","key":"ORDGP-37","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@72d76f75[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4a038f97[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79796152[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2fd026dd[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@38f69498[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@685d7c61[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a9ce3c9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7454c089[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@780ac8cf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7bb70ddb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@46882bcf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@140aeb1f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VSR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VSR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui1g:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Summary Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896664","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896664","key":"ORDGP-36","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5c930f2d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5f16d40a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@72579ad2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1b08b616[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7ca284d2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2afd1b8[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c604a35[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1286eda9[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7a6a6f3f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6b443db[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@484b90da[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6d05c7df[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:REP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-REP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui18:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Restore/Recovery Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896663","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896663","key":"ORDGP-35","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@260aca26[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2120d89c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d39cd18[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6afa081b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@708aee18[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5e6d7224[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d3f35fc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@67bf4490[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@40e28c51[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@75ab2a3b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@511f71a7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4c9934d0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:BUP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-BUP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui10:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Backup Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896662","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896662","key":"ORDGP-34","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@21d52824[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@62dfbca2[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8fcbb29[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@17d93c38[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@17d16945[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1688ccc9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7bc008c2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@25a6d37e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@39a11dce[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@699f70b7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@12e2f35e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@14cef5f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0s:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System Monitoring Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896661","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896661","key":"ORDGP-33","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5b5408c7[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7202ccd8[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a90feda[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7e90955c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4ad49429[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6502b421[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78f9f075[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@239a043[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c2209f1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1cf11be8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2bbc3a5b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6448bcd7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:P11"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-P11","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0k:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Part 11 Compliance Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896660","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896660","key":"ORDGP-32","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1548bc64[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@592c4fa8[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d34989c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@165ec39d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6294cfb6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@625d4271[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6b24c6de[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@b86b20c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fab25b5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@476db8fb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ab294fe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@349a4176[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0c:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Infrastructure Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896659","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896659","key":"ORDGP-31","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@217f30f9[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@50bcd3c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43555d11[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@18ec0a6a[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ddde1a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@336a7611[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5abe08b8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2279f6df[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4e38c184[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2e02fcac[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d3ca1c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@69710b57[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui04:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896658","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896658","key":"ORDGP-30","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2e726618[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c3b9d6b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@58ad5151[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@280d4fea[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5923d784[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@29cbc5e4[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1bde3e55[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@59ee50db[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1eb63395[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@69252142[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3e386a5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@28a0668a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:AAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-AAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Application Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896657","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896657","key":"ORDGP-29","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4754d677[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14aa7424[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5561ebce[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@12adae12[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7180282f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7ecacff8[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@242f7474[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5b8d93dd[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2bbc09d3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3a1a653[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5c72fe87[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6b569daf[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TRC"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:16.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TRC","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Traceability Matrix","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896656","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896656","key":"ORDGP-28","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:43.183+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@19ca4443[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b366b13[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3fa9557[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7b6c18c8[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d752e16[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5c6f0e5b[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b6868ac[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@10d98b51[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@642802c2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4091c5ca[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@874f87c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@54ab7920[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896655","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896655","key":"ORDGP-27","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@71014020[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@50be168[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@125764b1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@488dd732[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3fb3f832[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@37581529[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1e038d9f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3811fd2a[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@18c3e072[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6fc55f1e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6da8480c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5ae7103e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896654","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896654","key":"ORDGP-26","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:13.192+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5c8618ac[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7830a212[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@89c2b97[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@75c128a4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ee7119c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@724e6131[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1be73c7c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@679fb3ac[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@51c23532[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@508481d2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@72a24362[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@68ba8c49[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:53.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896653","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896653","key":"ORDGP-25","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@9a1e6f0[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3d0ea09a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@13d76a8d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5b95121d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59e2016e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@70c91861[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@58e287f7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2b14730c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@62b4fe71[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5a06f856[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@169711de[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1e138c13[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:34.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhys:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896652","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896652","key":"ORDGP-24","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@c7d24a7[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7b375dd1[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7eeb8a94[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3ff3894d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5068be0e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7d797d33[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5fe4e722[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7c7eb472[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6973ed3d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5f5585c5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@27f0a4fa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2ea45952[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896651","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896651","key":"ORDGP-23","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6f49f97a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f7be06a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@60831a96[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@504bde5c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1cf60148[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@51d4cc26[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29fb2b20[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@27ccb97d[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b9c008d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7c5e5824[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@c8ccea4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4ec98919[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896650","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896650","key":"ORDGP-22","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@695dd5ef[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d8fc88b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@16d9ffee[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4541a62e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1be90f4f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6fa5ce51[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@365a7ac4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7e62daf7[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d223103[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6c34b5b0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@95d6ea8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6180a816[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:14:28.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhy4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896649","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896649","key":"ORDGP-21","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:33:19.170+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@73325c06[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d82dccb[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@ed34f81[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@15acae14[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3c8a2d47[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@54627e15[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@40598c5f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@30f5564e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5df8a502[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1aadfa7e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@161ab600[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@cc7c5ab[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:52.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896648","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896648","key":"ORDGP-20","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3bb4a39b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4713be96[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@16425b12[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4cffb042[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79a689df[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@55b1d4ee[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@512f9f81[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@60e35846[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d46cdf4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@760b7a16[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b7530c1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@212e6281[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:54.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896647","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896647","key":"ORDGP-19","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4fbcf377[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@372e6593[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@445d3f67[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@9bd882[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@44e58694[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3abf6c1f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1734ca28[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@49b55f84[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@210cb100[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6012eeaa[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@51c60d0a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@32ec21c9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:08:41.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896646","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896646","key":"ORDGP-18","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@60a1637a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2076e0f4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4532e070[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@52d4d962[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7c271350[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4d965875[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f7500d7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6b1ec592[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2fe7f632[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@504d464b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6709872d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7a26ec0b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:00.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896645","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896645","key":"ORDGP-17","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:34.116+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@9fd9519[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7ca48de0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3cd5c68f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@64c68778[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b40e22d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5c7dd04f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4e0e84f1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1e23270f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32deff6c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@93bed0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3a009b3f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3d1cc82f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896644","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896644","key":"ORDGP-16","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4e783002[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@189bee91[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a277a3a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4d0ff289[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4deb4f10[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4dae21bd[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7c697498[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4e405a26[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59441f31[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@65db7e6d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@52210bfa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1e7cfaf2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhws:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896643","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896643","key":"ORDGP-15","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@67a1abec[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6bb5ccf7[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3429abb9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@713e0bbf[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3494bafd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@63166fb[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f3c71e7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7e5eee4c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f0cf028[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6287458c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7ea8a372[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@770d0e65[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:06:25.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896642","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896642","key":"ORDGP-14","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2f954c36[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@691fae3a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@756171c0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@611b7f28[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3179eda1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@42a2e431[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3cb372d4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@66bb855[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@788159dc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2d57b991[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a554b3d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5127f332[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SSDS"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:17.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SSDS","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System and Software Design Specification including Source Code Review","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896641","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896641","key":"ORDGP-13","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:20.501+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5cbe3cc[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@680f23dc[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76669cdd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6766500e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d3a0266[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1f492be9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5d0bdca9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@8380126[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@25bc1b75[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@73fc7a48[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@70911e0a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3868100f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:48.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhw4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896640","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896640","key":"ORDGP-12","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@61685132[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@373d03a7[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f030c8b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@60fc00f7[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5fc9b7b8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4ae22d1e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6d22179d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6d594976[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f3f4712[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@24ee1f36[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@598d7ac9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7e388a77[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:30.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896639","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896639","key":"ORDGP-11","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:34:49.813+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@47f0f8a7[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@22eec239[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1cba67f2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@48919156[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@751ea107[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@55b9d1d1[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1af3a963[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5eac804a[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5eba1401[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4516615e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@42a9602e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@78bd16e1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:15:07.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896638","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896638","key":"ORDGP-10","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:30:53.289+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4e357a5f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6308bf10[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@307ace67[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@16ac1747[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@72533ccb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@62b34b9d[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4dca85a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@723c81a9[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@19625e41[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@61f50153[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@afb4f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@16ad132e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:05:18.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL for Dev Preview","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Developer Preview","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896637","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896637","key":"ORDGP-9","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-31T17:42:51.174+0200","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@31dfb39e[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@515f4dba[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@794bbe0e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@52521e00[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2e1fabed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3e885935[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a173b24[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@58779478[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b641c58[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@77d9adf0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@54346634[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3004fc9e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:51.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896636","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896636","key":"ORDGP-8","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:04.572+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7e6ad685[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3681af3[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@779f50ce[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3463634c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59a80ea0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4d0f0d76[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@409b3d39[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6fcd5f65[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76099132[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@43585638[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a33c99f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5f8093cb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:59.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896635","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896635","key":"ORDGP-7","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4263e8be[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a5c4cd6[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@684f579b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@108d9cb8[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@e1dc2ba[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1843bcd5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@aa2d3c9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7636f679[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@165ee217[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@137e511d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@fdee420[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4e9a5e9c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:37.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhus:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896634","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896634","key":"ORDGP-6","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6efa096a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3c2043a4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7a199aa4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@449adb20[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@56410cdc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@21f08253[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@170af073[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5db6a69[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5ba2b1e2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7ee552df[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3e2cbc18[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@60fa1196[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RA"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:07:33.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RA","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Risk Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896633","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896633","key":"ORDGP-5","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:34:12.755+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@d940201[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@56950e7e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f37b573[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@112fa015[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@383f41bd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@b8b2afa[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59c58ad5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3506a6f0[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@77f62b44[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@25f803ba[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@501ea6f2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@50afab27[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSD"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:03:55.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSD","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Specification Document","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896632","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896632","key":"ORDGP-4","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@324a48e7[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@17bf8d23[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78f19464[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@134cc8cc[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@752afc5c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@a1e53e3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7e38a470[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@bc719d3[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29adcceb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@51541376[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6a743608[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@594ea314[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhu4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Client Site Qualification","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896631","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896631","key":"ORDGP-3","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2a82ee22[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b1799ea[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76659352[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@418a8cbd[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@48a3fd6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@138974f3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@492c9ad3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5cd6082f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@977e8ec[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@51812bdd[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7cd6c93c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@102d21f9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RAL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RAL","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Role Assignment Log","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896630","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896630","key":"ORDGP-2","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@32b1c2b4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@15040a90[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4e3d9973[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7b584aae[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2f8a0784[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@777871dd[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@552c8840[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6c98a571[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@13d13941[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2793447f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@164ca645[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3f562ad0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhto:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Supplier Assessment Mail Questionnaire","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896629","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896629","key":"ORDGP-1","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5c332c94[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@727ff162[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79043bbd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@74fd311e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d03fc7e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@762703b6[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2e26171c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@334ea607[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@51cc4c1c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1f38cf20[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1b8b52c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@47804582[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:54.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_search-f28e2513-da30-4a98-bfd2-5cf5d9c3f82d.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_search-f28e2513-da30-4a98-bfd2-5cf5d9c3f82d.json new file mode 100644 index 00000000..0a0d2a6f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_api_2_search-f28e2513-da30-4a98-bfd2-5cf5d9c3f82d.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":85,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896750","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896750","key":"ORDGP-122","fields":{"summary":"Document History","customfield_19901":"3","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TRC"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896749","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896749","key":"ORDGP-121","fields":{"summary":"Document History","customfield_19901":"1","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TCP","Doc:TCR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896748","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896748","key":"ORDGP-120","fields":{"summary":"Risk Assessment","customfield_19901":"4","customfield_19902":"{color:blue}There have been no critical failures observed in the testing. For failed test cases no unacceptable risks have been identified. No follow-up actions are required.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

There have been no critical failures observed in the testing. For failed test cases no unacceptable risks have been identified. No follow-up actions are required.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896747","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896747","key":"ORDGP-119","fields":{"summary":"Traceability Matrix","customfield_19901":"3.6","customfield_19902":"{color:blue}The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix has been updated prior to execution of the test cases and has been archived in the validation archive (add a reference).{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix has been updated prior to execution of the test cases and has been archived in the validation archive (add a reference).

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896746","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896746","key":"ORDGP-118","fields":{"summary":"Non-Functional Testing Results","customfield_19901":"3.5.2","customfield_19902":"{color:blue}Non-Functional testing was performed according to the approved functional / requirements test plan (final v1.0), approved on .\n\nThe test execution run of the non-functional test cases was performed on Mar 03. All the test cases of the project were executed without significant failures.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Non-Functional testing was performed according to the approved functional / requirements test plan (final v1.0), approved on <date>.
\n
\nThe test execution run of the non-functional test cases was performed on Mar 03. All the test cases of the project were executed without significant failures.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896745","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896745","key":"ORDGP-117","fields":{"summary":"Discrepancy Log","customfield_19901":"3.3","customfield_19902":"{color:blue}All failures and problems which have been observed during testing have been collected in a discrepancy log. The discrepancy log is attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All failures and problems which have been observed during testing have been collected in a discrepancy log. The discrepancy log is attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896744","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896744","key":"ORDGP-116","fields":{"summary":"Responsibilities and Signature Resource Log","customfield_19901":"3.2","customfield_19902":"{color:blue}All Testers and Test Administrators have signed the signature resource log prior to the start of testing activities. The signature resource log is attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All Testers and Test Administrators have signed the signature resource log prior to the start of testing activities. The signature resource log is attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896743","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896743","key":"ORDGP-115","fields":{"summary":"Training","customfield_19901":"3.1","customfield_19902":"{color:blue}All Testers and Test Administrators have been trained prior to the start of testing activities. Two classroom trainings have been performed on 23-Apr-2001 in Ingelheim and on 26-Apr-2011 in Ridgefield. Copies of the training records and agenda are attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All Testers and Test Administrators have been trained prior to the start of testing activities. Two classroom trainings have been performed on 23-Apr-2001 in Ingelheim and on 26-Apr-2011 in Ridgefield. Copies of the training records and agenda are attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896742","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896742","key":"ORDGP-114","fields":{"summary":"Testing Environment","customfield_19901":"2","customfield_19902":"{color:blue}All integration and acceptance test cases have been executed in the qualified validation environment as defined in the combined functional / requirements testing plan (ref).{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All integration and acceptance test cases have been executed in the qualified validation environment as defined in the combined functional / requirements testing plan (ref).

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896741","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896741","key":"ORDGP-113","fields":{"summary":"Purpose","customfield_19901":"1","customfield_19902":"{color:blue}The purpose of this document is to report on testing activities that were performed according to the functional / requirements testing plan, to summarize and asses all failed and skipped test cases, and decide if the System name can be formally released for installation in production environment.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The purpose of this document is to report on testing activities that were performed according to the functional / requirements testing plan, to summarize and asses all failed and skipped test cases, and decide if the System name can be formally released for installation in production environment.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896740","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896740","key":"ORDGP-112","fields":{"summary":"Document History","customfield_19901":"8","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896739","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896739","key":"ORDGP-111","fields":{"summary":"Reference Documents","customfield_19901":"7","customfield_19902":null,"issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896738","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896738","key":"ORDGP-110","fields":{"summary":"Definitions","customfield_19901":"6.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896737","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896737","key":"ORDGP-109","fields":{"summary":"Abbreviations","customfield_19901":"6.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896736","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896736","key":"ORDGP-108","fields":{"summary":"Traceability Matrix","customfield_19901":"9","customfield_19902":"{color:blue}The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix will be updated before test execution to include all functional and requirements test cases.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix will be updated before test execution to include all functional and requirements test cases.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896735","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896735","key":"ORDGP-107","fields":{"summary":"Test Cases","customfield_19901":"8.1","customfield_19902":"||Risk Priority||Level of Testing||\n|*3*|{color:blue}No testing required{color}\n |\n|*2*|{color:blue}Testing of functionality or requirements without challenge/boundary tests{color}\n |\n|*1*|{color:blue}Full test of requirement or functionality including challenge/boundary tests (e.g. invalid, borderline or missing input values, out-of-order execution of functions, disconnected interfaces etc.){color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Risk PriorityLevel of Testing
3No testing required
2Testing of functionality or requirements without challenge/boundary tests
1Full test of requirement or functionality including challenge/boundary tests (e.g. invalid, borderline or missing input values, out-of-order execution of functions, disconnected interfaces etc.)
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896734","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896734","key":"ORDGP-106","fields":{"summary":"Scope of Non-Functional Testing","customfield_19901":"7.2.2","customfield_19902":"{color:blue}The following aspects of system performance will be covered in requirements test cases:\n * Concurrent access of 10 users accessing the same study (including data entry, modification of data, and deletion of data)\n * Remote access via low-bandwidth connections, simulation slow DSL connections down to 1 Mbit/s and Ping time up to 1000ms. A WAN emulator will be used to simulate the exact conditions as specified in the test cases.\n\nPerformance testing will be done in the validation environment. Since the hardware of the future production environment is more powerful the risk of using the validation environment for performance testing is low and acceptable.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following aspects of system performance will be covered in requirements test cases:
\n * Concurrent access of 10 users accessing the same study (including data entry, modification of data, and deletion of data)
\n * Remote access via low-bandwidth connections, simulation slow DSL connections down to 1 Mbit/s and Ping time up to 1000ms. A WAN emulator will be used to simulate the exact conditions as specified in the test cases.
\n
\nPerformance testing will be done in the validation environment. Since the hardware of the future production environment is more powerful the risk of using the validation environment for performance testing is low and acceptable.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896733","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896733","key":"ORDGP-105","fields":{"summary":"Scope of Functional Testing","customfield_19901":"7.1.2","customfield_19902":"{color:blue}The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.\n * Functional testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.\n * Configuration specification will not be tested on a functional level, but only implicitly in acceptance test cases.\n * Standard product functionality will not be tested in functional testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Functional testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on a functional level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in functional testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896732","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896732","key":"ORDGP-104","fields":{"summary":"Scope of Integration Testing","customfield_19901":"6.2","customfield_19902":"{color:blue}The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.\n * Integration testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.\n * Configuration specification will not be tested on an integration level, but only implicitly in acceptance test cases.\n * Standard product functionality will not be tested in integration testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Integration testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on an integration level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in integration testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896731","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896731","key":"ORDGP-103","fields":{"summary":"Test Procedure 2: Verification of Training Documentation","customfield_19901":"5.2","customfield_19902":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dignissim finibus imperdiet. Fusce hendrerit luctus purus, et suscipit nisl porttitor in. Mauris pellentesque vestibulum tristique. Integer vel velit id felis dictum auctor id et ligula. Fusce consequat vehicula mattis. Duis non hendrerit felis, ut pellentesque metus. Donec egestas leo quis viverra pharetra. Suspendisse eu nulla et mi eleifend varius. Donec ullamcorper aliquet magna sed congue. Nam nec neque ac diam interdum dictum nec ac urna. Mauris egestas urna nibh, facilisis lacinia ipsum volutpat vitae. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce enim elit, venenatis non egestas sed, vestibulum at ante.","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dignissim finibus imperdiet. Fusce hendrerit luctus purus, et suscipit nisl porttitor in. Mauris pellentesque vestibulum tristique. Integer vel velit id felis dictum auctor id et ligula. Fusce consequat vehicula mattis. Duis non hendrerit felis, ut pellentesque metus. Donec egestas leo quis viverra pharetra. Suspendisse eu nulla et mi eleifend varius. Donec ullamcorper aliquet magna sed congue. Nam nec neque ac diam interdum dictum nec ac urna. Mauris egestas urna nibh, facilisis lacinia ipsum volutpat vitae. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce enim elit, venenatis non egestas sed, vestibulum at ante.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896730","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896730","key":"ORDGP-102","fields":{"summary":"Operational Qualification Activities and Training","customfield_19901":"5","customfield_19902":"{color:blue}Before test execution the testers will receive formal training on:\n * the testing process, including good documentation practice\n * a basic end user training for System name\n * an overview of the business processes supported by System name\n\nThe training will be documented and copies of the training records will be attached to the testing documentation package.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Before test execution the testers will receive formal training on:
\n * the testing process, including good documentation practice
\n * a basic end user training for System name
\n * an overview of the business processes supported by System name
\n
\nThe training will be documented and copies of the training records will be attached to the testing documentation package.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896729","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896729","key":"ORDGP-101","fields":{"summary":"Validation Environment","customfield_19901":"10","customfield_19902":"{color:blue}Description of the Environment of the system that will be used for test execution.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Description of the Environment of the system that will be used for test execution.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896728","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896728","key":"ORDGP-100","fields":{"summary":"Document History","customfield_19901":"15","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896727","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896727","key":"ORDGP-99","fields":{"summary":"Abbreviations","customfield_19901":"13.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896726","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896726","key":"ORDGP-98","fields":{"summary":"Definitions","customfield_19901":"13.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896725","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896725","key":"ORDGP-97","fields":{"summary":"Functional and Requirements Testing Documentation","customfield_19901":"12","customfield_19902":null,"issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896724","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896724","key":"ORDGP-96","fields":{"summary":"Scope","customfield_19901":"2","customfield_19902":"{color:blue}The Functional Testing of SCHEMA ST4 will include the standard functionalities of the system and the user account management. The Requirements Testing covers the workflow configuration and functionalities of SCHEMA ST4 according to the business process of the creation, management and handover of preparation specific texts.\n\nThe components of SCHEMA ST4 that will be challenged during this Functions / Requirements Testing are as follows:\n * Rich/Architect client application software\n * Workflow Module\n * Interface to MS Word\n\nMS Word functionalities will not be tested in this Functional / Requirements Testing.\n\nThe level of testing activities is based on the risk class as defined in the risk analysis (ref) for this system. Detailed definitions of the required depth and level of detail will be defined in the sections for functional and requirements testing.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The Functional Testing of SCHEMA ST4 will include the standard functionalities of the system and the user account management. The Requirements Testing covers the workflow configuration and functionalities of SCHEMA ST4 according to the business process of the creation, management and handover of preparation specific texts.
\n
\nThe components of SCHEMA ST4 that will be challenged during this Functions / Requirements Testing are as follows:
\n * Rich/Architect client application software
\n * Workflow Module
\n * Interface to MS Word
\n
\nMS Word functionalities will not be tested in this Functional / Requirements Testing.
\n
\nThe level of testing activities is based on the risk class as defined in the risk analysis (ref) for this system. Detailed definitions of the required depth and level of detail will be defined in the sections for functional and requirements testing.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896723","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896723","key":"ORDGP-95","fields":{"summary":"Reference Documents","customfield_19901":"9","customfield_19902":null,"issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896722","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896722","key":"ORDGP-94","fields":{"summary":"Abbreviations","customfield_19901":"8.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896721","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896721","key":"ORDGP-93","fields":{"summary":"Definitions","customfield_19901":"8.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896720","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896720","key":"ORDGP-92","fields":{"summary":"Scope","customfield_19901":"2","customfield_19902":"{color:blue}Hardware verification is out of scope, similar runtime platform verification, because those are qualified.\n||Runtime Platform||Qualification Summary Report||\n|BI-IT-CONTAINER-PAAS|tbd|{color}","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Hardware verification is out of scope, similar runtime platform verification, because those are qualified.
\n||Runtime Platform||Qualification Summary Report||
\n|BI-IT-CONTAINER-PAAS|tbd|

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896719","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896719","key":"ORDGP-91","fields":{"summary":"Configuration database CMDB","customfield_19901":"12.2","customfield_19902":"||Instructions||Expected result / Evidence||Observed result||Comments||\r\n|*Role assignment:*\r\n Check if name of contact persons are entered to CMDBWeb: IT System Lead Validation Manager System Owner CSV&C function|!image-2022-02-22-11-12-21-105.png|width=676,height=402!|RAL is required and available\r\n ☐ Yes ☐ No \r\n CMDB entries are correct\r\n ☐ Yes ☐ No| |\r\n|*Related components:*\r\n Check if components are related to Environments as described in System Design Specification.|Components are related to Environments as listed in System Design Specification|CMDB entries are correct\r\n ☐ Yes ☐ No| |\r\n|*Emergency class:*\r\n Check if emergency class is correctly set according to the related specification document|Emergency class per environment (env) is correctly set\r\n \r\n _Productive env: class_ \r\n _Validation env: class_ \r\n _Training env: class_|_Productive env:_ \r\n _Validation env:_ \r\n _Training env:_| |\r\n|*GxP relevance*|Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.|Actual setting in CMDB:| |\r\n|*Support category:*\r\n Check if support category is correctly set according to the related specification document|Support category per environment (env) is correctly set\r\n \r\n _Productive env: class_ \r\n _Validation env: class_ \r\n _Training env: class_|_Productive env:_ \r\n _Validation env:_ \r\n _Training env:_| |","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InstructionsExpected result / EvidenceObserved resultComments
Role assignment:
\n Check if name of contact persons are entered to CMDBWeb: IT System Lead Validation Manager System Owner CSV&C function
RAL is required and available
\n ☐ Yes ☐ No
\n CMDB entries are correct
\n ☐ Yes ☐ No
 
Related components:
\n Check if components are related to Environments as described in System Design Specification.
Components are related to Environments as listed in System Design SpecificationCMDB entries are correct
\n ☐ Yes ☐ No
 
Emergency class:
\n Check if emergency class is correctly set according to the related specification document
Emergency class per environment (env) is correctly set
\n <enter defined class number per environment>
\n Productive env: class
\n Validation env: class
\n Training env: class
Productive env:
\n Validation env:
\n Training env:
 
GxP relevanceSuspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.Actual setting in CMDB: 
Support category:
\n Check if support category is correctly set according to the related specification document
Support category per environment (env) is correctly set
\n <enter defined category number per environment>
\n Productive env: class
\n Validation env: class
\n Training env: class
Productive env:
\n Validation env:
\n Training env:
 
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896718","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896718","key":"ORDGP-90","fields":{"summary":"Operational documents on system level","customfield_19901":"12.1","customfield_19902":"{color:blue}Operational documents at system level:\n\n*System level monitoring:* {color}\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|Theplatform that runs ODS based applications|* Plan ID: ...\n* Release date:\n* Report ID: ....\n* Release date:|\n \n*System level backup :*\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ... \n* Release date:\n* Report ID: ....\n* Release date: |\n\n {color:blue}*System level restore/recovery:* {color}\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ... \n* Release date:\n* Report ID: .... \n* Release date:\n* |\n\n *System Operational instructions**:*\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ...\n* Release date:\n* Report ID: ....\n* Release date:\n* |\n\n*Service Agreement :*\n||Config Item||Description||Items Doc Id||\n| | |* Document ID: ...\n* Release date:|\n\n*AAP/IAP/TAP* *:*\n||Config Item||Description||Items Doc Id||\n| | |* Document ID: ... \n* Release date:|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Operational documents at system level:
\n
\nSystem level monitoring:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASTheplatform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

System level backup :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

System level restore/recovery:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n\t
  • \n
\n
\n
\n\n\n

System Operational instructions:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n\t
  • \n
\n
\n
\n\n\n

Service Agreement :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id
  
    \n\t
  • Document ID: ...
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

AAP/IAP/TAP :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id
  
    \n\t
  • Document ID: ...
  • \n\t
  • Release date:
  • \n
\n
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896717","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896717","key":"ORDGP-89","fields":{"summary":"Document History","customfield_19901":"10","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896716","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896716","key":"ORDGP-88","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896715","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896715","key":"ORDGP-87","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":null,"issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896714","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896714","key":"ORDGP-86","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896713","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896713","key":"ORDGP-85","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896712","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896712","key":"ORDGP-84","fields":{"summary":"Communication and Organization Tasks","customfield_19901":"3.4","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896711","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896711","key":"ORDGP-83","fields":{"summary":"Document History","customfield_19901":"12","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896710","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896710","key":"ORDGP-82","fields":{"summary":"Reference Documents","customfield_19901":"11","customfield_19902":null,"issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896709","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896709","key":"ORDGP-81","fields":{"summary":"Abbreviations","customfield_19901":"10.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896708","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896708","key":"ORDGP-80","fields":{"summary":"Definitions","customfield_19901":"10.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896707","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896707","key":"ORDGP-79","fields":{"summary":"System Description","customfield_19901":"3.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896706","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896706","key":"ORDGP-78","fields":{"summary":"Introduction","customfield_19901":"1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896705","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896705","key":"ORDGP-77","fields":{"summary":"System Design Overview","customfield_19901":"2.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896704","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896704","key":"ORDGP-76","fields":{"summary":"Software Design Overview","customfield_19901":"2.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896703","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896703","key":"ORDGP-75","fields":{"summary":"Source Code Review Overview","customfield_19901":"2.3","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896702","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896702","key":"ORDGP-74","fields":{"summary":"System Design Profile","customfield_19901":"3.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896701","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896701","key":"ORDGP-73","fields":{"summary":"Interfaces between Modules","customfield_19901":"3.2.2","customfield_19902":"||Interface||Between Module||And Module||Purpose||\n|{color:blue}Interface A{color}|{color:blue}backend{color}|{color:blue}frontend{color}| |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InterfaceBetween ModuleAnd ModulePurpose
Interface Abackendfrontend 
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896700","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896700","key":"ORDGP-72","fields":{"summary":"Interfaces to External Systems","customfield_19901":"3.2.3","customfield_19902":"||Interface||Between Module||And External System||Purpose||\n|{color:blue}BI-IF-{color}|{color:blue}backend{color}| | |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InterfaceBetween ModuleAnd External SystemPurpose
BI-IF-backend  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896699","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896699","key":"ORDGP-71","fields":{"summary":"System Diagram","customfield_19901":"3.2.4","customfield_19902":"{color:blue}< A system diagram to graphically represent the module and interface information should be included here. > - Only if different from the diagram in the 2.1 section{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< A system diagram to graphically represent the module and interface information should be included here. > - Only if different from the diagram in the 2.1 section

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896698","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896698","key":"ORDGP-70","fields":{"summary":"Architecture of the System","customfield_19901":"4","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896697","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896697","key":"ORDGP-69","fields":{"summary":"Utilisation of Existing Infrastructure Systems","customfield_19901":"5.3","customfield_19902":"||Name of Infrastructure System||Documentation Reference||\n|_{color:blue}BI-IT-APPL-LOAD-BALANCING{color}_\n |_{color:blue}ITEMS doc ID 20108828{color}_\n |\n|_{color:blue}BI-IT-AD{color}_\n |_{color:blue}ITEMS doc ID 20095172{color}_|\n|_{color:blue}BI-RT-WINDOWSSERVER{color}_\n |_{color:blue}Infrastructure Release Design and Management ITEMS doc ID 20184916{color}_\n |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name of Infrastructure SystemDocumentation Reference
BI-IT-APPL-LOAD-BALANCING
ITEMS doc ID 20108828
BI-IT-AD
ITEMS doc ID 20095172
BI-RT-WINDOWSSERVER
Infrastructure Release Design and Management ITEMS doc ID 20184916
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896696","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896696","key":"ORDGP-68","fields":{"summary":"Utilisation of Existing Infrastructure Services","customfield_19901":"5.4","customfield_19902":"||Name of Infrastructure Service||Documentation Reference||\n|{color:blue}_Monitoring_{color}| {color:blue}_Standard Monitoring (Baseline Monitoring) on component level is sufficient_{color}\n{color:blue}_System specific Monitoring Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}|\n|{color:blue}_Backup_{color}|{color:blue}_Standard Backup on component level is sufficient_{color}\n{color:blue}_System specific Backup Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}\n{color:blue}_**_{color}|\n|{color:blue}_Restore & Recovery_{color}|{color:blue}_Standard Restore & Recovery on component level is sufficient_{color}\n{color:blue}_System specific Restore & Recovery Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name of Infrastructure ServiceDocumentation Reference
Monitoring Standard Monitoring (Baseline Monitoring) on component level is sufficient
\nSystem specific Monitoring Plan required
\nITEMS doc ID ?..
BackupStandard Backup on component level is sufficient
\nSystem specific Backup Plan required
\nITEMS doc ID ?..
\n**
Restore & RecoveryStandard Restore & Recovery on component level is sufficient
\nSystem specific Restore & Recovery Plan required
\nITEMS doc ID ?..
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896695","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896695","key":"ORDGP-67","fields":{"summary":"Development Environment","customfield_19901":"6.1","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896694","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896694","key":"ORDGP-66","fields":{"summary":"QA/Test Environment","customfield_19901":"6.2","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896693","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896693","key":"ORDGP-65","fields":{"summary":"Training Environment","customfield_19901":"6.3","customfield_19902":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.\r\n Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.\r\n\r\nAliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\nMorbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.\r\n\r\n!image-2022-02-22-11-12-54-300.png|width=842,height=501!","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.
\n Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

\n\n

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

\n\n

Morbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.

\n\n

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896692","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896692","key":"ORDGP-64","fields":{"summary":"Environmental Conditions","customfield_19901":"7","customfield_19902":"{color:blue}< Describe the environmental conditions required for the system. A reference to an existing qualified computer room may be given. The following conditions should be considered: e.g. temperature, humidity, power conditions, physical security, etc. >{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< Describe the environmental conditions required for the system. A reference to an existing qualified computer room may be given. The following conditions should be considered: e.g. temperature, humidity, power conditions, physical security, etc. >

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896691","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896691","key":"ORDGP-63","fields":{"summary":"Software Design Principles","customfield_19901":"8","customfield_19902":"{color:blue}*<* The principles that may be included are:{color}\n* {color:blue}General layout rules for windows and reports{color}\n* {color:blue}Audit trail implementation{color}\n* {color:blue}Access control measures{color}\n* {color:blue}User administration{color}\n* {color:blue}Function key assignments{color}\n* {color:blue}Minimum requirements (resources) needed for the application to run properly, both hardware (e.g. storage space) as well as software (such as operating system, drivers).>{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< The principles that may be included are:

\n
    \n\t
  • General layout rules for windows and reports
  • \n\t
  • Audit trail implementation
  • \n\t
  • Access control measures
  • \n\t
  • User administration
  • \n\t
  • Function key assignments
  • \n\t
  • Minimum requirements (resources) needed for the application to run properly, both hardware (e.g. storage space) as well as software (such as operating system, drivers).>
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896690","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896690","key":"ORDGP-62","fields":{"summary":"System Data","customfield_19901":"9","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896689","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896689","key":"ORDGP-61","fields":{"summary":"Coding Review Results","customfield_19901":"12","customfield_19902":"{color:blue}< Identify the outcome of coding review. Identify standards that were not met and their corrective actions. The corrective actions should include evidence of agreement by developer and reviewer. >{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< Identify the outcome of coding review. Identify standards that were not met and their corrective actions. The corrective actions should include evidence of agreement by developer and reviewer. >

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896688","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896688","key":"ORDGP-60","fields":{"summary":"Definitions","customfield_19901":"13.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896687","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896687","key":"ORDGP-59","fields":{"summary":"Abbreviations","customfield_19901":"13.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896686","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896686","key":"ORDGP-58","fields":{"summary":"Document History","customfield_19901":"15","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896685","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896685","key":"ORDGP-57","fields":{"summary":"Reference Documents","customfield_19901":"14","customfield_19902":"* _{color:blue}Reference document 1{color}_\n* _{color:blue}Reference document 2{color}_","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
    \n\t
  • Reference document 1
  • \n\t
  • Reference document 2
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896684","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896684","key":"ORDGP-56","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896683","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896683","key":"ORDGP-55","fields":{"summary":"Reference Document","customfield_19901":"6","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:DTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896682","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896682","key":"ORDGP-54","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:DTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896681","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896681","key":"ORDGP-53","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896680","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896680","key":"ORDGP-52","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:DTP","Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896679","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896679","key":"ORDGP-51","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:DTP","Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896678","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896678","key":"ORDGP-50","fields":{"summary":"Document History","customfield_19901":"8","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896677","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896677","key":"ORDGP-49","fields":{"summary":"Reference Documents","customfield_19901":"7","customfield_19902":"{color:blue}No further reference documents{color}","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

No further reference documents

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896676","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896676","key":"ORDGP-48","fields":{"summary":"Abbreviations","customfield_19901":"6.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896675","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896675","key":"ORDGP-47","fields":{"summary":"Definitions","customfield_19901":"6.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896674","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896674","key":"ORDGP-46","fields":{"summary":"Assumptions","customfield_19901":"3","customfield_19902":"_{color:blue}None{color}_","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

None

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896673","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896673","key":"ORDGP-45","fields":{"summary":"Operational Requirements","customfield_19901":"3.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896672","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896672","key":"ORDGP-44","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":"* _{color:blue}Reference document 1{color}_\n * _{color:blue}Reference document 2{color}_","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
    \n\t
  • Reference document 1
  • \n\t
  • Reference document 2
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896671","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896671","key":"ORDGP-43","fields":{"summary":"Introduction and Purpose","customfield_19901":"1","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896670","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896670","key":"ORDGP-42","fields":{"summary":"Overview","customfield_19901":"2","customfield_19902":"Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.\r\n\r\n \r\n\r\n*!image-2022-02-22-11-11-22-023.png|width=484,height=142!*\r\n\r\n ","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

\n\n

 

\n\n

\n\n

 

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896669","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896669","key":"ORDGP-41","fields":{"summary":"Related Business / GxP Process","customfield_19901":"3.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896668","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896668","key":"ORDGP-40","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896667","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896667","key":"ORDGP-39","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896666","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896666","key":"ORDGP-38","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-90f38e8b-164b-4c7b-8776-1290b10d9a5b.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-90f38e8b-164b-4c7b-8776-1290b10d9a5b.json new file mode 100644 index 00000000..d71c5e6f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-90f38e8b-164b-4c7b-8776-1290b10d9a5b.json @@ -0,0 +1,673 @@ +{ + "project" : { + "name" : "One Release DocGen Project", + "description" : "", + "key" : "ORDGP", + "jiraBaseUrl" : "https://jira-dev.biscrum.com/ORDGP", + "projectProperties" : { + "PROJECT.POO_CAT.LOW" : "Frequency of the usage of the related function is <10 times per year.", + "PROJECT.POO_CAT.HIGH" : "Frequency of the usage of the related function is >10 times per week.", + "WEBHOOK_PROXY.URL" : "https://webhook-proxy-ORDGP-cd.inh-odsapps.eu.boehringer.com/build?trigger_secret=f8055071-667e-4745-8d2e-deabf52f8a20", + "RM.REPOSITORY" : "ordgp-releasemanager", + "PROJECT.POO_CAT.MEDIUM" : "Frequency of the usage of the related function is <10 times per week.", + "PROJECT.NON-GXP_EVALUATION" : "Non-GxP risks are not being evaluated", + "PROJECT.USES_POO" : "true", + "PROJECT.IS_EDP_PROJECT" : "true", + "PROJECT.CONFIG_ITEM" : "BI-IT-DEVSTACK" + }, + "gampTopics" : [ "operational requirements", "functional requirements", "data requirements", "technical requirements", "interface requirements", "environment requirements", "performance requirements", "availability requirements", "security requirements", "maintenance requirements", "regulatory requirements", "roles", "compatibility", "procedural constraints", "overarching requirements" ], + "enumDictionary" : { + "ProbabilityOfDetection" : { + "1" : { + "value" : 1, + "text" : "Immediate", + "short" : "I" + }, + "2" : { + "value" : 2, + "text" : "Before Impact", + "short" : "B" + }, + "3" : { + "value" : 3, + "text" : "After Impact", + "short" : "A" + } + }, + "SeverityOfImpact" : { + "1" : { + "value" : 1, + "text" : "Low", + "short" : "L" + }, + "2" : { + "value" : 2, + "text" : "Medium", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "High", + "short" : "H" + } + }, + "ProbabilityOfOccurrence" : { + "1" : { + "value" : 1, + "text" : "LOW", + "short" : "L" + }, + "2" : { + "value" : 2, + "text" : "MEDIUM", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "HIGH", + "short" : "H" + } + }, + "RiskPriority" : { + "0" : { + "value" : 0, + "text" : "N/A", + "short" : "N" + }, + "1" : { + "value" : 1, + "text" : "HIGH", + "short" : "H" + }, + "2" : { + "value" : 2, + "text" : "MEDIUM", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "LOW", + "short" : "L" + } + }, + "GxPRelevance" : { + "R2" : { + "value" : 2, + "text" : "Relevant", + "short" : "R2" + }, + "N0" : { + "value" : 0, + "text" : "Not relevant/ZERO", + "short" : "N0" + }, + "N1" : { + "value" : 1, + "text" : "Not relevant/LESS", + "short" : "N1" + }, + "N2" : { + "value" : 2, + "text" : "Not relevant/EQUAL", + "short" : "N2" + } + } + }, + "versions" : [ "1.0" ], + "id" : "30107" + }, + "components" : { + "Technology-test" : { + "name" : "Technology-test", + "description" : "Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + }, + "Technology-backend" : { + "name" : "Technology-backend", + "description" : "Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "mitigations" : [ ] + }, + "Technology-frontend" : { + "name" : "Technology-frontend", + "description" : "Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + }, + "Technology-releasemanager" : { + "name" : "Technology-releasemanager", + "description" : "Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + } + }, + "releaseState" : "Change Ready for Implementation", + "version" : "1.0", + "epics" : { + "ORDGP-124" : { + "key" : "ORDGP-124", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

\n\n

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "epicName" : "Epic 1", + "predecessors" : [ ], + "title" : "Epic 1", + "requirements" : [ "ORDGP-126", "ORDGP-127", "ORDGP-125", "ORDGP-128", "ORDGP-129" ] + } + }, + "requirements" : { + "ORDGP-125" : { + "key" : "ORDGP-125", + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ "ORDGP-136" ], + "tests" : [ "ORDGP-144", "ORDGP-145", "ORDGP-143", "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "bugs" : [ ], + "mitigations" : [ "ORDGP-140" ], + "predecessors" : [ ] + }, + "ORDGP-126" : { + "key" : "ORDGP-126", + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ "ORDGP-141", "ORDGP-142" ], + "tests" : [ ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-127" : { + "key" : "ORDGP-127", + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-128" : { + "key" : "ORDGP-128", + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ "ORDGP-147" ], + "techSpecs" : [ "ORDGP-146" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-129" : { + "key" : "ORDGP-129", + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ "ORDGP-130", "ORDGP-133", "ORDGP-131", "ORDGP-132" ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + } + }, + "risks" : { + "ORDGP-136" : { + "key" : "ORDGP-136", + "name" : "RA 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "N1", + "probabilityOfOccurrence" : 1, + "severityOfImpact" : 2, + "probabilityOfDetection" : 2, + "riskPriorityNumber" : 4, + "riskPriority" : 3, + "mitigations" : [ "ORDGP-140" ], + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "tests" : [ "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "predecessors" : [ ], + "riskComment" : null + }, + "ORDGP-141" : { + "key" : "ORDGP-141", + "name" : "RA 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique.
\nSed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "R2", + "probabilityOfOccurrence" : 3, + "severityOfImpact" : 3, + "probabilityOfDetection" : 1, + "riskPriorityNumber" : 18, + "riskPriority" : 1, + "mitigations" : [ ], + "requirements" : [ "ORDGP-126" ], + "techSpecs" : [ ], + "tests" : [ ], + "predecessors" : [ ], + "riskComment" : null + }, + "ORDGP-142" : { + "key" : "ORDGP-142", + "name" : "RA 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "N0", + "probabilityOfOccurrence" : 1, + "severityOfImpact" : 1, + "probabilityOfDetection" : 3, + "riskPriorityNumber" : 0, + "riskPriority" : 0, + "mitigations" : [ ], + "requirements" : [ "ORDGP-126" ], + "techSpecs" : [ ], + "tests" : [ ], + "predecessors" : [ ], + "riskComment" : null + } + }, + "tests" : { + "ORDGP-130" : { + "id" : "896758", + "key" : "ORDGP-130", + "name" : "Acceptance Test 1", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-131" : { + "id" : "896759", + "key" : "ORDGP-131", + "name" : "Acceptance Test 2", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-132" : { + "id" : "896760", + "key" : "ORDGP-132", + "name" : "Acceptance Test 3", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-133" : { + "id" : "896761", + "key" : "ORDGP-133", + "name" : "Acceptance Test 4", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-137" : { + "id" : "896765", + "key" : "ORDGP-137", + "name" : "Unit Test 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-138" : { + "id" : "896766", + "key" : "ORDGP-138", + "name" : "Unit Test 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-139" : { + "id" : "896767", + "key" : "ORDGP-139", + "name" : "Unit Test 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-143" : { + "id" : "896771", + "key" : "ORDGP-143", + "name" : "Integration Test 1", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-144" : { + "id" : "896772", + "key" : "ORDGP-144", + "name" : "Integration Test 2", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-145" : { + "id" : "896773", + "key" : "ORDGP-145", + "name" : "Integration Test 3", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-147" : { + "id" : "896775", + "key" : "ORDGP-147", + "name" : "Installation Test 1", + "description" : "

Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Installation", + "executionType" : "Automated", + "requirements" : [ "ORDGP-128" ], + "techSpecs" : [ "ORDGP-146" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + } + }, + "mitigations" : { + "ORDGP-140" : { + "key" : "ORDGP-140", + "name" : "Mitigation 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "risks" : [ "ORDGP-136" ], + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "predecessors" : [ ] + } + }, + "techSpecs" : { + "ORDGP-134" : { + "key" : "ORDGP-134", + "name" : "TST 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "softwareDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "risks" : [ ], + "tests" : [ "ORDGP-144", "ORDGP-145", "ORDGP-143" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-135" : { + "key" : "ORDGP-135", + "name" : "TST 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "softwareDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "risks" : [ ], + "tests" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-146" : { + "key" : "ORDGP-146", + "name" : "TST 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

\n\n

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

\n\n

Morbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

", + "softwareDesignSpec" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "components" : [ ], + "requirements" : [ "ORDGP-128" ], + "risks" : [ ], + "tests" : [ "ORDGP-147" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + } + }, + "bugs" : { }, + "notesAndHints" : [ "Non-EDP linkType Cloners ignored: ORDGP-144 -> ORDGP-143" ], + "precedingVersions" : [ ], + "modifiedKeys" : { }, + "discontinuedKeys" : [ ], + "continuedKeys" : [ ] +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-2c13641b-639e-4c89-90cf-60ad2696de04.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-2c13641b-639e-4c89-90cf-60ad2696de04.json new file mode 100644 index 00000000..850635a4 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-2c13641b-639e-4c89-90cf-60ad2696de04.json @@ -0,0 +1,33 @@ +{ + "id" : "2c13641b-639e-4c89-90cf-60ad2696de04", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":10,\"isLast\":true,\"values\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/1\",\"id\":\"1\",\"description\":\"A problem which impairs or prevents the functions of the product.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10303&avatarType=issuetype\",\"name\":\"Bug\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10000\",\"id\":\"10000\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a big user story that needs to be broken down.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10307&avatarType=issuetype\",\"name\":\"Epic\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10001\",\"id\":\"10001\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a user story.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10315&avatarType=issuetype\",\"name\":\"Story\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006\",\"id\":\"10006\",\"description\":\"\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype\",\"name\":\"Documentation\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10009\",\"id\":\"10009\",\"description\":\"This Issue Type is used to create Zephyr Test within Jira.\",\"iconUrl\":\"https://jira-dev.biscrum.com/download/resources/com.thed.zephyr.je/images/icons/ico_zephyr_issuetype.png\",\"name\":\"Test\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14300\",\"id\":\"14300\",\"description\":\"Release status of project\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22841&avatarType=issuetype\",\"name\":\"Release Status\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14301\",\"id\":\"14301\",\"description\":\"Document part\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22842&avatarType=issuetype\",\"name\":\"Documentation Chapter\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14302\",\"id\":\"14302\",\"description\":\"The issue for risk definition\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22843&avatarType=issuetype\",\"name\":\"Risk Assessment\",\"subtask\":true},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14303\",\"id\":\"14303\",\"description\":\"The issue for definition of a risk mitigation\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22844&avatarType=issuetype\",\"name\":\"Mitigation\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14304\",\"id\":\"14304\",\"description\":\"The issue for technical specification\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22845&avatarType=issuetype\",\"name\":\"Technical Specification Task\",\"subtask\":false}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:02 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "653x31166x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=57EA3E737E1A613C04054D164A3BFB4A; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_245548ec13aa1b46ad9f45db72abfdaaa1282d08_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1wkino9", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "2c13641b-639e-4c89-90cf-60ad2696de04", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-cde3e91e-4acc-45c5-abfb-b5d40b3eae56.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-cde3e91e-4acc-45c5-abfb-b5d40b3eae56.json new file mode 100644 index 00000000..34c375f2 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-cde3e91e-4acc-45c5-abfb-b5d40b3eae56.json @@ -0,0 +1,33 @@ +{ + "id" : "cde3e91e-4acc-45c5-abfb-b5d40b3eae56", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_1", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/1", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":16,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19334},\"name\":\"EDP Definition of Ready for Bug\",\"fieldId\":\"customfield_19334\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72091\",\"value\":\"Confirmed\",\"id\":\"72091\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19335},\"name\":\"EDP Definition of Done for Bug\",\"fieldId\":\"customfield_19335\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72097\",\"value\":\"Test passed\",\"id\":\"72097\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/1\",\"id\":\"1\",\"description\":\"A problem which impairs or prevents the functions of the product.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10303&avatarType=issuetype\",\"name\":\"Bug\",\"subtask\":false,\"avatarId\":10303}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:08 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31167x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=B362B63B2280070590B11C93CDFF2E4B; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_d2553701b597799c5cd88fac34387d815e685b34_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "14f9wxt", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "cde3e91e-4acc-45c5-abfb-b5d40b3eae56", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-e7b8557d-645f-4250-8e3d-7ac00d25f8d4.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-e7b8557d-645f-4250-8e3d-7ac00d25f8d4.json new file mode 100644 index 00000000..d3a33d1f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-e7b8557d-645f-4250-8e3d-7ac00d25f8d4.json @@ -0,0 +1,33 @@ +{ + "id" : "e7b8557d-645f-4250-8e3d-7ac00d25f8d4", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10000", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10000", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-label\",\"customId\":10006},\"name\":\"Epic Name\",\"fieldId\":\"customfield_10006\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10000\",\"id\":\"10000\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a big user story that needs to be broken down.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10307&avatarType=issuetype\",\"name\":\"Epic\",\"subtask\":false,\"avatarId\":10307}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:13 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31168x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=55289262332906863E453AEBE44E618F; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_44bcb613e50a37375c84c3f6b342596e87322eba_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "dbtf9a", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "e7b8557d-645f-4250-8e3d-7ac00d25f8d4", + "persistent" : true, + "insertionIndex" : 3 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-defc9cbf-0704-4314-9b3f-beef33aa13bb.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-defc9cbf-0704-4314-9b3f-beef33aa13bb.json new file mode 100644 index 00000000..46302561 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-defc9cbf-0704-4314-9b3f-beef33aa13bb.json @@ -0,0 +1,33 @@ +{ + "id" : "defc9cbf-0704-4314-9b3f-beef33aa13bb", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10001", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10001", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10001-defc9cbf-0704-4314-9b3f-beef33aa13bb.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:16 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31169x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=4DAEF565D7090399FC1732A44D74E7A4; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_202d386c228987db295369db0308c974bc3f2771_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "wfzuqd", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "defc9cbf-0704-4314-9b3f-beef33aa13bb", + "persistent" : true, + "insertionIndex" : 4 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-b47dec23-1526-47c0-b4db-3b0285ad9aa6.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-b47dec23-1526-47c0-b4db-3b0285ad9aa6.json new file mode 100644 index 00000000..6abfe089 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-b47dec23-1526-47c0-b4db-3b0285ad9aa6.json @@ -0,0 +1,33 @@ +{ + "id" : "b47dec23-1526-47c0-b4db-3b0285ad9aa6", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10006", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10006", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":15,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19306},\"name\":\"Document Id\",\"fieldId\":\"customfield_19306\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19307},\"name\":\"Document Version\",\"fieldId\":\"customfield_19307\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19308},\"name\":\"EDP Definition of Ready for Documentation\",\"fieldId\":\"customfield_19308\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72044\",\"value\":\"Risk Defined\",\"id\":\"72044\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72045\",\"value\":\"AcceptanceTest Ready for Implementation\",\"id\":\"72045\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19309},\"name\":\"EDP Definition of Done for Documentation\",\"fieldId\":\"customfield_19309\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72056\",\"value\":\"All Documentation Chapter Done\",\"id\":\"72056\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72057\",\"value\":\"All Issues in Done for Document\",\"id\":\"72057\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"environment\"},\"name\":\"Environment\",\"fieldId\":\"environment\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006\",\"id\":\"10006\",\"description\":\"\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype\",\"name\":\"Documentation\",\"subtask\":false,\"avatarId\":10306}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:20 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31170x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=0A1371C5A8BA93E73EA79E9CD8D67C24; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_9d47111a100cd511a7075d6de50cfeff5a066708_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "7cfkba", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "b47dec23-1526-47c0-b4db-3b0285ad9aa6", + "persistent" : true, + "insertionIndex" : 5 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-c00780f9-8c29-4c59-af31-3b0037ce3460.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-c00780f9-8c29-4c59-af31-3b0037ce3460.json new file mode 100644 index 00000000..072402f5 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-c00780f9-8c29-4c59-af31-3b0037ce3460.json @@ -0,0 +1,33 @@ +{ + "id" : "c00780f9-8c29-4c59-af31-3b0037ce3460", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10009", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10009", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":20,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"component\",\"system\":\"components\"},\"name\":\"Component/s\",\"fieldId\":\"components\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27522\",\"id\":\"27522\",\"name\":\"Technology-backend\",\"description\":\"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27523\",\"id\":\"27523\",\"name\":\"Technology-frontend\",\"description\":\"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27524\",\"id\":\"27524\",\"name\":\"Technology-releasemanager\",\"description\":\"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27525\",\"id\":\"27525\",\"name\":\"Technology-test\",\"description\":\"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse\"}]},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.thed.zephyr.je:zephyr-je-customfield-teststep\",\"customId\":10023},\"name\":\"Zephyr Teststep\",\"fieldId\":\"customfield_10023\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.test.testExecutiontype\",\"customId\":19330},\"name\":\"Test Execution Type\",\"fieldId\":\"customfield_19330\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72176\",\"value\":\"Automated\",\"id\":\"72176\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72177\",\"value\":\"Manual\",\"id\":\"72177\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.test.testLevel\",\"customId\":19331},\"name\":\"Test Level\",\"fieldId\":\"customfield_19331\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72154\",\"value\":\"Acceptance\",\"id\":\"72154\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72155\",\"value\":\"Integration\",\"id\":\"72155\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72156\",\"value\":\"Unit\",\"id\":\"72156\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72157\",\"value\":\"Installation\",\"id\":\"72157\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19332},\"name\":\"EDP Definition of Ready for Test\",\"fieldId\":\"customfield_19332\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72067\",\"value\":\"Jira test steps describe any applicable inputs and expected results\",\"id\":\"72067\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19333},\"name\":\"EDP Definition of Done for Test\",\"fieldId\":\"customfield_19333\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72075\",\"value\":\"Test implementation highlights where inputs and expected results can be found\",\"id\":\"72075\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72076\",\"value\":\"Test implementation reports evidence of expected results through log data or screenshots\",\"id\":\"72076\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72077\",\"value\":\"Test implementation allows the correlation of expected results in Jira test steps with evidence\",\"id\":\"72077\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10009\",\"id\":\"10009\",\"description\":\"This Issue Type is used to create Zephyr Test within Jira.\",\"iconUrl\":\"https://jira-dev.biscrum.com/download/resources/com.thed.zephyr.je/images/icons/ico_zephyr_issuetype.png\",\"name\":\"Test\",\"subtask\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:24 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31171x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=5EFB716B1B51287B3267C5F56003A64E; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_998e5e40eec8d8da4dbe100e3d1fb379888a0132_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "6b29u8", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "c00780f9-8c29-4c59-af31-3b0037ce3460", + "persistent" : true, + "insertionIndex" : 6 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-669d1c1a-f05f-4110-8154-95c6efebf7aa.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-669d1c1a-f05f-4110-8154-95c6efebf7aa.json new file mode 100644 index 00000000..35590ec5 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-669d1c1a-f05f-4110-8154-95c6efebf7aa.json @@ -0,0 +1,33 @@ +{ + "id" : "669d1c1a-f05f-4110-8154-95c6efebf7aa", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14300", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14300", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":16,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:select\",\"customId\":19301},\"name\":\"Release Manager Status\",\"fieldId\":\"customfield_19301\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72267\",\"value\":\"Running\",\"id\":\"72267\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72268\",\"value\":\"Failed\",\"id\":\"72268\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72269\",\"value\":\"Successful\",\"id\":\"72269\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19303},\"name\":\"Release Build\",\"fieldId\":\"customfield_19303\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:precedingversions\",\"customId\":20100},\"name\":\"Preceding Versions\",\"fieldId\":\"customfield_20100\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[]},{\"required\":false,\"schema\":{\"type\":\"version\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:version\",\"customId\":20101},\"name\":\"ProductRelease Version\",\"fieldId\":\"customfield_20101\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"description\":\"\",\"name\":\"1.0\",\"archived\":false,\"released\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:readonlyfield\",\"customId\":22101},\"name\":\"Branch Id _ not used\",\"fieldId\":\"customfield_22101\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14300\",\"id\":\"14300\",\"description\":\"Release status of project\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22841&avatarType=issuetype\",\"name\":\"Release Status\",\"subtask\":false,\"avatarId\":22841}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:28 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31172x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=6734901C16A641C3D9FAC9A23AD2E855; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_592787b4e6e1cd6b0ea9a68939d315fa7f5293a9_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1ab0s5s", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "669d1c1a-f05f-4110-8154-95c6efebf7aa", + "persistent" : true, + "insertionIndex" : 7 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-ed227279-826f-4450-865d-8a778d8f9be8.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-ed227279-826f-4450-865d-8a778d8f9be8.json new file mode 100644 index 00000000..29a59453 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-ed227279-826f-4450-865d-8a778d8f9be8.json @@ -0,0 +1,33 @@ +{ + "id" : "ed227279-826f-4450-865d-8a778d8f9be8", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14301", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14301", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:headingnumberfield\",\"customId\":19901},\"name\":\"EDP Heading Number\",\"fieldId\":\"customfield_19901\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19902},\"name\":\"EDP Content\",\"fieldId\":\"customfield_19902\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14301\",\"id\":\"14301\",\"description\":\"Document part\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22842&avatarType=issuetype\",\"name\":\"Documentation Chapter\",\"subtask\":false,\"avatarId\":22842}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:32 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31173x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=0AF7AC0E94F8519EB9813289314BE5E5; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_e539d59cc22043c1fb081d13cab2cd4b30783801_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "t4ypwr", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "ed227279-826f-4450-865d-8a778d8f9be8", + "persistent" : true, + "insertionIndex" : 8 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-7ce71190-5408-4c94-8756-e005fde4fff7.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-7ce71190-5408-4c94-8756-e005fde4fff7.json new file mode 100644 index 00000000..e0942c5b --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-7ce71190-5408-4c94-8756-e005fde4fff7.json @@ -0,0 +1,33 @@ +{ + "id" : "7ce71190-5408-4c94-8756-e005fde4fff7", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14302", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14302", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":21,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19310},\"name\":\"Risk Comment\",\"fieldId\":\"customfield_19310\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.gxp-relevance\",\"customId\":19311},\"name\":\"GxP Relevance for Risk\",\"fieldId\":\"customfield_19311\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72190\",\"value\":\"Relevant\",\"id\":\"72190\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72191\",\"value\":\"Not relevant/EQUAL\",\"id\":\"72191\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72192\",\"value\":\"Not relevant/LESS\",\"id\":\"72192\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72193\",\"value\":\"Not relevant/ZERO\",\"id\":\"72193\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.severityofimpact\",\"customId\":19312},\"name\":\"Severity of Impact\",\"fieldId\":\"customfield_19312\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72213\",\"value\":\"Low\",\"id\":\"72213\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72214\",\"value\":\"Medium\",\"id\":\"72214\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72215\",\"value\":\"High\",\"id\":\"72215\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.probabilityofdetection\",\"customId\":19313},\"name\":\"Probability of Detection\",\"fieldId\":\"customfield_19313\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72231\",\"value\":\"Immediate\",\"id\":\"72231\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72232\",\"value\":\"Before Impact\",\"id\":\"72232\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72233\",\"value\":\"After Impact\",\"id\":\"72233\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.probabilityofoccurrence\",\"customId\":19314},\"name\":\"Probability of Occurrence\",\"fieldId\":\"customfield_19314\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72249\",\"value\":\"LOW\",\"id\":\"72249\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72250\",\"value\":\"MEDIUM\",\"id\":\"72250\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72251\",\"value\":\"HIGH\",\"id\":\"72251\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.riskprioritynumber\",\"customId\":19315},\"name\":\"Risk Priority Number\",\"fieldId\":\"customfield_19315\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.riskpriority\",\"customId\":19316},\"name\":\"Risk Priority\",\"fieldId\":\"customfield_19316\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19317},\"name\":\"EDP Definition of Done for Risk\",\"fieldId\":\"customfield_19317\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72107\",\"value\":\"Identified\",\"id\":\"72107\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72108\",\"value\":\"Evaluated\",\"id\":\"72108\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72109\",\"value\":\"Mitigations/Tests defined\",\"id\":\"72109\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72110\",\"value\":\"Reevaluated\",\"id\":\"72110\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72111\",\"value\":\"Agreed with QA\",\"id\":\"72111\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14302\",\"id\":\"14302\",\"description\":\"The issue for risk definition\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22843&avatarType=issuetype\",\"name\":\"Risk Assessment\",\"subtask\":true,\"avatarId\":22843}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":true,\"schema\":{\"type\":\"issuelink\",\"system\":\"parent\"},\"name\":\"Parent\",\"fieldId\":\"parent\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:36 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31174x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=96911E3798DC3B3FD521E62BA76006FD; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_358496510b301641f4acc92b5724c2b9df37f950_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "17e3p76", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "7ce71190-5408-4c94-8756-e005fde4fff7", + "persistent" : true, + "insertionIndex" : 9 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-e1b4930d-8ecb-4e92-bd04-a4ac64d2c3d3.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-e1b4930d-8ecb-4e92-bd04-a4ac64d2c3d3.json new file mode 100644 index 00000000..d9d522b9 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-e1b4930d-8ecb-4e92-bd04-a4ac64d2c3d3.json @@ -0,0 +1,33 @@ +{ + "id" : "e1b4930d-8ecb-4e92-bd04-a4ac64d2c3d3", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14303", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14303", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14303\",\"id\":\"14303\",\"description\":\"The issue for definition of a risk mitigation\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22844&avatarType=issuetype\",\"name\":\"Mitigation\",\"subtask\":false,\"avatarId\":22844}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:40 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31175x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=AF7A3D7F8235D0EE0B3F9CF8D4F6C6D3; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_21811d0095163e0408a44370984e3e56ae4e9e6f_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1j529ir", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "e1b4930d-8ecb-4e92-bd04-a4ac64d2c3d3", + "persistent" : true, + "insertionIndex" : 10 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-b6d2fa04-94c5-457b-bf49-e6d8b8172761.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-b6d2fa04-94c5-457b-bf49-e6d8b8172761.json new file mode 100644 index 00000000..0d4f20a8 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-b6d2fa04-94c5-457b-bf49-e6d8b8172761.json @@ -0,0 +1,33 @@ +{ + "id" : "b6d2fa04-94c5-457b-bf49-e6d8b8172761", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14304", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14304", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":18,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"component\",\"system\":\"components\"},\"name\":\"Component/s\",\"fieldId\":\"components\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27522\",\"id\":\"27522\",\"name\":\"Technology-backend\",\"description\":\"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27523\",\"id\":\"27523\",\"name\":\"Technology-frontend\",\"description\":\"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27524\",\"id\":\"27524\",\"name\":\"Technology-releasemanager\",\"description\":\"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27525\",\"id\":\"27525\",\"name\":\"Technology-test\",\"description\":\"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse\"}]},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19327},\"name\":\"System Design Specification\",\"fieldId\":\"customfield_19327\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19328},\"name\":\"Software Design Specification\",\"fieldId\":\"customfield_19328\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19329},\"name\":\"EDP Definition of Done for Technical Specification\",\"fieldId\":\"customfield_19329\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72135\",\"value\":\"All Risks Approved\",\"id\":\"72135\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72136\",\"value\":\"All Tests Defined\",\"id\":\"72136\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72137\",\"value\":\"All Tests Executed Successful\",\"id\":\"72137\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14304\",\"id\":\"14304\",\"description\":\"The issue for technical specification\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22845&avatarType=issuetype\",\"name\":\"Technical Specification Task\",\"subtask\":false,\"avatarId\":22845}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:44 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31176x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=85E982C3F25449266AFCACB772C667A3; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_965fab2e0c31f787f1562cc3db63ca42c2f00b3c_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1072bai", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "b6d2fa04-94c5-457b-bf49-e6d8b8172761", + "persistent" : true, + "insertionIndex" : 11 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_ordgp-123-8552af1a-6ce7-4a3d-a3bf-167be4e9d11a.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_ordgp-123-8552af1a-6ce7-4a3d-a3bf-167be4e9d11a.json new file mode 100644 index 00000000..2c48e2dd --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_issue_ordgp-123-8552af1a-6ce7-4a3d-a3bf-167be4e9d11a.json @@ -0,0 +1,33 @@ +{ + "id" : "8552af1a-6ce7-4a3d-a3bf-167be4e9d11a", + "name" : "rest_api_2_issue_ordgp-123", + "request" : { + "url" : "/rest/api/2/issue/ORDGP-123?fields=customfield_20101", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"expand\":\"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations\",\"id\":\"896751\",\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issue/896751\",\"key\":\"ORDGP-123\",\"fields\":{\"customfield_20101\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"description\":\"\",\"name\":\"1.0\",\"archived\":false,\"released\":false}}}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:48 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31177x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=FCDD350CE225D6367E018A1E94CD5E44; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_3f23fedd5848f9a63677f6993b4975920d3e2a9a_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "gnfg2l", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "8552af1a-6ce7-4a3d-a3bf-167be4e9d11a", + "persistent" : true, + "insertionIndex" : 12 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-3158ca7d-b560-4ffa-bf22-c19d77a41726.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-3158ca7d-b560-4ffa-bf22-c19d77a41726.json new file mode 100644 index 00000000..7de237e5 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-3158ca7d-b560-4ffa-bf22-c19d77a41726.json @@ -0,0 +1,36 @@ +{ + "id" : "3158ca7d-b560-4ffa-bf22-c19d77a41726", + "name" : "rest_api_2_project_ordgp_versions", + "request" : { + "url" : "/rest/api/2/project/ORDGP/versions", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:55:04 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "655x31181x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=88D75EDB0D8BCF9842787A3B49BBF4A6; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_5ee7e11a24aba1995c60d08a69109d0d7a733aa8_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1dfyvuz", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "3158ca7d-b560-4ffa-bf22-c19d77a41726", + "persistent" : true, + "scenarioName" : "scenario-1-rest-api-2-project-ORDGP-versions", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-1-rest-api-2-project-ORDGP-versions-2", + "insertionIndex" : 15 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-e067c49a-48df-42aa-a9a7-284cf2727534.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-e067c49a-48df-42aa-a9a7-284cf2727534.json new file mode 100644 index 00000000..10e87960 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-e067c49a-48df-42aa-a9a7-284cf2727534.json @@ -0,0 +1,35 @@ +{ + "id" : "e067c49a-48df-42aa-a9a7-284cf2727534", + "name" : "rest_api_2_project_ordgp_versions", + "request" : { + "url" : "/rest/api/2/project/ORDGP/versions", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:55:08 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "655x31182x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=319EEBCAD219564F4ACD55F3CE3B88FC; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_24c930150ec6f3f78f15681b80c1436dd54b5d5c_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "kuvo3a", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "e067c49a-48df-42aa-a9a7-284cf2727534", + "persistent" : true, + "scenarioName" : "scenario-1-rest-api-2-project-ORDGP-versions", + "requiredScenarioState" : "scenario-1-rest-api-2-project-ORDGP-versions-2", + "insertionIndex" : 16 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-11acbe57-af94-4a42-9dbb-e8d56a6fd926.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-11acbe57-af94-4a42-9dbb-e8d56a6fd926.json new file mode 100644 index 00000000..8444815b --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-11acbe57-af94-4a42-9dbb-e8d56a6fd926.json @@ -0,0 +1,38 @@ +{ + "id" : "11acbe57-af94-4a42-9dbb-e8d56a6fd926", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"jql\":\"project = ORDGP AND issuetype = 'Documentation'\",\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-11acbe57-af94-4a42-9dbb-e8d56a6fd926.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:55:22 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "655x31185x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=DE70347D73EA769A6583B3E2BEFB2CB4; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_6fb1a0c9509659accb846fdfe2c99fc83974786b_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1otfyat", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "11acbe57-af94-4a42-9dbb-e8d56a6fd926", + "persistent" : true, + "insertionIndex" : 19 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-4d2f49f5-dcad-426f-99a7-0445f6d1c67e.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-4d2f49f5-dcad-426f-99a7-0445f6d1c67e.json new file mode 100644 index 00000000..bced7470 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-4d2f49f5-dcad-426f-99a7-0445f6d1c67e.json @@ -0,0 +1,38 @@ +{ + "id" : "4d2f49f5-dcad-426f-99a7-0445f6d1c67e", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"jql\":\"project = ORDGP AND issuetype = 'Documentation' AND fixVersion = '1.0'\",\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-4d2f49f5-dcad-426f-99a7-0445f6d1c67e.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:55:17 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "655x31184x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=D3A2ABD62351E006790EA3889D18C197; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_328d274c134f0e0f04dc689b9d2c911713443dea_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1boy6io", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "4d2f49f5-dcad-426f-99a7-0445f6d1c67e", + "persistent" : true, + "insertionIndex" : 18 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-822ed01b-eca4-409a-ba08-626fafb70d55.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-822ed01b-eca4-409a-ba08-626fafb70d55.json new file mode 100644 index 00000000..afe19878 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-822ed01b-eca4-409a-ba08-626fafb70d55.json @@ -0,0 +1,38 @@ +{ + "id" : "822ed01b-eca4-409a-ba08-626fafb70d55", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":[\"assignee\",\"duedate\",\"issuelinks\",\"status\",\"summary\",\"fixVersions\"],\"jql\":\"project = ORDGP AND issuetype = Bug AND status != Done AND fixVersion = '1.0'\",\"expand\":[],\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"startAt\":0,\"maxResults\":1000,\"total\":0,\"issues\":[]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:55:12 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "655x31183x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=6FD8885D0544D4A169A2580AF6CDF3D8; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_08e076ecc5be37be2f4b65b438b523d748fd2373_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "g76qv9", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "822ed01b-eca4-409a-ba08-626fafb70d55", + "persistent" : true, + "insertionIndex" : 17 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-f28e2513-da30-4a98-bfd2-5cf5d9c3f82d.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-f28e2513-da30-4a98-bfd2-5cf5d9c3f82d.json new file mode 100644 index 00000000..088b9d6d --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_api_2_search-f28e2513-da30-4a98-bfd2-5cf5d9c3f82d.json @@ -0,0 +1,38 @@ +{ + "id" : "f28e2513-da30-4a98-bfd2-5cf5d9c3f82d", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":[\"key\",\"status\",\"summary\",\"labels\",\"issuelinks\",\"customfield_19902\",\"customfield_19901\"],\"jql\":\"project = ORDGP AND issuetype = 'Documentation Chapter' AND fixVersion = '1.0'\",\"expand\":[\"renderedFields\"],\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-f28e2513-da30-4a98-bfd2-5cf5d9c3f82d.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:55:00 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31179x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=63A61F2A62BC238855D3DFFF9EA35717; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_60d5c7ce31bf31101d63681a6d085b459752f2a4_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1s98oc5", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "f28e2513-da30-4a98-bfd2-5cf5d9c3f82d", + "persistent" : true, + "insertionIndex" : 14 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-90f38e8b-164b-4c7b-8776-1290b10d9a5b.json b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-90f38e8b-164b-4c7b-8776-1290b10d9a5b.json new file mode 100644 index 00000000..c3fbe086 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-90f38e8b-164b-4c7b-8776-1290b10d9a5b.json @@ -0,0 +1,33 @@ +{ + "id" : "90f38e8b-164b-4c7b-8776-1290b10d9a5b", + "name" : "rest_platform_11_deltadocgenreports_ordgp_10", + "request" : { + "url" : "/rest/platform/1.1/deltadocgenreports/ORDGP/1.0", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_platform_11_deltadocgenreports_ordgp_10-90f38e8b-164b-4c7b-8776-1290b10d9a5b.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:54:54 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "654x31178x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=4F3C3DB7BE0F0A07F4A1BB179327C040; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_53bd72651596efecf9395c18ad5968a78a1a1f18_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "uy0tww", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "90f38e8b-164b-4c7b-8776-1290b10d9a5b", + "persistent" : true, + "insertionIndex" : 13 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_acceptancezip-4d4f584c-d1a0-4e15-a54b-334c84ad77af.zip b/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_acceptancezip-4d4f584c-d1a0-4e15-a54b-334c84ad77af.zip new file mode 100644 index 00000000..7603a4a1 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_acceptancezip-4d4f584c-d1a0-4e15-a54b-334c84ad77af.zip differ diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_integrationzip-1f9b57c1-2c15-497c-8a44-9a9d895cb3e4.zip b/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_integrationzip-1f9b57c1-2c15-497c-8a44-9a9d895cb3e4.zip new file mode 100644 index 00000000..5e5bc611 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_integrationzip-1f9b57c1-2c15-497c-8a44-9a9d895cb3e4.zip differ diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_acceptancezip-4d4f584c-d1a0-4e15-a54b-334c84ad77af.json b/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_acceptancezip-4d4f584c-d1a0-4e15-a54b-334c84ad77af.json new file mode 100644 index 00000000..373b51f4 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_acceptancezip-4d4f584c-d1a0-4e15-a54b-334c84ad77af.json @@ -0,0 +1,27 @@ +{ + "id" : "4d4f584c-d1a0-4e15-a54b-334c84ad77af", + "name" : "repository_leva-documentation_ordgp_13_acceptancezip", + "request" : { + "url" : "/repository/leva-documentation/ordgp/13/acceptance.zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "repository_leva-documentation_ordgp_13_acceptancezip-4d4f584c-d1a0-4e15-a54b-334c84ad77af.zip", + "headers" : { + "Date" : "Mon, 04 Apr 2022 08:55:23 GMT", + "Server" : "Nexus/3.28.1-01 (OSS)", + "X-Content-Type-Options" : "nosniff", + "Content-Security-Policy" : "sandbox allow-forms allow-modals allow-popups allow-presentation allow-scripts allow-top-navigation", + "X-XSS-Protection" : "1; mode=block", + "Last-Modified" : "Fri, 01 Apr 2022 09:23:36 GMT", + "Content-Disposition" : "inline", + "Content-Type" : "application/zip", + "Set-Cookie" : "b7bd9d362cf28fa3746ddf3faaa39cfe=13a61aa10205f36ad051ed3d9d80bf64; path=/; HttpOnly; Secure; SameSite=None", + "Cache-control" : "private" + } + }, + "uuid" : "4d4f584c-d1a0-4e15-a54b-334c84ad77af", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_integrationzip-1f9b57c1-2c15-497c-8a44-9a9d895cb3e4.json b/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_integrationzip-1f9b57c1-2c15-497c-8a44-9a9d895cb3e4.json new file mode 100644 index 00000000..6520235a --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TCR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_integrationzip-1f9b57c1-2c15-497c-8a44-9a9d895cb3e4.json @@ -0,0 +1,27 @@ +{ + "id" : "1f9b57c1-2c15-497c-8a44-9a9d895cb3e4", + "name" : "repository_leva-documentation_ordgp_13_integrationzip", + "request" : { + "url" : "/repository/leva-documentation/ordgp/13/integration.zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "repository_leva-documentation_ordgp_13_integrationzip-1f9b57c1-2c15-497c-8a44-9a9d895cb3e4.zip", + "headers" : { + "Date" : "Mon, 04 Apr 2022 08:55:23 GMT", + "Server" : "Nexus/3.28.1-01 (OSS)", + "X-Content-Type-Options" : "nosniff", + "Content-Security-Policy" : "sandbox allow-forms allow-modals allow-popups allow-presentation allow-scripts allow-top-navigation", + "X-XSS-Protection" : "1; mode=block", + "Last-Modified" : "Fri, 01 Apr 2022 09:23:36 GMT", + "Content-Disposition" : "inline", + "Content-Type" : "application/zip", + "Set-Cookie" : "b7bd9d362cf28fa3746ddf3faaa39cfe=13a61aa10205f36ad051ed3d9d80bf64; path=/; HttpOnly; Secure; SameSite=None", + "Cache-control" : "private" + } + }, + "uuid" : "1f9b57c1-2c15-497c-8a44-9a9d895cb3e4", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/TIR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_jenkins-job-logzip-373f8e70-d15f-4c3b-ae1b-f4873804bd66.zip b/src/test/resources/wiremock/ordgp/TIR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_jenkins-job-logzip-373f8e70-d15f-4c3b-ae1b-f4873804bd66.zip new file mode 100644 index 00000000..1a01a6e4 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/TIR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_jenkins-job-logzip-373f8e70-d15f-4c3b-ae1b-f4873804bd66.zip differ diff --git a/src/test/resources/wiremock/ordgp/TIR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_jenkins-job-logzip-373f8e70-d15f-4c3b-ae1b-f4873804bd66.json b/src/test/resources/wiremock/ordgp/TIR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_jenkins-job-logzip-373f8e70-d15f-4c3b-ae1b-f4873804bd66.json new file mode 100644 index 00000000..2c71f93d --- /dev/null +++ b/src/test/resources/wiremock/ordgp/TIR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_jenkins-job-logzip-373f8e70-d15f-4c3b-ae1b-f4873804bd66.json @@ -0,0 +1,27 @@ +{ + "id" : "373f8e70-d15f-4c3b-ae1b-f4873804bd66", + "name" : "repository_leva-documentation_ordgp_13_jenkins-job-logzip", + "request" : { + "url" : "/repository/leva-documentation/ordgp/13/jenkins-job-log.zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "repository_leva-documentation_ordgp_13_jenkins-job-logzip-373f8e70-d15f-4c3b-ae1b-f4873804bd66.zip", + "headers" : { + "Date" : "Mon, 04 Apr 2022 08:48:58 GMT", + "Server" : "Nexus/3.28.1-01 (OSS)", + "X-Content-Type-Options" : "nosniff", + "Content-Security-Policy" : "sandbox allow-forms allow-modals allow-popups allow-presentation allow-scripts allow-top-navigation", + "X-XSS-Protection" : "1; mode=block", + "Last-Modified" : "Fri, 01 Apr 2022 09:23:37 GMT", + "Content-Disposition" : "inline", + "Content-Type" : "application/zip", + "Set-Cookie" : "b7bd9d362cf28fa3746ddf3faaa39cfe=13a61aa10205f36ad051ed3d9d80bf64; path=/; HttpOnly; Secure; SameSite=None", + "Cache-control" : "private" + } + }, + "uuid" : "373f8e70-d15f-4c3b-ae1b-f4873804bd66", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-0f7e6e4b-a7a7-4ff6-a10b-d8975cb3dcfb.txt b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-0f7e6e4b-a7a7-4ff6-a10b-d8975cb3dcfb.txt new file mode 100644 index 00000000..7cdb830f Binary files /dev/null and b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/bitbucket/__files/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-0f7e6e4b-a7a7-4ff6-a10b-d8975cb3dcfb.txt differ diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-0f7e6e4b-a7a7-4ff6-a10b-d8975cb3dcfb.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-0f7e6e4b-a7a7-4ff6-a10b-d8975cb3dcfb.json new file mode 100644 index 00000000..5f60084f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-0f7e6e4b-a7a7-4ff6-a10b-d8975cb3dcfb.json @@ -0,0 +1,31 @@ +{ + "id" : "0f7e6e4b-a7a7-4ff6-a10b-d8975cb3dcfb", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive", + "request" : { + "url" : "/rest/api/latest/projects/ordgp/repos/ordgp-releasemanager/archive?at=master&format=zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-0f7e6e4b-a7a7-4ff6-a10b-d8975cb3dcfb.txt", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:19 GMT", + "Content-Type" : "application/octet-stream", + "X-AREQUESTID" : "@1POZ2QTx652x1073160x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=C300157A624B1CDD53814DD0922BE319; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:52:19 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "lvblzg", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : [ "X-AUSERNAME", "X-AUSERID", "Cookie" ], + "X-Content-Type-Options" : "nosniff", + "Content-Disposition" : "attachment; filename=\"ordgp-releasemanager-master@4e693552bfd.zip\"; filename*=UTF-8''ordgp-releasemanager-master%404e693552bfd.zip", + "Strict-Transport-Security" : "max-age=15768000" + } + }, + "uuid" : "0f7e6e4b-a7a7-4ff6-a10b-d8975cb3dcfb", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-1af18ec7-8897-49d7-b4aa-17e35a908019.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-1af18ec7-8897-49d7-b4aa-17e35a908019.json new file mode 100644 index 00000000..5a917094 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/bitbucket/mappings/rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive-1af18ec7-8897-49d7-b4aa-17e35a908019.json @@ -0,0 +1,28 @@ +{ + "id" : "1af18ec7-8897-49d7-b4aa-17e35a908019", + "name" : "rest_api_latest_projects_ordgp_repos_ordgp-releasemanager_archive", + "request" : { + "url" : "/rest/api/latest/projects/ordgp/repos/ordgp-releasemanager/archive?at=workInProgressBranch&format=zip", + "method" : "GET" + }, + "response" : { + "status" : 400, + "body" : "{\"errors\":[{\"context\":null,\"message\":\"'workInProgressBranch' is not a valid ref and may not be archived.\",\"exceptionName\":\"com.atlassian.bitbucket.repository.InvalidRefNameException\",\"refName\":\"workInProgressBranch\"}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:19 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "@1POZ2QTx652x1073159x0", + "Set-Cookie" : [ "BITBUCKETSESSIONID=8F28B824CD7BC11AFA64BC54E953FF71; Max-Age=1209600; Expires=Mon, 18-Apr-2022 08:52:19 GMT; Path=/; Secure; HttpOnly", "crowd.dev.token_key=WaLLch3bjj6pWqkGON0c7AAAAAAAnoABc2VyZ2lvLnNhY3Jpc3RhbkBib2VocmluZ2VyLWluZ2VsaGVpbS5jb20; Path=/; HttpOnly" ], + "X-AUSERID" : "13482", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "X-ASESSIONID" : "6vdpeo", + "Cache-Control" : [ "private, no-cache", "no-cache, no-transform" ], + "Pragma" : "no-cache", + "Vary" : "accept-encoding,x-auserid,cookie,x-ausername,accept-encoding" + } + }, + "uuid" : "1af18ec7-8897-49d7-b4aa-17e35a908019", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-c6c98afb-a0a4-4b8b-bb53-ceaf5d09aa2d.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-c6c98afb-a0a4-4b8b-bb53-ceaf5d09aa2d.json new file mode 100644 index 00000000..119b223a --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-c6c98afb-a0a4-4b8b-bb53-ceaf5d09aa2d.json @@ -0,0 +1 @@ +{"maxResults":50,"startAt":0,"total":23,"isLast":true,"values":[{"required":false,"schema":{"type":"user","system":"assignee"},"name":"Assignee","fieldId":"assignee","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=","hasDefaultValue":true,"operations":["set"],"defaultValue":{"name":"-1"}},{"required":false,"schema":{"type":"array","items":"component","system":"components"},"name":"Component/s","fieldId":"components","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27522","id":"27522","name":"Technology-backend","description":"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27523","id":"27523","name":"Technology-frontend","description":"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27524","id":"27524","name":"Technology-releasemanager","description":"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse"},{"self":"https://jira-dev.biscrum.com/rest/api/2/component/27525","id":"27525","name":"Technology-test","description":"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse"}]},{"required":false,"schema":{"type":"number","custom":"com.atlassian.jira.plugin.system.customfieldtypes:float","customId":10002},"name":"Story Points","fieldId":"customfield_10002","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"string","custom":"com.pyxis.greenhopper.jira:gh-sprint","customId":10004},"name":"Sprint","fieldId":"customfield_10004","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"option","custom":"org.opendevstack.jira.plugins.projecttemplate:field.requirement.gamptopic","customId":19318},"name":"Gamp Topic","fieldId":"customfield_19318","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72297","value":"operational requirements","id":"72297","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72298","value":"functional requirements","id":"72298","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72299","value":"data requirements","id":"72299","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72300","value":"technical requirements","id":"72300","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72301","value":"interface requirements","id":"72301","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72302","value":"environment requirements","id":"72302","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72303","value":"performance requirements","id":"72303","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72304","value":"availability requirements","id":"72304","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72305","value":"security requirements","id":"72305","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72306","value":"maintenance requirements","id":"72306","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72307","value":"regulatory requirements","id":"72307","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72308","value":"roles","id":"72308","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72309","value":"compatibility","id":"72309","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72310","value":"procedural constraints","id":"72310","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72311","value":"overarching requirements","id":"72311","disabled":false}]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19319},"name":"Req Acceptance Criteria","fieldId":"customfield_19319","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","customId":19320},"name":"FuncSpec Summary","fieldId":"customfield_19320","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19321},"name":"FuncSpec Description","fieldId":"customfield_19321","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19322},"name":"FuncSpec Acceptance Criteria","fieldId":"customfield_19322","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textfield","customId":19323},"name":"ConfigSpec Summary","fieldId":"customfield_19323","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"string","custom":"com.atlassian.jira.plugin.system.customfieldtypes:textarea","customId":19324},"name":"ConfigSpec Description","fieldId":"customfield_19324","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"option","custom":"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes","customId":19325},"name":"EDP Definition of Ready for Story","fieldId":"customfield_19325","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72002","value":"Risks defined","id":"72002","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72003","value":"Acceptance Tests Ready for Implementation","id":"72003","disabled":false}]},{"required":false,"schema":{"type":"array","items":"option","custom":"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes","customId":19326},"name":"EDP Definition of Done for Story","fieldId":"customfield_19326","hasDefaultValue":false,"operations":["add","set","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72017","value":"FuncSpec Defined","id":"72017","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72018","value":"ConfigSpec Defined","id":"72018","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72019","value":"All Risks Approved","id":"72019","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72020","value":"All Tests Defined","id":"72020","disabled":false},{"self":"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72021","value":"All Tests Executed Successful","id":"72021","disabled":false}]},{"required":false,"schema":{"type":"string","system":"description"},"name":"Description","fieldId":"description","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"version","system":"fixVersions"},"name":"Fix Version/s","fieldId":"fixVersions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","name":"1.0","archived":false,"released":false,"projectId":30107}]},{"required":false,"schema":{"type":"array","items":"issuelinks","system":"issuelinks"},"name":"Linked Issues","fieldId":"issuelinks","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=","hasDefaultValue":false,"operations":["add"]},{"required":true,"schema":{"type":"issuetype","system":"issuetype"},"name":"Issue Type","fieldId":"issuetype","hasDefaultValue":false,"operations":[],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10001","id":"10001","description":"Created by Jira Software - do not edit or delete. Issue type for a user story.","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10315&avatarType=issuetype","name":"Story","subtask":false,"avatarId":10315}]},{"required":false,"schema":{"type":"array","items":"string","system":"labels"},"name":"Labels","fieldId":"labels","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=","hasDefaultValue":false,"operations":["add","set","remove"]},{"required":false,"schema":{"type":"priority","system":"priority"},"name":"Priority","fieldId":"priority","hasDefaultValue":true,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/1","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg","name":"Highest","id":"1"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/2","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/high.svg","name":"High","id":"2"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/3","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg","name":"Medium","id":"3"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/4","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/low.svg","name":"Low","id":"4"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/5","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg","name":"Lowest","id":"5"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/10400","iconUrl":"https://jira-dev.biscrum.com/images/icons/priority_major.gif","name":"Major","id":"10400"},{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/10300","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg","name":"Critical","id":"10300"}],"defaultValue":{"self":"https://jira-dev.biscrum.com/rest/api/2/priority/4","iconUrl":"https://jira-dev.biscrum.com/images/icons/priorities/low.svg","name":"Low","id":"4"}},{"required":true,"schema":{"type":"project","system":"project"},"name":"Project","fieldId":"project","hasDefaultValue":false,"operations":["set"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}}]},{"required":true,"schema":{"type":"user","system":"reporter"},"name":"Reporter","fieldId":"reporter","autoCompleteUrl":"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=","hasDefaultValue":false,"operations":["set"]},{"required":true,"schema":{"type":"string","system":"summary"},"name":"Summary","fieldId":"summary","hasDefaultValue":false,"operations":["set"]},{"required":false,"schema":{"type":"array","items":"version","system":"versions"},"name":"Affects Version/s","fieldId":"versions","hasDefaultValue":false,"operations":["set","add","remove"],"allowedValues":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","name":"1.0","archived":false,"released":false,"projectId":30107}]}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_search-34bb8219-d9a1-42de-8bdd-0ab007e5cb25.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_search-34bb8219-d9a1-42de-8bdd-0ab007e5cb25.json new file mode 100644 index 00000000..965d8e8e --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_search-34bb8219-d9a1-42de-8bdd-0ab007e5cb25.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":37,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896665","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896665","key":"ORDGP-37","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@44f5760f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3208917c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@206d3ad4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5698dcd4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45f91a1e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@318b049c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78f923e3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@68973e54[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6533e0b2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@cf5a76c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3d227b2a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6c168744[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VSR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VSR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui1g:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Summary Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896664","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896664","key":"ORDGP-36","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2ddea464[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@53d5a8b2[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d5a4868[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6334f349[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@56b9ec8a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6a33d1fb[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2565dddd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@610fdc83[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78cbb194[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@c030b7f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@703b417[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@18f78bb0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:REP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-REP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui18:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Restore/Recovery Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896663","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896663","key":"ORDGP-35","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4033c6ca[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@18fec082[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@16e10736[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@78f53fb8[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32361780[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2e7b255e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@303d4f10[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@61e4ae50[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@636c3ffb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@14cab71d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4ed52f5b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@a078eff[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:BUP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-BUP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui10:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Backup Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896662","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896662","key":"ORDGP-34","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6fd230ad[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f4e7dd8[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74609341[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@182c80a8[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5874f4fb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1e14acfd[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e9ecee5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@124b2a5e[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6de7c7c0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@562fedc5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4e5ee803[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@58c324c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0s:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System Monitoring Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896661","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896661","key":"ORDGP-33","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4afe66b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@745272c6[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5e7ba605[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@39582b4e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@15e03bc7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@54be3e80[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5776e19c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2f0cb267[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b268a42[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1e49f998[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7ed381cc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@34068bfb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:P11"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-P11","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0k:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Part 11 Compliance Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896660","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896660","key":"ORDGP-32","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4ca431f1[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@71fd97d7[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3fd0ccfe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@228ea7fc[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7e7f6751[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1eae3d0e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@27a0b519[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@70465756[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7506e3e0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1a2ff603[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@38859022[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7abb8c83[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0c:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Infrastructure Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896659","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896659","key":"ORDGP-31","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@c24914f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7dffd216[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5016d0ad[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@537ad7db[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@772b930e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@b071d22[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6d722757[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6833e12d[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@432bacc6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7076478c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@cc28e4a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7b8f3c76[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui04:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896658","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896658","key":"ORDGP-30","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@16521555[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@46a4cb75[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5c0cf1f6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3c137661[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6eec4f69[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@212b655b[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a13a3c9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3d146e94[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@318ff958[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4bf4438f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4cfeacd3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@52000b16[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:AAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-AAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Application Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896657","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896657","key":"ORDGP-29","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@39577fe5[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@27469c35[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d2a42b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@17e637b0[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@669efb40[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@22f8be2e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@339aa5a6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@15674fd2[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b2e2c5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@63dc25b3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@58d0bfb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2a3bdd47[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TRC"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:16.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TRC","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Traceability Matrix","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896656","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896656","key":"ORDGP-28","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:43.183+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5a8e020d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7ca1e830[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c11f9b4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5f82646e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ce8b972[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@120bc6cd[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@31f44161[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7d99f225[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@443e7cd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@48327426[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b5ecb08[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6964029c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896655","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896655","key":"ORDGP-27","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@24c3c2fb[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@22f78f0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@147d55c0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6dec4747[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@57685e84[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@65be369c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1b93acbe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@144a06f4[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1c3e687[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@15dd3af5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@13ad92ac[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@57945b8b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896654","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896654","key":"ORDGP-26","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:13.192+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@342940b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4100e4a5[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@65d13373[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@23b2c6a0[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f7225f0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3d9b906d[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@51bd6606[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@640f3d57[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1aacd983[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7bd53a43[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4162ee69[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5c1a8697[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:53.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896653","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896653","key":"ORDGP-25","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4d876216[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@762fb6e8[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f5c840b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@644ff7fe[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43e78a97[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@343a3a81[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f4d9cd1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@24a66cc1[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5beae9f0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3ee12e3e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6d199627[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7ace3f21[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:34.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhys:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896652","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896652","key":"ORDGP-24","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7d4708dd[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@236ec664[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1467e221[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@416f5b2f[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f25895a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@606234f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d5bbf44[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@16d62fe3[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75da1b3a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@42f15295[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@32a06410[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@15aeec90[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896651","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896651","key":"ORDGP-23","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4f5764aa[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5813a152[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5f91f57f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1a4dc6ee[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@16de676f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@eb6899[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@50814ff6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@248f99be[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@418f775f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1afb7057[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@40df6201[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@184541cd[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896650","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896650","key":"ORDGP-22","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7e27df39[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1aef365d[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b4f04c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@660a6379[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@73f3011d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@674322bd[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45578889[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@70733af1[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1be3260b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@65cbb900[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1c2166f0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@756c6337[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:14:28.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhy4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896649","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896649","key":"ORDGP-21","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:33:19.170+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@703c9266[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4f3f6faa[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69496229[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5d3f0295[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5999f725[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@378764ad[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@157d105e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@307383ce[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@26c56a3a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2a6bc043[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@57e9dab0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7ba84e70[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:52.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896648","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896648","key":"ORDGP-20","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7efb1248[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ff34233[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4e21f965[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6b66d848[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1c7268d2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@279b161[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43529a9a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1eabae20[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@111061df[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5ead3825[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@9fcef20[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4a659a91[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:54.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896647","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896647","key":"ORDGP-19","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@26f96b4d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b9bb852[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3fe5a93c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@29aacfba[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@374d68f4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3df5e701[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2fcb05ca[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@50e3d896[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@cb510b6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1eea33ce[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69f8908c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2791d24d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:08:41.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896646","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896646","key":"ORDGP-18","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@52c18a73[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6086cc5f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@762eaac6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@201c7468[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7ec4f61e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4762918a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@44197b3a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7e5f8e5[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5ec88a01[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@d75ae93[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@23ac4ac[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2a3026de[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:00.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896645","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896645","key":"ORDGP-17","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:34.116+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@10f14e0d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2aebb31e[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@37b5d0a5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4031f60e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5dadda93[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3cc54b7[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1ae58c93[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@55ab9847[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6661a923[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7e930b4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@31dea5ce[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@38be7a12[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896644","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896644","key":"ORDGP-16","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@74d5f115[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d856e88[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6cb92c5e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4aeeee6f[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@444de4e6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@a4bb29c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2fb5b457[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1215ba58[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@39540628[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6edc8ccc[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c499a4c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@53313ae7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhws:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896643","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896643","key":"ORDGP-15","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@367c784d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a4985af[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5c4db296[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@a7f304d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35e0f603[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@c90dcb5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3df806b3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4e76b419[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7c94133a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@766b1d69[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@bdb5089[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7076eb97[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:06:25.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896642","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896642","key":"ORDGP-14","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@48145b92[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6ad0000f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1037bf8b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7a8d15fa[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@53b8b07a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@466103e[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29003cde[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3b30cec1[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d1d82bd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@19ce90c0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3180a9eb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@cfb2fdc[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SSDS"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:17.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SSDS","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System and Software Design Specification including Source Code Review","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896641","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896641","key":"ORDGP-13","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:20.501+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@774ffded[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@f98d147[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@16c8f0ed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5f93099a[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@270f6af8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3fc5a2ce[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6edb6243[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@29c379db[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@75c78eb1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@67868115[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@527a2edc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@604598e9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:48.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhw4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896640","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896640","key":"ORDGP-12","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@97f3413[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78a21369[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@26fb89e9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4e2aef04[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f07af06[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6e266c6a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14680486[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@da39bc0[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2ffe6aed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@72660644[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@267e70ba[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3792922e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:30.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896639","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896639","key":"ORDGP-11","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:34:49.813+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3ef94bd4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@70dcd860[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6f5315f4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@795adfa6[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@129c9495[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@b50d17f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7c5b8954[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5353ce96[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@259dd055[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@284b26b0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8fa1bc4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@45905333[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:15:07.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896638","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896638","key":"ORDGP-10","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:30:53.289+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6ab2e7f6[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4b97fdf0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@41d8648c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@35d4693a[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33e028a8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4afcb205[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@488243d2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5e897e41[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c9eb850[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@435d535c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@191b1436[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@c750a22[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:05:18.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL for Dev Preview","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Developer Preview","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896637","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896637","key":"ORDGP-9","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-31T17:42:51.174+0200","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5eb458f3[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@68c0b159[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35de551d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@58f97086[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a9ea527[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5cf1d03f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1bc01001[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@8ae2ebf[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@67f60510[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@355441f9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2e0f1f4a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@57ad17e2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:51.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896636","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896636","key":"ORDGP-8","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:04.572+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3af72f84[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@42bfd1f4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1ea7462a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@222b047b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3323236f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5067f3ee[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74d569de[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@e27a3e3[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@24b5c113[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4ba2aee8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1466a5db[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@276d240f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:59.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896635","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896635","key":"ORDGP-7","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@496da2cb[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1ab997d2[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76404201[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@20914c1c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@53d1e77d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7fa978a5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@b8d6d1b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@215631da[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d60d082[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4938f3db[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29bdba52[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@39f5965e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:37.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhus:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896634","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896634","key":"ORDGP-6","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7e13b536[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7c25a6bb[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@493f3eef[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@187e490d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7518cd3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@190ddaad[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@29f54725[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@43a94537[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@48957e85[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3fba0d88[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3c75a935[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@357cd371[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RA"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:07:33.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RA","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Risk Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896633","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896633","key":"ORDGP-5","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:34:12.755+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@14022b1d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@372d2ef9[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@713523e8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2f3181d1[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3e2d60cd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@1f43c44f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47318e2c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@642db012[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@31539f52[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3033448b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7bb8ec4f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@721c7e0a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSD"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:03:55.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSD","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Specification Document","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896632","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896632","key":"ORDGP-4","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6c0a6dcc[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@391b7e2c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@316eb36f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@53e65170[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6ba1a934[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4bef41a3[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@fde767a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6e52db20[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8dc37d7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@390f8d36[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@451e41cb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3d6d1993[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhu4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Client Site Qualification","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896631","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896631","key":"ORDGP-3","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@45cf3157[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c49d21b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@243b1bd2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@26e0cc44[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7ee6a664[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@700aaf48[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@c13df10[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2cb1b03a[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@67afe64e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@427a651c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5003d91c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@71929346[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RAL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RAL","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Role Assignment Log","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896630","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896630","key":"ORDGP-2","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@f8b1347[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3577ca6c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5ac55bd5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@516ade4b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e5dd161[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7848f70b[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8231024[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@f3c0fed[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@fea11b2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@30255feb[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2097dbfb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4fbbeb63[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhto:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Supplier Assessment Mail Questionnaire","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896629","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896629","key":"ORDGP-1","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@229d94b4[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b34f1e7[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@56748304[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2a33fbe4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@54578dd6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@583d4d74[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2aa389d4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1f7aabbf[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@77abbcbb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@454f09d7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7314d583[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3979af0d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:54.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_search-5a3c9e80-c662-4e40-900d-18afe57aa724.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_search-5a3c9e80-c662-4e40-900d-18afe57aa724.json new file mode 100644 index 00000000..b12b7668 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_search-5a3c9e80-c662-4e40-900d-18afe57aa724.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":37,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896665","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896665","key":"ORDGP-37","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7a1c9e21[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1577a5f7[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b73a247[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1383f0c3[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@55e878a7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@76a14597[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@50e6b09e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5cef57a9[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4a5431d3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@36a558f3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@53a26cf9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@75d63b3b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VSR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VSR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-37/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui1g:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Summary Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896664","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896664","key":"ORDGP-36","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1532ab62[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@25042448[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1b46af4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@51628ee[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6227fbdd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@e567207[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2c175af3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@187246c7[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45d6bf07[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@78ad2bf0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e7b26d4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@643511a2[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:REP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-REP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-36/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui18:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Restore/Recovery Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896663","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896663","key":"ORDGP-35","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6dc3084a[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3a376d43[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8224060[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@9fe6952[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@9e21d95[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@404bbab7[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5a70d39e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@20be957b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@39292a4c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@24aaa1dc[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@789a7af4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2c5b2dd1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:BUP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-BUP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-35/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui10:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Backup Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896662","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896662","key":"ORDGP-34","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3a79abe[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@335e24ac[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1b420424[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@59fb28a4[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@39b27f8e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6522a449[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6ecaefed[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6ef44498[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@449008c7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@34e0ecf0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@decd806[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@41f09da7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-34/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0s:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System Monitoring Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896661","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896661","key":"ORDGP-33","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@28231ce2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@57fcfa80[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@551a054[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@35497284[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@54691ecb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@4a224fd6[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@42f905c6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3c5a824f[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@20d95c49[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@785dfb7b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@72000683[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1aa0ba76[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:P11"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-P11","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-33/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0k:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Part 11 Compliance Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896660","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896660","key":"ORDGP-32","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@b3cb3a2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@267355d5[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a6440e1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@36857185[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2727dea3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@19c174c4[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@310a4c55[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2c9e1aa8[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@35551b5e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@27a03e64[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@44abb621[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@18bcaf46[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:59.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-32/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui0c:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Infrastructure Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896659","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896659","key":"ORDGP-31","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1aec83f7[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4eead7ed[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4efd3247[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@56b0c1ca[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43ab65f4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@74082d40[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5340568c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3ae63bf[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1b3232fb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2ee56ef0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7fc0a996[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@f839e4a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-31/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0ui04:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896658","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896658","key":"ORDGP-30","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@49b12feb[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@135b19a4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@66a3b8cf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@2dfe0b86[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@cdcabb4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@42131e9c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@398db3d1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@64f23d5d[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d9abb7c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@57a7b3ad[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@36091b3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@768d4c57[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:AAP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-AAP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-30/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Application Administration Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896657","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896657","key":"ORDGP-29","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@27c98911[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6026179b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3f80b1ab[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6fcae30f[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61d1d7a0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6467f327[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5e500be9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@663a59b7[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@939ee07[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@521cdacc[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@c4d8c25[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@380e8bfa[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TRC"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:16.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TRC","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-29/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Traceability Matrix","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896656","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896656","key":"ORDGP-28","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:43.183+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5dac0f9f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@20cd6bc[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3050f768[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@548d6ee8[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@38ccbba6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@5b9fe5f1[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6c43a25d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@53066b13[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@e4afb5e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2ade270b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b7e3947[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3b408fc8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-28/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhzg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896655","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896655","key":"ORDGP-27","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5cc4e61b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6dff084f[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@33eb6ad6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@26c3b194[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5e6c5cf1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@332abd82[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b7fcceb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@600b9901[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5cbcca25[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3a9caa9d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f2131b1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@23de60c5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:43.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-27/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896654","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896654","key":"ORDGP-26","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:13.192+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@7cb9a3c8[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1bbb97fb[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2592493[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@451a6f6c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@622f3acb[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2a1e31a1[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@61a8e5cd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@775f879b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6cbd02d9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@3775b5d6[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11d5a878[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1abd8686[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:53.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-26/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhz0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896653","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896653","key":"ORDGP-25","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@571b55f0[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6fc83cd9[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2f6e4311[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@1ee9cd1[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c3253b9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@574de807[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@a664f34[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7f9b42bd[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@21ea796c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@195fb086[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@21f84376[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4d3735e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:34.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-25/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhys:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896652","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896652","key":"ORDGP-24","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6dbe9ced[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1eb78eba[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6b962ff8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4976ae6e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6fc26c48[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@29b7064f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7304156e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@f7dd0be[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@73214d35[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@62b5b860[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@31c97e3d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5050b09a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"P","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_P"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_P","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-24/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for P","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896651","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896651","key":"ORDGP-23","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4c884c36[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@62028ee0[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5571c7d2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@23722612[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74c7e8c[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6a7cba16[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3168afdc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@3185d55[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6744fba4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@68674150[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1c0515cf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5d3611ef[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL_Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-23/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhyc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896650","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896650","key":"ORDGP-22","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4a7cf85c[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5198119a[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@758c2c48[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6489f7a2[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@791c37d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@23a2bdf9[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@37583ba9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1c47ee07[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@15444cd9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@233f66fd[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@554c8440[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@76586f38[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:14:28.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-22/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhy4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896649","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896649","key":"ORDGP-21","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:33:19.170+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4f62a511[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@443796fc[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@208efbf0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@58f6196b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2bdabcd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@cb1c2fe[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5b37f9e3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@33e28eaf[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5ceeb8dd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5e4a278c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3a563547[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1d664354[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:13:52.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-21/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896648","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896648","key":"ORDGP-20","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2532744[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5126cdf9[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2d4af701[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4ae4ae54[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@65457c1d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@17f31317[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6dfb1c17[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@20299f2[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c69b83b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@438d710a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76a3d6c8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@60f80ce7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TCP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:54.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TCP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-20/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Test Cases Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896647","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896647","key":"ORDGP-19","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@f7092b8[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d8de0e2[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3a77ddef[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@28efb0b3[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@11735b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7a935723[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7e0f753b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@2bb02861[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@20b00de7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@40fa7c9d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45d96f14[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6f80b4ee[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CFTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:08:41.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CFTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-19/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhxg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Functional / Requirements Testing Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896646","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896646","key":"ORDGP-18","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@6675ce95[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@58e6e577[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@51581005[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3efa8a04[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7b0192dd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@69a47e3d[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@78ed8334[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@12ad8c87[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@65cd7375[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2f52bc67[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3bb27e9a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@458514df[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:00.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTR","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-18/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Report","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896645","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896645","key":"ORDGP-17","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:34.116+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5832af92[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@10d7b141[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@93b8673[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@244b73ac[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7beba462[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@78aade61[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2df7d719[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@52de0718[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@74b07195[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5a47e0b4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@491bbbfa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6b5f9306[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:58.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-17/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhx0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896644","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896644","key":"ORDGP-16","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@229bde01[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@54d9920b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@63ac69d8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7bfdf66c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@15ab8a12[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@546e1b58[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@540c4aa4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@405698df[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@96471dd[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2d740f72[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1b1b3912[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6f7fcace[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"Q","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:44.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-16/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhws:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896643","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896643","key":"ORDGP-15","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5fad8d67[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8a976b[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@624f32f7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@36aac01a[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@db62ff6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@ed70789[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1514542e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@755eec86[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@49aba444[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7ff619b7[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@48f48743[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@4acc7807[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DTP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:06:25.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DTP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-15/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Development Test Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896642","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896642","key":"ORDGP-14","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@4fd48ed1[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7c876d87[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2fe0b189[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@684c0aa7[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@18c67c73[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@148dfdf5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3ecb6a14[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@36da4658[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d548114[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@664da51e[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b3e809[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@67bf96a1[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SSDS"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:11:17.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SSDS","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-14/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhwc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"System and Software Design Specification including Source Code Review","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896641","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896641","key":"ORDGP-13","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:20.501+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3197117d[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@58908260[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1d15558a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@414a47ca[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b663518[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3a6366a8[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@deddd6b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@1e8abf0b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45e8737[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@2529f732[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@464c7079[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@d75ed5c[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:48.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-13/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhw4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896640","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896640","key":"ORDGP-12","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@5a512d2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d5eb2bb[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43dd8191[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4b9e383b[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@25876f6d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@52db3521[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7d25e7e2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@47c0579d[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@59a2b40f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@525bf027[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@130779[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@45aad459[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP_Q"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:30.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Q","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-12/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for Q","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896639","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896639","key":"ORDGP-11","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:34:49.813+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2914eb36[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@233ee538[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6807f81a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@3c44c707[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4e406896[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@f502afb[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@58c0c423[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@42a64cc3[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@fef98d9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1666c2d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5fd941fe[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2f69ce92[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:15:07.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-11/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvo:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896638","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896638","key":"ORDGP-10","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:30:53.289+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@561d1018[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6b9cb212[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7e44d1fa[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@70c6f002[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3eadb4e5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@429711fa[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1a04d353[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5d8576f1[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@edcfb38[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@743e33d8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@489ce847[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@3e582d5b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:DIL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:05:18.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-DIL for Dev Preview","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-10/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhvg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Discrepancy Log for Developer Preview","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896637","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896637","key":"ORDGP-9","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-31T17:42:51.174+0200","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1fe0124f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6fedc563[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4a970c4e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4b501ea2[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b55116e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3e5c24ee[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c5bba17[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7351830[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@14f8b7d9[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4bdc8afc[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5ac61a92[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@751d7d62[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIR"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:22:51.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIR for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"WIP-13","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-9/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv8:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Report for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896636","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896636","key":"ORDGP-8","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-02-19T20:35:04.572+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@12c3c375[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47100f2c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b31fff8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@6c1ffcdd[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6e895017[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@63216044[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@474b9de7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@542168c7[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@700c83bc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@1847eeb9[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@378ecf3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5c40cb0b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:IVP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:09:59.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-IVP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-8/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhv0:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Configuration and Installation Testing Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896635","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896635","key":"ORDGP-7","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@239dd411[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d97b855[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3033e74f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@56a40c[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@18700dc[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@6068571f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fcecdc2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@7a0d66f3[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4335088e[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@61c76f58[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@58de0e7f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@49f5c169[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"No Upload","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:TIP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:12:37.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-TIP for Dev","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-7/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhus:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Technical Installation Plan for DEV","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896634","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896634","key":"ORDGP-6","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@48eaf2f2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@79d52b2d[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@30e9ee2d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@60b5275e[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4cdda98f[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@3c048d4c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43e38467[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@a25c492[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2b159588[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@33e3134b[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6cfc79ec[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@485921b5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RA"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:07:33.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RA","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-6/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuk:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Risk Assessment","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896633","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896633","key":"ORDGP-5","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":"2022-03-01T10:34:12.755+0100","customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@62b28e74[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@30504b0d[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f8ad0b2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4db0f46d[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@444d4fc1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2466dac1[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@d4091bf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@47991fe6[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@69047393[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@7ba61ca0[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7262b702[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7d0bf087[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSD"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/watchers","watchCount":3,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-04-01T11:03:55.000+0200","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSD","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":"1","customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-5/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhuc:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Combined Specification Document","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896632","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896632","key":"ORDGP-4","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@36fc2a64[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4fcab0d6[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@40741f8a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5aa24b52[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5e97be12[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@2ca979d5[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c41ab85[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@4f19184[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@6775c826[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@f572cc[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4129fcd4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@495c38c4[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:CSQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-CSQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:57.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-4/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhu4:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Client Site Qualification","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896631","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896631","key":"ORDGP-3","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@2dc53790[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@62fe4933[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4d5f8cb3[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@5df8e3fa[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5168ce0a[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@a4c705c[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3bc75fb2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@21ba9c03[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@36b51ea0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@5f1246ba[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5ea9b825[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@2b067d77[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:RAL"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-RAL","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-3/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtw:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Role Assignment Log","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896630","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896630","key":"ORDGP-2","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@805031e[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@37501c25[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@30dda0cf[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@7db23c5[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@76ba41b0[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@64a9f265[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@39affde7[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@6734241c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@43a74e8b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@68b6b640[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2e302e74[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6862fb6a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:SMQ"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-SMQ","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:56.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-2/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhto:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Supplier Assessment Mail Questionnaire","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896629","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896629","key":"ORDGP-1","fields":{"customfield_18595":null,"customfield_19201":null,"customfield_18596":null,"customfield_19202":null,"customfield_18597":null,"customfield_19203":null,"customfield_18598":null,"customfield_18591":null,"customfield_18592":null,"customfield_18594":null,"customfield_19208":null,"customfield_19209":null,"customfield_19204":null,"resolution":null,"customfield_19206":null,"customfield_11720":null,"customfield_12800":null,"customfield_11711":null,"customfield_11710":null,"customfield_11713":null,"customfield_12801":null,"customfield_11712":null,"customfield_11715":null,"customfield_11714":null,"customfield_11717":null,"customfield_12805":null,"customfield_12808":null,"customfield_11719":null,"customfield_12807":null,"customfield_11718":null,"customfield_12809":null,"customfield_18590":null,"customfield_18584":null,"customfield_18585":null,"lastViewed":null,"customfield_18586":null,"customfield_18102":null,"customfield_18587":null,"customfield_18103":null,"customfield_18580":null,"customfield_18581":null,"customfield_18582":null,"customfield_18583":null,"customfield_18588":null,"customfield_18104":null,"customfield_18589":null,"customfield_11702":null,"customfield_11704":null,"aggregatetimeoriginalestimate":null,"customfield_11703":null,"customfield_11706":null,"customfield_11705":null,"customfield_21508":null,"customfield_11708":null,"customfield_21507":null,"customfield_11707":null,"customfield_21506":null,"issuelinks":[],"customfield_21505":null,"customfield_11709":null,"customfield_21504":null,"customfield_21503":null,"customfield_21502":null,"customfield_21501":null,"customfield_21500":null,"customfield_18573":null,"customfield_18574":null,"customfield_18575":null,"customfield_18576":null,"customfield_18570":null,"customfield_18571":null,"customfield_18572":null,"customfield_17000":"{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@3bc942b[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@52544f01[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@54f06448[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@242c0590[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@318db943[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@577f686f[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7a94ec[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@44be01f6[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1825ef83[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@34b5d0f8[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@603cff76[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@5439f336[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}","customfield_18577":null,"customfield_18578":null,"customfield_18579":null,"customfield_10600":null,"customfield_10601":null,"customfield_10602":null,"customfield_10603":null,"customfield_10604":null,"customfield_10605":null,"customfield_10606":null,"customfield_10607":null,"customfield_10608":null,"customfield_10609":null,"customfield_20400":null,"customfield_18562":null,"customfield_18563":null,"customfield_18564":null,"customfield_18565":null,"subtasks":[],"customfield_18560":null,"customfield_18561":null,"customfield_18566":null,"customfield_18567":null,"customfield_18568":null,"customfield_18569":null,"customfield_18551":null,"customfield_18552":null,"issuetype":{"self":"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006","id":"10006","description":"","iconUrl":"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype","name":"Documentation","subtask":false,"avatarId":10306},"customfield_18550":null,"customfield_18559":null,"customfield_19404":null,"customfield_19405":null,"customfield_18558":null,"customfield_18540":null,"customfield_18541":null,"customfield_18542":null,"customfield_18300":null,"customfield_18301":null,"customfield_18543":null,"customfield_18548":null,"customfield_18549":null,"customfield_18302":null,"customfield_18544":null,"customfield_18545":null,"customfield_18546":null,"customfield_18547":null,"customfield_11902":null,"customfield_11904":null,"customfield_11903":null,"customfield_11906":null,"customfield_11907":null,"customfield_18530":null,"customfield_18531":null,"customfield_18532":null,"customfield_17200":null,"customfield_18537":null,"customfield_18538":null,"customfield_18539":null,"customfield_18533":null,"customfield_18534":null,"customfield_18535":null,"customfield_18536":null,"customfield_10800":null,"customfield_20602":null,"customfield_20600":null,"customfield_20601":null,"customfield_18520":null,"customfield_18521":null,"customfield_18526":"","customfield_18529":null,"customfield_18522":null,"customfield_18523":null,"customfield_18524":"","environment":"DEV","customfield_18519":null,"customfield_19608":null,"customfield_22214":null,"customfield_22213":null,"customfield_22211":null,"customfield_22210":null,"customfield_13502":null,"customfield_13501":null,"customfield_12409":null,"customfield_22209":null,"customfield_22208":null,"customfield_21118":null,"customfield_21117":null,"customfield_22206":null,"customfield_21116":null,"customfield_22205":null,"customfield_21115":null,"customfield_21114":null,"customfield_22203":null,"customfield_21113":null,"customfield_22202":null,"customfield_21112":null,"customfield_21111":null,"customfield_21110":null,"customfield_11303":null,"customfield_10214":null,"customfield_15903":null,"customfield_11305":null,"customfield_15901":null,"customfield_11307":null,"timeestimate":null,"customfield_15906":null,"customfield_21109":null,"customfield_20019":null,"customfield_21108":null,"customfield_21107":null,"customfield_20017":null,"customfield_21106":null,"customfield_20018":null,"customfield_21105":null,"customfield_20015":null,"customfield_21104":null,"customfield_20016":null,"customfield_21103":null,"customfield_20013":null,"customfield_20014":null,"customfield_21102":null,"customfield_20011":null,"customfield_21101":null,"customfield_21100":null,"customfield_20012":null,"customfield_20010":null,"customfield_10210":null,"customfield_15900":null,"customfield_10211":null,"customfield_11301":null,"customfield_10212":null,"customfield_13713":null,"customfield_10203":null,"customfield_14803":null,"customfield_13712":null,"customfield_10204":null,"customfield_13715":null,"customfield_10205":null,"customfield_14801":null,"customfield_10206":null,"customfield_14802":null,"customfield_13717":null,"customfield_10207":null,"customfield_13716":null,"customfield_10208":null,"customfield_10209":null,"customfield_20008":null,"customfield_20009":null,"customfield_20006":null,"customfield_20007":null,"customfield_20004":null,"customfield_20005":null,"customfield_20002":null,"customfield_20003":null,"customfield_20000":null,"customfield_20001":null,"customfield_14800":null,"customfield_13710":null,"customfield_13702":null,"customfield_13701":null,"customfield_13704":null,"customfield_13706":null,"customfield_13708":null,"customfield_13707":null,"customfield_13709":null,"customfield_19003":null,"aggregatetimespent":null,"customfield_13700":null,"workratio":-1,"customfield_21318":null,"customfield_21317":null,"customfield_21316":null,"customfield_21315":null,"customfield_21314":null,"customfield_22403":null,"customfield_21313":null,"customfield_22402":null,"customfield_21312":null,"customfield_22401":null,"customfield_21311":null,"customfield_22400":null,"customfield_21310":null,"customfield_12600":"","customfield_11744":null,"customfield_11743":null,"customfield_11501":null,"customfield_11746":null,"customfield_11745":null,"customfield_11748":null,"customfield_11747":null,"customfield_21309":null,"customfield_21308":null,"customfield_21307":null,"customfield_21306":null,"customfield_21305":null,"customfield_21304":null,"customfield_21303":null,"customfield_21302":null,"customfield_19222":null,"customfield_21301":null,"customfield_19223":null,"customfield_21300":null,"customfield_19224":null,"customfield_19225":null,"customfield_19220":null,"customfield_19221":null,"customfield_11740":null,"customfield_19226":null,"customfield_19227":null,"customfield_11500":null,"customfield_11742":null,"customfield_19228":null,"customfield_11741":null,"customfield_19229":null,"customfield_13911":null,"customfield_11733":null,"customfield_11732":null,"customfield_13913":null,"customfield_11735":null,"customfield_13912":null,"customfield_11734":null,"customfield_13915":null,"customfield_11737":null,"customfield_13914":null,"customfield_11736":null,"customfield_13917":null,"customfield_11739":null,"customfield_13916":null,"customfield_11738":null,"customfield_13918":null,"customfield_19211":null,"customfield_19212":null,"customfield_19213":null,"customfield_19214":null,"customfield_19210":null,"customfield_19219":null,"customfield_19215":null,"customfield_19216":null,"customfield_11731":null,"customfield_19217":null,"customfield_11730":null,"customfield_19218":null,"customfield_12811":null,"customfield_11722":null,"customfield_11721":null,"customfield_12810":null,"customfield_11724":null,"customfield_12813":null,"customfield_13902":null,"customfield_11723":null,"customfield_12812":null,"customfield_11726":null,"customfield_12815":null,"customfield_13904":null,"customfield_11725":null,"customfield_12814":null,"customfield_13903":null,"customfield_11728":null,"customfield_12817":null,"customfield_13906":null,"customfield_12816":null,"customfield_11727":null,"customfield_13905":null,"customfield_12819":null,"customfield_12818":null,"customfield_11729":null,"customfield_15400":null,"customfield_18911":null,"customfield_18912":null,"customfield_18913":null,"customfield_18914":null,"customfield_18910":null,"customfield_18908":null,"customfield_18909":null,"customfield_14306":null,"customfield_14307":null,"customfield_18905":null,"customfield_18906":null,"customfield_18907":null,"customfield_18900":null,"customfield_14300":null,"customfield_14301":"","customfield_18902":null,"customfield_18903":null,"customfield_14304":null,"customfield_14305":null,"customfield_14302":null,"labels":["Doc:VP"],"customfield_14303":null,"customfield_13207":null,"customfield_15628":null,"customfield_13206":null,"customfield_15626":null,"customfield_15627":null,"customfield_15620":null,"customfield_15621":null,"customfield_13203":null,"customfield_15624":null,"customfield_15625":null,"customfield_13205":null,"customfield_15622":null,"customfield_13204":null,"customfield_15623":null,"customfield_17800":null,"customfield_15617":null,"customfield_12107":null,"customfield_15618":null,"customfield_12106":null,"customfield_15615":null,"customfield_15616":null,"customfield_12108":null,"customfield_15619":null,"customfield_15610":null,"customfield_12101":null,"reporter":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_12100":null,"customfield_12103":null,"customfield_15613":null,"customfield_12102":null,"customfield_15614":null,"customfield_16702":null,"customfield_12105":null,"customfield_16701":null,"customfield_15611":null,"customfield_12104":null,"customfield_16700":null,"customfield_15612":null,"customfield_11006":null,"customfield_15606":null,"customfield_14517":null,"customfield_11007":null,"customfield_15607":null,"customfield_14518":null,"customfield_15604":null,"customfield_14515":null,"customfield_15605":null,"customfield_14516":null,"customfield_15608":null,"customfield_14519":null,"customfield_15609":null,"customfield_14510":null,"customfield_11000":null,"customfield_11001":null,"customfield_11002":null,"customfield_15603":null,"customfield_14514":null,"customfield_11003":null,"customfield_15600":null,"customfield_11004":null,"customfield_15601":null,"customfield_11005":null,"customfield_14512":null,"customfield_14506":null,"customfield_14507":null,"customfield_14504":null,"customfield_14505":null,"customfield_14508":null,"customfield_14509":null,"watches":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/watchers","watchCount":0,"isWatching":false},"customfield_14502":null,"customfield_13411":null,"customfield_13414":null,"customfield_14500":null,"customfield_13413":null,"customfield_14501":null,"customfield_13404":null,"customfield_13407":null,"customfield_13406":null,"customfield_13408":null,"updated":"2022-01-27T09:34:45.000+0100","customfield_22110":null,"timeoriginalestimate":null,"description":"C-VP","customfield_13401":null,"customfield_13402":null,"customfield_16905":null,"customfield_12305":null,"customfield_14726":null,"customfield_16904":null,"customfield_12304":null,"customfield_14727":null,"customfield_16903":"","customfield_14724":null,"customfield_16902":"","customfield_14725":null,"customfield_16909":null,"customfield_16908":null,"customfield_16907":null,"customfield_16906":null,"customfield_22109":null,"customfield_22108":null,"customfield_22107":null,"customfield_22106":null,"customfield_22105":null,"customfield_22104":null,"customfield_21014":null,"customfield_22103":null,"customfield_22102":null,"customfield_21013":null,"customfield_21012":null,"customfield_21011":null,"customfield_21010":null,"customfield_12301":null,"customfield_14722":null,"customfield_16900":null,"customfield_12300":null,"customfield_14723":null,"customfield_12303":null,"customfield_14720":null,"customfield_12302":null,"customfield_14721":null,"customfield_14715":null,"customfield_14716":null,"customfield_14713":null,"customfield_14714":null,"customfield_14719":null,"customfield_14717":null,"customfield_14718":null,"customfield_21009":null,"customfield_21008":null,"customfield_21007":null,"customfield_21006":null,"customfield_21005":null,"customfield_18510":null,"customfield_15001":null,"customfield_18515":null,"customfield_18516":null,"customfield_18517":null,"customfield_19606":null,"customfield_18518":null,"customfield_19607":null,"fixVersions":[{"self":"https://jira-dev.biscrum.com/rest/api/2/version/26013","id":"26013","description":"","name":"1.0","archived":false,"released":false}],"customfield_18511":null,"customfield_15008":null,"customfield_18512":null,"customfield_18513":null,"customfield_18514":null,"customfield_15007":null,"customfield_18508":null,"customfield_21918":null,"customfield_18509":null,"customfield_21917":null,"customfield_21916":null,"customfield_21915":null,"customfield_21914":null,"customfield_21913":null,"customfield_21912":null,"customfield_21910":null,"customfield_18505":null,"customfield_18506":null,"customfield_18507":null,"customfield_18500":null,"priority":null,"customfield_18501":null,"customfield_21909":null,"customfield_21908":null,"customfield_21907":null,"customfield_21906":null,"customfield_21905":null,"customfield_21903":null,"customfield_21902":null,"customfield_21901":null,"customfield_21900":null,"customfield_17400":null,"customfield_20800":null,"customfield_20801":null,"customfield_16301":null,"customfield_16300":null,"customfield_15202":null,"customfield_15200":null,"customfield_15201":null,"customfield_18708":null,"customfield_18709":null,"created":"2022-01-26T15:38:54.000+0100","customfield_18702":null,"customfield_14102":null,"customfield_14103":null,"customfield_14100":null,"customfield_18705":null,"customfield_17609":null,"customfield_17608":null,"customfield_17607":null,"customfield_17601":null,"customfield_17600":null,"customfield_17605":null,"customfield_17604":null,"customfield_17602":null,"customfield_16504":null,"customfield_18915":null,"customfield_21400":null,"customfield_12930":null,"customfield_12921":null,"customfield_12920":null,"customfield_12923":null,"customfield_12922":null,"customfield_10503":null,"customfield_12925":null,"customfield_10504":null,"customfield_12924":null,"customfield_10505":null,"customfield_12927":null,"customfield_10506":null,"customfield_12926":null,"customfield_12929":null,"customfield_10508":null,"customfield_12928":null,"customfield_20301":null,"customfield_12910":null,"customfield_12912":null,"customfield_12911":null,"customfield_12914":null,"customfield_12915":null,"customfield_12917":null,"customfield_12919":null,"assignee":null,"customfield_18210":null,"customfield_18211":null,"customfield_18212":null,"customfield_19307":null,"customfield_19308":null,"customfield_19309":null,"customfield_18214":null,"customfield_19306":null,"customfield_12901":null,"customfield_12903":null,"customfield_12902":null,"customfield_12905":null,"customfield_12904":null,"customfield_12909":null,"customfield_18201":null,"customfield_18202":null,"customfield_18207":null,"customfield_18208":null,"customfield_18209":null,"customfield_18203":null,"customfield_18204":null,"customfield_18206":null,"customfield_21605":null,"customfield_21604":null,"votes":{"self":"https://jira-dev.biscrum.com/rest/api/2/issue/ORDGP-1/votes","votes":0,"hasVoted":false},"customfield_21603":null,"customfield_21602":"","customfield_21601":null,"customfield_21600":null,"customfield_17102":null,"customfield_17101":null,"customfield_16011":null,"customfield_17100":null,"customfield_16010":null,"customfield_17103":null,"customfield_10700":null,"customfield_20500":null,"customfield_19510":null,"customfield_16002":null,"customfield_16001":null,"customfield_16000":null,"customfield_16004":null,"customfield_16003":null,"customfield_16008":null,"customfield_19509":null,"customfield_19500":null,"customfield_19506":null,"customfield_19507":null,"duedate":null,"customfield_21801":null,"customfield_21004":null,"customfield_21003":null,"customfield_21002":null,"customfield_21001":null,"customfield_21000":null,"customfield_14711":null,"customfield_15800":null,"customfield_11201":null,"customfield_14712":null,"customfield_11202":null,"customfield_14710":null,"customfield_10104":null,"customfield_14704":null,"customfield_10105":null,"customfield_14705":null,"customfield_10106":null,"customfield_10107":null,"customfield_14703":null,"customfield_14708":null,"customfield_10108":"","customfield_14709":null,"customfield_13610":null,"customfield_10100":null,"customfield_14700":null,"customfield_10101":null,"customfield_10102":null,"customfield_13611":null,"customfield_10103":null,"customfield_13603":null,"customfield_13602":null,"customfield_13605":null,"customfield_13604":null,"customfield_13607":null,"customfield_13606":null,"customfield_13609":null,"customfield_13608":null,"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/14603","description":"Fulfills the Definition of Ready (DoR)","iconUrl":"https://jira-dev.biscrum.com/","name":"To Do","id":"14603","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/2","id":2,"key":"new","colorName":"blue-gray","name":"To Do"}},"customfield_12990":null,"customfield_12992":null,"customfield_12991":null,"customfield_12993":null,"customfield_13601":null,"customfield_12745":null,"customfield_12744":null,"customfield_12989":null,"customfield_12988":null,"aggregatetimeestimate":null,"customfield_19134":null,"customfield_19135":null,"customfield_22300":null,"creator":{"self":"https://jira-dev.biscrum.com/rest/api/2/user?username=tech_integration","name":"tech_integration","key":"tech_integration","emailAddress":"tech_integration@bi.com","avatarUrls":{"48x48":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=48","24x24":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=24","16x16":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=16","32x32":"https://www.gravatar.com/avatar/e12a2962fb20595dce41ac2c0e06de40?d=mm&s=32"},"displayName":"Technical Integration","active":true,"timeZone":"Europe/Berlin"},"customfield_19131":null,"customfield_19132":null,"customfield_19133":null,"customfield_12741":null,"customfield_12740":null,"customfield_12743":null,"customfield_12742":null,"customfield_12734":null,"customfield_13823":null,"customfield_11402":null,"customfield_13822":null,"customfield_13825":null,"customfield_13824":null,"customfield_12738":null,"customfield_13827":null,"customfield_12737":null,"customfield_13826":null,"customfield_13829":null,"customfield_12739":null,"customfield_21207":null,"customfield_21206":null,"customfield_21205":null,"customfield_21203":null,"customfield_19123":null,"customfield_21202":null,"customfield_21201":null,"customfield_21200":null,"customfield_19126":null,"timespent":null,"customfield_19122":null,"customfield_19128":null,"customfield_11401":null,"customfield_13821":null,"customfield_12731":null,"customfield_13820":null,"customfield_11400":null,"customfield_13812":null,"customfield_13811":null,"customfield_14900":"","customfield_13814":null,"customfield_12724":null,"customfield_13813":null,"customfield_14901":null,"customfield_12727":null,"customfield_13816":null,"customfield_13818":null,"customfield_12728":null,"customfield_13817":null,"customfield_13819":null,"customfield_19113":"","customfield_19114":"","customfield_19115":null,"customfield_19110":null,"customfield_19116":null,"customfield_19117":null,"customfield_13810":null,"customfield_19118":null,"customfield_12720":null,"customfield_19119":null,"customfield_10301":null,"customfield_12954":null,"customfield_12712":null,"customfield_13801":null,"customfield_12711":null,"customfield_12953":null,"customfield_13800":null,"customfield_12714":null,"customfield_12956":null,"customfield_13803":null,"customfield_12713":null,"customfield_12955":null,"customfield_13802":"","customfield_12716":null,"customfield_12957":null,"customfield_12715":null,"customfield_13804":null,"customfield_12717":null,"customfield_13809":null,"customfield_12719":null,"customfield_13808":null,"customfield_19343":"","customfield_19344":null,"customfield_19345":null,"customfield_19104":null,"customfield_19340":null,"customfield_19341":null,"customfield_19342":null,"customfield_12950":null,"customfield_19105":null,"customfield_19106":null,"customfield_12952":null,"customfield_19107":null,"customfield_12951":null,"customfield_19108":null,"customfield_12943":null,"customfield_12701":null,"customfield_12942":null,"customfield_12703":null,"customfield_12945":null,"customfield_11614":null,"customfield_12944":null,"customfield_12702":null,"customfield_11613":null,"customfield_12705":null,"customfield_12947":null,"customfield_12946":null,"customfield_12704":null,"customfield_11615":null,"customfield_12707":null,"customfield_12949":null,"customfield_12706":null,"customfield_12948":null,"customfield_12709":null,"customfield_12708":null,"customfield_18001":null,"customfield_18003":null,"customfield_18000":null,"customfield_19337":null,"customfield_12941":null,"customfield_19338":null,"customfield_12940":null,"customfield_19339":null,"customfield_12932":null,"customfield_11601":null,"customfield_12931":null,"customfield_10512":null,"customfield_12934":null,"customfield_12933":null,"customfield_12936":null,"customfield_12935":null,"customfield_12938":null,"customfield_11606":null,"customfield_11609":null,"customfield_12939":null,"customfield_13100":null,"customfield_13104":null,"customfield_17704":null,"customfield_17703":null,"customfield_13106":null,"customfield_13105":null,"customfield_16608":null,"customfield_16607":null,"customfield_16606":null,"customfield_16605":null,"customfield_16609":null,"customfield_16600":null,"customfield_12000":null,"customfield_12002":null,"customfield_12001":null,"customfield_16604":null,"customfield_16603":null,"customfield_16602":null,"customfield_15505":null,"components":[],"customfield_17920":null,"customfield_15501":null,"customfield_17922":null,"customfield_15502":null,"customfield_17921":null,"customfield_13317":null,"customfield_17917":null,"customfield_13316":null,"customfield_17916":null,"customfield_17915":null,"customfield_14405":null,"customfield_17914":null,"customfield_14406":null,"customfield_17919":null,"customfield_17918":null,"customfield_16820":null,"customfield_14400":null,"customfield_13311":null,"customfield_13310":null,"customfield_13313":null,"customfield_17913":null,"customfield_14403":null,"customfield_17912":null,"customfield_14404":null,"customfield_13315":null,"customfield_17911":null,"customfield_16822":null,"customfield_14401":null,"customfield_13314":null,"customfield_17910":null,"customfield_16821":null,"customfield_14402":null,"customfield_13306":null,"customfield_16817":null,"customfield_13305":null,"customfield_16816":null,"customfield_16815":null,"customfield_13307":null,"customfield_16814":null,"customfield_13309":null,"customfield_16819":null,"customfield_16818":null,"progress":{"progress":0,"total":0},"customfield_10030":null,"customfield_10031":null,"project":{"self":"https://jira-dev.biscrum.com/rest/api/2/project/30107","id":"30107","key":"ORDGP","name":"One Release DocGen Project","projectTypeKey":"software","avatarUrls":{"48x48":"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803","24x24":"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803","16x16":"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803","32x32":"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803"}},"customfield_10033":null,"customfield_16813":null,"customfield_13302":null,"customfield_17902":null,"customfield_10034":null,"customfield_13301":null,"customfield_17901":null,"customfield_16811":null,"customfield_13304":null,"customfield_17900":null,"customfield_16810":null,"customfield_16806":null,"customfield_10027":null,"customfield_16805":null,"customfield_10028":null,"customfield_16804":null,"customfield_16803":null,"customfield_16809":null,"customfield_16808":null,"resolutiondate":null,"customfield_16807":null,"customfield_10021":"","customfield_12200":null,"customfield_13530":null,"customfield_10022":null,"customfield_16802":null,"customfield_16801":null,"customfield_12201":null,"customfield_10024":null,"customfield_16800":null,"customfield_10025":null,"customfield_13526":null,"customfield_10017":null,"customfield_10019":null,"customfield_13529":null,"customfield_13520":null,"customfield_10010":null,"customfield_10011":null,"customfield_13522":null,"customfield_13521":null,"customfield_10013":null,"customfield_13523":null,"customfield_10005":null,"customfield_13515":null,"customfield_13514":null,"customfield_13517":null,"customfield_14603":null,"customfield_13516":null,"customfield_10009":"2|i0uhtg:","customfield_13519":null,"customfield_13518":null,"customfield_22229":null,"customfield_22228":null,"customfield_22227":null,"customfield_22226":null,"summary":"Validation Plan","customfield_22225":null,"customfield_22224":null,"customfield_22223":null,"customfield_22222":null,"customfield_22221":null,"customfield_22220":null,"customfield_10000":null,"customfield_13511":null,"customfield_10001":null,"customfield_14601":null,"customfield_13510":null,"customfield_14602":null,"customfield_13513":null,"customfield_10003":null,"customfield_10004":null,"customfield_13512":null,"customfield_14600":null,"customfield_13504":null,"customfield_13503":null,"customfield_13506":null,"customfield_13505":null,"customfield_13508":null,"customfield_13507":null,"customfield_13509":null,"customfield_22219":null,"customfield_22218":null,"customfield_22217":null,"customfield_22216":null,"customfield_22215":null,"customfield_17300":null,"customfield_17304":null,"customfield_17303":null,"customfield_17302":null,"customfield_17301":null,"customfield_10900":null,"customfield_10901":null,"customfield_10902":null,"customfield_10903":null,"customfield_10904":null,"customfield_20703":null,"customfield_20704":null,"customfield_20701":null,"customfield_20700":null,"customfield_14021":null,"customfield_14022":null,"customfield_14025":null,"customfield_14026":null,"customfield_16202":null,"customfield_14023":null,"customfield_16201":null,"customfield_14024":null,"customfield_14027":null,"customfield_17529":null,"versions":[],"customfield_17520":null,"customfield_14010":null,"customfield_15100":null,"customfield_14011":null,"customfield_15103":null,"customfield_19703":null,"customfield_14014":null,"customfield_15104":null,"customfield_17523":null,"customfield_14015":null,"customfield_17522":null,"customfield_19705":null,"customfield_14012":null,"customfield_15102":null,"customfield_17521":null,"customfield_19706":null,"customfield_14013":null,"customfield_15107":null,"customfield_17528":null,"customfield_14018":null,"customfield_17527":null,"customfield_14019":null,"customfield_15105":null,"customfield_17526":null,"customfield_14016":null,"customfield_15106":null,"customfield_17525":null,"customfield_19702":null,"customfield_14017":null,"customfield_17519":null,"customfield_14009":null,"customfield_17518":null,"customfield_14000":null,"customfield_17513":null,"customfield_14003":null,"customfield_17512":null,"customfield_14004":null,"customfield_17511":null,"customfield_14001":null,"customfield_18606":null,"customfield_14002":null,"aggregateprogress":{"progress":0,"total":0},"customfield_17517":null,"customfield_14007":null,"customfield_17516":null,"customfield_14008":null,"customfield_14005":null,"customfield_18602":null,"customfield_17514":null,"customfield_14006":null,"customfield_17509":null,"customfield_17508":null,"customfield_17507":null,"customfield_17500":null,"customfield_17506":null,"customfield_17505":null,"customfield_17504":null,"customfield_20901":null,"customfield_20900":null,"customfield_16400":null,"customfield_18820":null,"customfield_18821":null,"customfield_18816":null,"customfield_18817":null,"customfield_18818":null,"customfield_18819":null,"customfield_13120":null,"customfield_18812":null,"customfield_15301":null,"customfield_14212":null,"customfield_18813":null,"customfield_13121":null,"customfield_15302":null,"customfield_14213":null,"customfield_18814":null,"customfield_14210":null,"customfield_15300":null,"customfield_14211":null,"customfield_14216":null,"customfield_18810":null,"customfield_15303":null,"customfield_14214":null,"customfield_18811":null,"customfield_15304":null,"customfield_14215":null,"customfield_18809":null,"customfield_13119":null,"customfield_14209":null,"customfield_13118":null,"customfield_14207":null,"customfield_14208":null,"customfield_18805":null,"customfield_18806":null,"customfield_18807":null,"customfield_18808":null,"customfield_18801":null,"customfield_13111":null,"customfield_17711":null,"customfield_18802":null,"customfield_13110":null,"customfield_17710":null,"customfield_18803":null,"customfield_13113":null,"customfield_18804":null,"customfield_14205":null,"customfield_14206":null,"customfield_17713":null,"customfield_17712":null,"customfield_13108":null,"customfield_17708":null,"customfield_13107":null,"customfield_17707":null,"customfield_17706":null,"customfield_13109":null,"customfield_17705":null,"customfield_17709":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_search-fc92ee2e-5969-461c-aa7f-dbea1ec4ff37.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_search-fc92ee2e-5969-461c-aa7f-dbea1ec4ff37.json new file mode 100644 index 00000000..0a0d2a6f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_api_2_search-fc92ee2e-5969-461c-aa7f-dbea1ec4ff37.json @@ -0,0 +1 @@ +{"expand":"schema,names","startAt":0,"maxResults":1000,"total":85,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896750","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896750","key":"ORDGP-122","fields":{"summary":"Document History","customfield_19901":"3","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TRC"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896749","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896749","key":"ORDGP-121","fields":{"summary":"Document History","customfield_19901":"1","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TCP","Doc:TCR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896748","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896748","key":"ORDGP-120","fields":{"summary":"Risk Assessment","customfield_19901":"4","customfield_19902":"{color:blue}There have been no critical failures observed in the testing. For failed test cases no unacceptable risks have been identified. No follow-up actions are required.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

There have been no critical failures observed in the testing. For failed test cases no unacceptable risks have been identified. No follow-up actions are required.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896747","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896747","key":"ORDGP-119","fields":{"summary":"Traceability Matrix","customfield_19901":"3.6","customfield_19902":"{color:blue}The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix has been updated prior to execution of the test cases and has been archived in the validation archive (add a reference).{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix has been updated prior to execution of the test cases and has been archived in the validation archive (add a reference).

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896746","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896746","key":"ORDGP-118","fields":{"summary":"Non-Functional Testing Results","customfield_19901":"3.5.2","customfield_19902":"{color:blue}Non-Functional testing was performed according to the approved functional / requirements test plan (final v1.0), approved on .\n\nThe test execution run of the non-functional test cases was performed on Mar 03. All the test cases of the project were executed without significant failures.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Non-Functional testing was performed according to the approved functional / requirements test plan (final v1.0), approved on <date>.
\n
\nThe test execution run of the non-functional test cases was performed on Mar 03. All the test cases of the project were executed without significant failures.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896745","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896745","key":"ORDGP-117","fields":{"summary":"Discrepancy Log","customfield_19901":"3.3","customfield_19902":"{color:blue}All failures and problems which have been observed during testing have been collected in a discrepancy log. The discrepancy log is attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All failures and problems which have been observed during testing have been collected in a discrepancy log. The discrepancy log is attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896744","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896744","key":"ORDGP-116","fields":{"summary":"Responsibilities and Signature Resource Log","customfield_19901":"3.2","customfield_19902":"{color:blue}All Testers and Test Administrators have signed the signature resource log prior to the start of testing activities. The signature resource log is attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All Testers and Test Administrators have signed the signature resource log prior to the start of testing activities. The signature resource log is attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896743","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896743","key":"ORDGP-115","fields":{"summary":"Training","customfield_19901":"3.1","customfield_19902":"{color:blue}All Testers and Test Administrators have been trained prior to the start of testing activities. Two classroom trainings have been performed on 23-Apr-2001 in Ingelheim and on 26-Apr-2011 in Ridgefield. Copies of the training records and agenda are attached to this report.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All Testers and Test Administrators have been trained prior to the start of testing activities. Two classroom trainings have been performed on 23-Apr-2001 in Ingelheim and on 26-Apr-2011 in Ridgefield. Copies of the training records and agenda are attached to this report.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896742","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896742","key":"ORDGP-114","fields":{"summary":"Testing Environment","customfield_19901":"2","customfield_19902":"{color:blue}All integration and acceptance test cases have been executed in the qualified validation environment as defined in the combined functional / requirements testing plan (ref).{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

All integration and acceptance test cases have been executed in the qualified validation environment as defined in the combined functional / requirements testing plan (ref).

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896741","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896741","key":"ORDGP-113","fields":{"summary":"Purpose","customfield_19901":"1","customfield_19902":"{color:blue}The purpose of this document is to report on testing activities that were performed according to the functional / requirements testing plan, to summarize and asses all failed and skipped test cases, and decide if the System name can be formally released for installation in production environment.{color}","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The purpose of this document is to report on testing activities that were performed according to the functional / requirements testing plan, to summarize and asses all failed and skipped test cases, and decide if the System name can be formally released for installation in production environment.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896740","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896740","key":"ORDGP-112","fields":{"summary":"Document History","customfield_19901":"8","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896739","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896739","key":"ORDGP-111","fields":{"summary":"Reference Documents","customfield_19901":"7","customfield_19902":null,"issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896738","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896738","key":"ORDGP-110","fields":{"summary":"Definitions","customfield_19901":"6.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896737","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896737","key":"ORDGP-109","fields":{"summary":"Abbreviations","customfield_19901":"6.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CFTR","Doc:CFTR_M"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896736","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896736","key":"ORDGP-108","fields":{"summary":"Traceability Matrix","customfield_19901":"9","customfield_19902":"{color:blue}The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix will be updated before test execution to include all functional and requirements test cases.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The test coverage is captured in the traceability matrix which maps user requirements and functional specifications to test cases. The traceability matrix will be updated before test execution to include all functional and requirements test cases.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896735","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896735","key":"ORDGP-107","fields":{"summary":"Test Cases","customfield_19901":"8.1","customfield_19902":"||Risk Priority||Level of Testing||\n|*3*|{color:blue}No testing required{color}\n |\n|*2*|{color:blue}Testing of functionality or requirements without challenge/boundary tests{color}\n |\n|*1*|{color:blue}Full test of requirement or functionality including challenge/boundary tests (e.g. invalid, borderline or missing input values, out-of-order execution of functions, disconnected interfaces etc.){color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Risk PriorityLevel of Testing
3No testing required
2Testing of functionality or requirements without challenge/boundary tests
1Full test of requirement or functionality including challenge/boundary tests (e.g. invalid, borderline or missing input values, out-of-order execution of functions, disconnected interfaces etc.)
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896734","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896734","key":"ORDGP-106","fields":{"summary":"Scope of Non-Functional Testing","customfield_19901":"7.2.2","customfield_19902":"{color:blue}The following aspects of system performance will be covered in requirements test cases:\n * Concurrent access of 10 users accessing the same study (including data entry, modification of data, and deletion of data)\n * Remote access via low-bandwidth connections, simulation slow DSL connections down to 1 Mbit/s and Ping time up to 1000ms. A WAN emulator will be used to simulate the exact conditions as specified in the test cases.\n\nPerformance testing will be done in the validation environment. Since the hardware of the future production environment is more powerful the risk of using the validation environment for performance testing is low and acceptable.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following aspects of system performance will be covered in requirements test cases:
\n * Concurrent access of 10 users accessing the same study (including data entry, modification of data, and deletion of data)
\n * Remote access via low-bandwidth connections, simulation slow DSL connections down to 1 Mbit/s and Ping time up to 1000ms. A WAN emulator will be used to simulate the exact conditions as specified in the test cases.
\n
\nPerformance testing will be done in the validation environment. Since the hardware of the future production environment is more powerful the risk of using the validation environment for performance testing is low and acceptable.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896733","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896733","key":"ORDGP-105","fields":{"summary":"Scope of Functional Testing","customfield_19901":"7.1.2","customfield_19902":"{color:blue}The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.\n * Functional testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.\n * Configuration specification will not be tested on a functional level, but only implicitly in acceptance test cases.\n * Standard product functionality will not be tested in functional testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Functional testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on a functional level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in functional testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896732","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896732","key":"ORDGP-104","fields":{"summary":"Scope of Integration Testing","customfield_19901":"6.2","customfield_19902":"{color:blue}The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.\n * Integration testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.\n * Configuration specification will not be tested on an integration level, but only implicitly in acceptance test cases.\n * Standard product functionality will not be tested in integration testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The System name is commercial off-the-shelf software which was configured according to the configuration specification. Since some user requirements could not be fulfilled via configuration and therefore have been implemented by in-house developed customizations.
\n * Integration testing will be performed to verify correct functionality of all customizations, i.e. functional specifications will be 100% covered by functional test cases.
\n * Configuration specification will not be tested on an integration level, but only implicitly in acceptance test cases.
\n * Standard product functionality will not be tested in integration testing since appropriate testing has already performed by the vendor. This has been verified in a vendor audit.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896731","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896731","key":"ORDGP-103","fields":{"summary":"Test Procedure 2: Verification of Training Documentation","customfield_19901":"5.2","customfield_19902":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dignissim finibus imperdiet. Fusce hendrerit luctus purus, et suscipit nisl porttitor in. Mauris pellentesque vestibulum tristique. Integer vel velit id felis dictum auctor id et ligula. Fusce consequat vehicula mattis. Duis non hendrerit felis, ut pellentesque metus. Donec egestas leo quis viverra pharetra. Suspendisse eu nulla et mi eleifend varius. Donec ullamcorper aliquet magna sed congue. Nam nec neque ac diam interdum dictum nec ac urna. Mauris egestas urna nibh, facilisis lacinia ipsum volutpat vitae. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce enim elit, venenatis non egestas sed, vestibulum at ante.","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc dignissim finibus imperdiet. Fusce hendrerit luctus purus, et suscipit nisl porttitor in. Mauris pellentesque vestibulum tristique. Integer vel velit id felis dictum auctor id et ligula. Fusce consequat vehicula mattis. Duis non hendrerit felis, ut pellentesque metus. Donec egestas leo quis viverra pharetra. Suspendisse eu nulla et mi eleifend varius. Donec ullamcorper aliquet magna sed congue. Nam nec neque ac diam interdum dictum nec ac urna. Mauris egestas urna nibh, facilisis lacinia ipsum volutpat vitae. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce enim elit, venenatis non egestas sed, vestibulum at ante.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896730","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896730","key":"ORDGP-102","fields":{"summary":"Operational Qualification Activities and Training","customfield_19901":"5","customfield_19902":"{color:blue}Before test execution the testers will receive formal training on:\n * the testing process, including good documentation practice\n * a basic end user training for System name\n * an overview of the business processes supported by System name\n\nThe training will be documented and copies of the training records will be attached to the testing documentation package.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Before test execution the testers will receive formal training on:
\n * the testing process, including good documentation practice
\n * a basic end user training for System name
\n * an overview of the business processes supported by System name
\n
\nThe training will be documented and copies of the training records will be attached to the testing documentation package.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896729","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896729","key":"ORDGP-101","fields":{"summary":"Validation Environment","customfield_19901":"10","customfield_19902":"{color:blue}Description of the Environment of the system that will be used for test execution.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Description of the Environment of the system that will be used for test execution.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896728","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896728","key":"ORDGP-100","fields":{"summary":"Document History","customfield_19901":"15","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896727","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896727","key":"ORDGP-99","fields":{"summary":"Abbreviations","customfield_19901":"13.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896726","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896726","key":"ORDGP-98","fields":{"summary":"Definitions","customfield_19901":"13.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896725","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896725","key":"ORDGP-97","fields":{"summary":"Functional and Requirements Testing Documentation","customfield_19901":"12","customfield_19902":null,"issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896724","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896724","key":"ORDGP-96","fields":{"summary":"Scope","customfield_19901":"2","customfield_19902":"{color:blue}The Functional Testing of SCHEMA ST4 will include the standard functionalities of the system and the user account management. The Requirements Testing covers the workflow configuration and functionalities of SCHEMA ST4 according to the business process of the creation, management and handover of preparation specific texts.\n\nThe components of SCHEMA ST4 that will be challenged during this Functions / Requirements Testing are as follows:\n * Rich/Architect client application software\n * Workflow Module\n * Interface to MS Word\n\nMS Word functionalities will not be tested in this Functional / Requirements Testing.\n\nThe level of testing activities is based on the risk class as defined in the risk analysis (ref) for this system. Detailed definitions of the required depth and level of detail will be defined in the sections for functional and requirements testing.{color}","issuelinks":[],"labels":["Doc:CFTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The Functional Testing of SCHEMA ST4 will include the standard functionalities of the system and the user account management. The Requirements Testing covers the workflow configuration and functionalities of SCHEMA ST4 according to the business process of the creation, management and handover of preparation specific texts.
\n
\nThe components of SCHEMA ST4 that will be challenged during this Functions / Requirements Testing are as follows:
\n * Rich/Architect client application software
\n * Workflow Module
\n * Interface to MS Word
\n
\nMS Word functionalities will not be tested in this Functional / Requirements Testing.
\n
\nThe level of testing activities is based on the risk class as defined in the risk analysis (ref) for this system. Detailed definitions of the required depth and level of detail will be defined in the sections for functional and requirements testing.

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896723","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896723","key":"ORDGP-95","fields":{"summary":"Reference Documents","customfield_19901":"9","customfield_19902":null,"issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896722","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896722","key":"ORDGP-94","fields":{"summary":"Abbreviations","customfield_19901":"8.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896721","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896721","key":"ORDGP-93","fields":{"summary":"Definitions","customfield_19901":"8.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896720","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896720","key":"ORDGP-92","fields":{"summary":"Scope","customfield_19901":"2","customfield_19902":"{color:blue}Hardware verification is out of scope, similar runtime platform verification, because those are qualified.\n||Runtime Platform||Qualification Summary Report||\n|BI-IT-CONTAINER-PAAS|tbd|{color}","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Hardware verification is out of scope, similar runtime platform verification, because those are qualified.
\n||Runtime Platform||Qualification Summary Report||
\n|BI-IT-CONTAINER-PAAS|tbd|

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896719","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896719","key":"ORDGP-91","fields":{"summary":"Configuration database CMDB","customfield_19901":"12.2","customfield_19902":"||Instructions||Expected result / Evidence||Observed result||Comments||\r\n|*Role assignment:*\r\n Check if name of contact persons are entered to CMDBWeb: IT System Lead Validation Manager System Owner CSV&C function|!image-2022-02-22-11-12-21-105.png|width=676,height=402!|RAL is required and available\r\n ☐ Yes ☐ No \r\n CMDB entries are correct\r\n ☐ Yes ☐ No| |\r\n|*Related components:*\r\n Check if components are related to Environments as described in System Design Specification.|Components are related to Environments as listed in System Design Specification|CMDB entries are correct\r\n ☐ Yes ☐ No| |\r\n|*Emergency class:*\r\n Check if emergency class is correctly set according to the related specification document|Emergency class per environment (env) is correctly set\r\n \r\n _Productive env: class_ \r\n _Validation env: class_ \r\n _Training env: class_|_Productive env:_ \r\n _Validation env:_ \r\n _Training env:_| |\r\n|*GxP relevance*|Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.|Actual setting in CMDB:| |\r\n|*Support category:*\r\n Check if support category is correctly set according to the related specification document|Support category per environment (env) is correctly set\r\n \r\n _Productive env: class_ \r\n _Validation env: class_ \r\n _Training env: class_|_Productive env:_ \r\n _Validation env:_ \r\n _Training env:_| |","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InstructionsExpected result / EvidenceObserved resultComments
Role assignment:
\n Check if name of contact persons are entered to CMDBWeb: IT System Lead Validation Manager System Owner CSV&C function
RAL is required and available
\n ☐ Yes ☐ No
\n CMDB entries are correct
\n ☐ Yes ☐ No
 
Related components:
\n Check if components are related to Environments as described in System Design Specification.
Components are related to Environments as listed in System Design SpecificationCMDB entries are correct
\n ☐ Yes ☐ No
 
Emergency class:
\n Check if emergency class is correctly set according to the related specification document
Emergency class per environment (env) is correctly set
\n <enter defined class number per environment>
\n Productive env: class
\n Validation env: class
\n Training env: class
Productive env:
\n Validation env:
\n Training env:
 
GxP relevanceSuspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.Actual setting in CMDB: 
Support category:
\n Check if support category is correctly set according to the related specification document
Support category per environment (env) is correctly set
\n <enter defined category number per environment>
\n Productive env: class
\n Validation env: class
\n Training env: class
Productive env:
\n Validation env:
\n Training env:
 
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896718","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896718","key":"ORDGP-90","fields":{"summary":"Operational documents on system level","customfield_19901":"12.1","customfield_19902":"{color:blue}Operational documents at system level:\n\n*System level monitoring:* {color}\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|Theplatform that runs ODS based applications|* Plan ID: ...\n* Release date:\n* Report ID: ....\n* Release date:|\n \n*System level backup :*\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ... \n* Release date:\n* Report ID: ....\n* Release date: |\n\n {color:blue}*System level restore/recovery:* {color}\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ... \n* Release date:\n* Report ID: .... \n* Release date:\n* |\n\n *System Operational instructions**:*\n||Config Item||Description||Items Doc Id (Plan / Report)||\n|BI-IT-Container-PAAS|The platform that runs ODS based applications|* Plan ID: ...\n* Release date:\n* Report ID: ....\n* Release date:\n* |\n\n*Service Agreement :*\n||Config Item||Description||Items Doc Id||\n| | |* Document ID: ...\n* Release date:|\n\n*AAP/IAP/TAP* *:*\n||Config Item||Description||Items Doc Id||\n| | |* Document ID: ... \n* Release date:|","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Operational documents at system level:
\n
\nSystem level monitoring:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASTheplatform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

System level backup :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

System level restore/recovery:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n\t
  • \n
\n
\n
\n\n\n

System Operational instructions:

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id (Plan / Report)
BI-IT-Container-PAASThe platform that runs ODS based applications
    \n\t
  • Plan ID: ...
  • \n\t
  • Release date:
  • \n\t
  • Report ID: ....
  • \n\t
  • Release date:
  • \n\t
  • \n
\n
\n
\n\n\n

Service Agreement :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id
  
    \n\t
  • Document ID: ...
  • \n\t
  • Release date:
  • \n
\n
\n
\n\n\n

AAP/IAP/TAP :

\n
\n\n\n\n\n\n\n\n\n\n\n\n
Config ItemDescriptionItems Doc Id
  
    \n\t
  • Document ID: ...
  • \n\t
  • Release date:
  • \n
\n
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896717","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896717","key":"ORDGP-89","fields":{"summary":"Document History","customfield_19901":"10","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:IVP","Doc:IVR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896716","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896716","key":"ORDGP-88","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896715","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896715","key":"ORDGP-87","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":null,"issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896714","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896714","key":"ORDGP-86","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896713","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896713","key":"ORDGP-85","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:TIR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896712","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896712","key":"ORDGP-84","fields":{"summary":"Communication and Organization Tasks","customfield_19901":"3.4","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896711","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896711","key":"ORDGP-83","fields":{"summary":"Document History","customfield_19901":"12","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896710","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896710","key":"ORDGP-82","fields":{"summary":"Reference Documents","customfield_19901":"11","customfield_19902":null,"issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896709","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896709","key":"ORDGP-81","fields":{"summary":"Abbreviations","customfield_19901":"10.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896708","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896708","key":"ORDGP-80","fields":{"summary":"Definitions","customfield_19901":"10.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:TIP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896707","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896707","key":"ORDGP-79","fields":{"summary":"System Description","customfield_19901":"3.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896706","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896706","key":"ORDGP-78","fields":{"summary":"Introduction","customfield_19901":"1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896705","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896705","key":"ORDGP-77","fields":{"summary":"System Design Overview","customfield_19901":"2.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896704","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896704","key":"ORDGP-76","fields":{"summary":"Software Design Overview","customfield_19901":"2.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896703","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896703","key":"ORDGP-75","fields":{"summary":"Source Code Review Overview","customfield_19901":"2.3","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896702","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896702","key":"ORDGP-74","fields":{"summary":"System Design Profile","customfield_19901":"3.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896701","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896701","key":"ORDGP-73","fields":{"summary":"Interfaces between Modules","customfield_19901":"3.2.2","customfield_19902":"||Interface||Between Module||And Module||Purpose||\n|{color:blue}Interface A{color}|{color:blue}backend{color}|{color:blue}frontend{color}| |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InterfaceBetween ModuleAnd ModulePurpose
Interface Abackendfrontend 
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896700","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896700","key":"ORDGP-72","fields":{"summary":"Interfaces to External Systems","customfield_19901":"3.2.3","customfield_19902":"||Interface||Between Module||And External System||Purpose||\n|{color:blue}BI-IF-{color}|{color:blue}backend{color}| | |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
InterfaceBetween ModuleAnd External SystemPurpose
BI-IF-backend  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896699","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896699","key":"ORDGP-71","fields":{"summary":"System Diagram","customfield_19901":"3.2.4","customfield_19902":"{color:blue}< A system diagram to graphically represent the module and interface information should be included here. > - Only if different from the diagram in the 2.1 section{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< A system diagram to graphically represent the module and interface information should be included here. > - Only if different from the diagram in the 2.1 section

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896698","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896698","key":"ORDGP-70","fields":{"summary":"Architecture of the System","customfield_19901":"4","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896697","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896697","key":"ORDGP-69","fields":{"summary":"Utilisation of Existing Infrastructure Systems","customfield_19901":"5.3","customfield_19902":"||Name of Infrastructure System||Documentation Reference||\n|_{color:blue}BI-IT-APPL-LOAD-BALANCING{color}_\n |_{color:blue}ITEMS doc ID 20108828{color}_\n |\n|_{color:blue}BI-IT-AD{color}_\n |_{color:blue}ITEMS doc ID 20095172{color}_|\n|_{color:blue}BI-RT-WINDOWSSERVER{color}_\n |_{color:blue}Infrastructure Release Design and Management ITEMS doc ID 20184916{color}_\n |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name of Infrastructure SystemDocumentation Reference
BI-IT-APPL-LOAD-BALANCING
ITEMS doc ID 20108828
BI-IT-AD
ITEMS doc ID 20095172
BI-RT-WINDOWSSERVER
Infrastructure Release Design and Management ITEMS doc ID 20184916
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896696","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896696","key":"ORDGP-68","fields":{"summary":"Utilisation of Existing Infrastructure Services","customfield_19901":"5.4","customfield_19902":"||Name of Infrastructure Service||Documentation Reference||\n|{color:blue}_Monitoring_{color}| {color:blue}_Standard Monitoring (Baseline Monitoring) on component level is sufficient_{color}\n{color:blue}_System specific Monitoring Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}|\n|{color:blue}_Backup_{color}|{color:blue}_Standard Backup on component level is sufficient_{color}\n{color:blue}_System specific Backup Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}\n{color:blue}_**_{color}|\n|{color:blue}_Restore & Recovery_{color}|{color:blue}_Standard Restore & Recovery on component level is sufficient_{color}\n{color:blue}_System specific Restore & Recovery Plan required_{color}\n{color:blue}_ITEMS doc ID ?.._{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name of Infrastructure ServiceDocumentation Reference
Monitoring Standard Monitoring (Baseline Monitoring) on component level is sufficient
\nSystem specific Monitoring Plan required
\nITEMS doc ID ?..
BackupStandard Backup on component level is sufficient
\nSystem specific Backup Plan required
\nITEMS doc ID ?..
\n**
Restore & RecoveryStandard Restore & Recovery on component level is sufficient
\nSystem specific Restore & Recovery Plan required
\nITEMS doc ID ?..
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896695","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896695","key":"ORDGP-67","fields":{"summary":"Development Environment","customfield_19901":"6.1","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896694","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896694","key":"ORDGP-66","fields":{"summary":"QA/Test Environment","customfield_19901":"6.2","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896693","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896693","key":"ORDGP-65","fields":{"summary":"Training Environment","customfield_19901":"6.3","customfield_19902":"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.\r\n Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.\r\n\r\nAliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\nMorbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.\r\n\r\n!image-2022-02-22-11-12-54-300.png|width=842,height=501!","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.
\n Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

\n\n

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

\n\n

Morbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.

\n\n

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896692","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896692","key":"ORDGP-64","fields":{"summary":"Environmental Conditions","customfield_19901":"7","customfield_19902":"{color:blue}< Describe the environmental conditions required for the system. A reference to an existing qualified computer room may be given. The following conditions should be considered: e.g. temperature, humidity, power conditions, physical security, etc. >{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< Describe the environmental conditions required for the system. A reference to an existing qualified computer room may be given. The following conditions should be considered: e.g. temperature, humidity, power conditions, physical security, etc. >

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896691","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896691","key":"ORDGP-63","fields":{"summary":"Software Design Principles","customfield_19901":"8","customfield_19902":"{color:blue}*<* The principles that may be included are:{color}\n* {color:blue}General layout rules for windows and reports{color}\n* {color:blue}Audit trail implementation{color}\n* {color:blue}Access control measures{color}\n* {color:blue}User administration{color}\n* {color:blue}Function key assignments{color}\n* {color:blue}Minimum requirements (resources) needed for the application to run properly, both hardware (e.g. storage space) as well as software (such as operating system, drivers).>{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< The principles that may be included are:

\n
    \n\t
  • General layout rules for windows and reports
  • \n\t
  • Audit trail implementation
  • \n\t
  • Access control measures
  • \n\t
  • User administration
  • \n\t
  • Function key assignments
  • \n\t
  • Minimum requirements (resources) needed for the application to run properly, both hardware (e.g. storage space) as well as software (such as operating system, drivers).>
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896690","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896690","key":"ORDGP-62","fields":{"summary":"System Data","customfield_19901":"9","customfield_19902":null,"issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896689","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896689","key":"ORDGP-61","fields":{"summary":"Coding Review Results","customfield_19901":"12","customfield_19902":"{color:blue}< Identify the outcome of coding review. Identify standards that were not met and their corrective actions. The corrective actions should include evidence of agreement by developer and reviewer. >{color}","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

< Identify the outcome of coding review. Identify standards that were not met and their corrective actions. The corrective actions should include evidence of agreement by developer and reviewer. >

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896688","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896688","key":"ORDGP-60","fields":{"summary":"Definitions","customfield_19901":"13.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896687","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896687","key":"ORDGP-59","fields":{"summary":"Abbreviations","customfield_19901":"13.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896686","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896686","key":"ORDGP-58","fields":{"summary":"Document History","customfield_19901":"15","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896685","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896685","key":"ORDGP-57","fields":{"summary":"Reference Documents","customfield_19901":"14","customfield_19902":"* _{color:blue}Reference document 1{color}_\n* _{color:blue}Reference document 2{color}_","issuelinks":[],"labels":["Doc:SSDS"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
    \n\t
  • Reference document 1
  • \n\t
  • Reference document 2
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896684","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896684","key":"ORDGP-56","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896683","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896683","key":"ORDGP-55","fields":{"summary":"Reference Document","customfield_19901":"6","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:DTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896682","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896682","key":"ORDGP-54","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:DTP"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896681","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896681","key":"ORDGP-53","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":"{color:blue}N/A{color}","issuelinks":[],"labels":["Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

N/A

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896680","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896680","key":"ORDGP-52","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:DTP","Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896679","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896679","key":"ORDGP-51","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:DTP","Doc:DTR"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896678","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896678","key":"ORDGP-50","fields":{"summary":"Document History","customfield_19901":"8","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896677","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896677","key":"ORDGP-49","fields":{"summary":"Reference Documents","customfield_19901":"7","customfield_19902":"{color:blue}No further reference documents{color}","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

No further reference documents

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896676","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896676","key":"ORDGP-48","fields":{"summary":"Abbreviations","customfield_19901":"6.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896675","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896675","key":"ORDGP-47","fields":{"summary":"Definitions","customfield_19901":"6.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896674","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896674","key":"ORDGP-46","fields":{"summary":"Assumptions","customfield_19901":"3","customfield_19902":"_{color:blue}None{color}_","issuelinks":[],"labels":["Doc:RA"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

None

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896673","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896673","key":"ORDGP-45","fields":{"summary":"Operational Requirements","customfield_19901":"3.2","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896672","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896672","key":"ORDGP-44","fields":{"summary":"Reference Documents","customfield_19901":"6","customfield_19902":"* _{color:blue}Reference document 1{color}_\n * _{color:blue}Reference document 2{color}_","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
    \n\t
  • Reference document 1
  • \n\t
  • Reference document 2
  • \n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896671","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896671","key":"ORDGP-43","fields":{"summary":"Introduction and Purpose","customfield_19901":"1","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896670","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896670","key":"ORDGP-42","fields":{"summary":"Overview","customfield_19901":"2","customfield_19902":"Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.\r\n\r\n \r\n\r\n*!image-2022-02-22-11-11-22-023.png|width=484,height=142!*\r\n\r\n ","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

\n\n

 

\n\n

\n\n

 

","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896669","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896669","key":"ORDGP-41","fields":{"summary":"Related Business / GxP Process","customfield_19901":"3.1","customfield_19902":null,"issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896668","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896668","key":"ORDGP-40","fields":{"summary":"Definitions","customfield_19901":"5.1","customfield_19902":"||Term||Definition||\n|{color:blue}Jenkins{color}|{color:blue}Build engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK){color}|\n|{color:blue}xUnit{color}|{color:blue}Unit testing framework, aggregaults across multiple languages{color}|","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
TermDefinition
JenkinsBuild engine supplied by cloudbees - part of OpenDevStack (BI-IT-DEVSTACK)
xUnitUnit testing framework, aggregaults across multiple languages
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896667","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896667","key":"ORDGP-39","fields":{"summary":"Abbreviations","customfield_19901":"5.2","customfield_19902":"||Abbreviation||Meaning||\n|{color:blue}ODS{color}|{color:blue}OpenDevStack{color}|\n|{color:blue}EDP{color}|{color:blue}Enterprise Development Platform{color}|","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AbbreviationMeaning
ODSOpenDevStack
EDPEnterprise Development Platform
\n
\n","issuelinks":null,"labels":null,"status":null}},{"expand":"operations,versionedRepresentations,editmeta,changelog,renderedFields","id":"896666","self":"https://jira-dev.biscrum.com/rest/api/2/issue/896666","key":"ORDGP-38","fields":{"summary":"Document History","customfield_19901":"7","customfield_19902":"{color:blue}The following table provides extra history of the document.{color}\n\n||Version||Date||Author||Reference||\n| |See summary of electronic document or signature page of printout.| | |","issuelinks":[],"labels":["Doc:CSD"],"status":{"self":"https://jira-dev.biscrum.com/rest/api/2/status/10008","description":"","iconUrl":"https://jira-dev.biscrum.com/","name":"Done","id":"10008","statusCategory":{"self":"https://jira-dev.biscrum.com/rest/api/2/statuscategory/3","id":3,"key":"done","colorName":"green","name":"Done"}}},"renderedFields":{"summary":null,"customfield_19901":null,"customfield_19902":"

The following table provides extra history of the document.

\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n
VersionDateAuthorReference
 See summary of electronic document or signature page of printout.  
\n
\n","issuelinks":null,"labels":null,"status":null}}]} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-a90dede5-a459-4cf6-9996-698d38210a07.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-a90dede5-a459-4cf6-9996-698d38210a07.json new file mode 100644 index 00000000..d71c5e6f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/__files/rest_platform_11_deltadocgenreports_ordgp_10-a90dede5-a459-4cf6-9996-698d38210a07.json @@ -0,0 +1,673 @@ +{ + "project" : { + "name" : "One Release DocGen Project", + "description" : "", + "key" : "ORDGP", + "jiraBaseUrl" : "https://jira-dev.biscrum.com/ORDGP", + "projectProperties" : { + "PROJECT.POO_CAT.LOW" : "Frequency of the usage of the related function is <10 times per year.", + "PROJECT.POO_CAT.HIGH" : "Frequency of the usage of the related function is >10 times per week.", + "WEBHOOK_PROXY.URL" : "https://webhook-proxy-ORDGP-cd.inh-odsapps.eu.boehringer.com/build?trigger_secret=f8055071-667e-4745-8d2e-deabf52f8a20", + "RM.REPOSITORY" : "ordgp-releasemanager", + "PROJECT.POO_CAT.MEDIUM" : "Frequency of the usage of the related function is <10 times per week.", + "PROJECT.NON-GXP_EVALUATION" : "Non-GxP risks are not being evaluated", + "PROJECT.USES_POO" : "true", + "PROJECT.IS_EDP_PROJECT" : "true", + "PROJECT.CONFIG_ITEM" : "BI-IT-DEVSTACK" + }, + "gampTopics" : [ "operational requirements", "functional requirements", "data requirements", "technical requirements", "interface requirements", "environment requirements", "performance requirements", "availability requirements", "security requirements", "maintenance requirements", "regulatory requirements", "roles", "compatibility", "procedural constraints", "overarching requirements" ], + "enumDictionary" : { + "ProbabilityOfDetection" : { + "1" : { + "value" : 1, + "text" : "Immediate", + "short" : "I" + }, + "2" : { + "value" : 2, + "text" : "Before Impact", + "short" : "B" + }, + "3" : { + "value" : 3, + "text" : "After Impact", + "short" : "A" + } + }, + "SeverityOfImpact" : { + "1" : { + "value" : 1, + "text" : "Low", + "short" : "L" + }, + "2" : { + "value" : 2, + "text" : "Medium", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "High", + "short" : "H" + } + }, + "ProbabilityOfOccurrence" : { + "1" : { + "value" : 1, + "text" : "LOW", + "short" : "L" + }, + "2" : { + "value" : 2, + "text" : "MEDIUM", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "HIGH", + "short" : "H" + } + }, + "RiskPriority" : { + "0" : { + "value" : 0, + "text" : "N/A", + "short" : "N" + }, + "1" : { + "value" : 1, + "text" : "HIGH", + "short" : "H" + }, + "2" : { + "value" : 2, + "text" : "MEDIUM", + "short" : "M" + }, + "3" : { + "value" : 3, + "text" : "LOW", + "short" : "L" + } + }, + "GxPRelevance" : { + "R2" : { + "value" : 2, + "text" : "Relevant", + "short" : "R2" + }, + "N0" : { + "value" : 0, + "text" : "Not relevant/ZERO", + "short" : "N0" + }, + "N1" : { + "value" : 1, + "text" : "Not relevant/LESS", + "short" : "N1" + }, + "N2" : { + "value" : 2, + "text" : "Not relevant/EQUAL", + "short" : "N2" + } + } + }, + "versions" : [ "1.0" ], + "id" : "30107" + }, + "components" : { + "Technology-test" : { + "name" : "Technology-test", + "description" : "Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + }, + "Technology-backend" : { + "name" : "Technology-backend", + "description" : "Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "mitigations" : [ ] + }, + "Technology-frontend" : { + "name" : "Technology-frontend", + "description" : "Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + }, + "Technology-releasemanager" : { + "name" : "Technology-releasemanager", + "description" : "Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse", + "requirements" : [ ], + "techSpecs" : [ ], + "risks" : [ ], + "epics" : [ ], + "tests" : [ ], + "mitigations" : [ ] + } + }, + "releaseState" : "Change Ready for Implementation", + "version" : "1.0", + "epics" : { + "ORDGP-124" : { + "key" : "ORDGP-124", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

\n\n

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "epicName" : "Epic 1", + "predecessors" : [ ], + "title" : "Epic 1", + "requirements" : [ "ORDGP-126", "ORDGP-127", "ORDGP-125", "ORDGP-128", "ORDGP-129" ] + } + }, + "requirements" : { + "ORDGP-125" : { + "key" : "ORDGP-125", + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 1", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ "ORDGP-136" ], + "tests" : [ "ORDGP-144", "ORDGP-145", "ORDGP-143", "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "bugs" : [ ], + "mitigations" : [ "ORDGP-140" ], + "predecessors" : [ ] + }, + "ORDGP-126" : { + "key" : "ORDGP-126", + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 2", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ "ORDGP-141", "ORDGP-142" ], + "tests" : [ ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-127" : { + "key" : "ORDGP-127", + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 3", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-128" : { + "key" : "ORDGP-128", + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 4", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ "ORDGP-147" ], + "techSpecs" : [ "ORDGP-146" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-129" : { + "key" : "ORDGP-129", + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "gampTopic" : "functional requirements", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.\r\n\r\n", + "configSpec" : { + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

" + }, + "funcSpec" : { + "name" : "Story 5", + "description" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "acceptanceCriteria" : "Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis." + }, + "components" : [ ], + "epics" : [ "ORDGP-124" ], + "risks" : [ ], + "tests" : [ "ORDGP-130", "ORDGP-133", "ORDGP-131", "ORDGP-132" ], + "techSpecs" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + } + }, + "risks" : { + "ORDGP-136" : { + "key" : "ORDGP-136", + "name" : "RA 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "N1", + "probabilityOfOccurrence" : 1, + "severityOfImpact" : 2, + "probabilityOfDetection" : 2, + "riskPriorityNumber" : 4, + "riskPriority" : 3, + "mitigations" : [ "ORDGP-140" ], + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "tests" : [ "ORDGP-137", "ORDGP-138", "ORDGP-139" ], + "predecessors" : [ ], + "riskComment" : null + }, + "ORDGP-141" : { + "key" : "ORDGP-141", + "name" : "RA 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique.
\nSed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "R2", + "probabilityOfOccurrence" : 3, + "severityOfImpact" : 3, + "probabilityOfDetection" : 1, + "riskPriorityNumber" : 18, + "riskPriority" : 1, + "mitigations" : [ ], + "requirements" : [ "ORDGP-126" ], + "techSpecs" : [ ], + "tests" : [ ], + "predecessors" : [ ], + "riskComment" : null + }, + "ORDGP-142" : { + "key" : "ORDGP-142", + "name" : "RA 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "gxpRelevance" : "N0", + "probabilityOfOccurrence" : 1, + "severityOfImpact" : 1, + "probabilityOfDetection" : 3, + "riskPriorityNumber" : 0, + "riskPriority" : 0, + "mitigations" : [ ], + "requirements" : [ "ORDGP-126" ], + "techSpecs" : [ ], + "tests" : [ ], + "predecessors" : [ ], + "riskComment" : null + } + }, + "tests" : { + "ORDGP-130" : { + "id" : "896758", + "key" : "ORDGP-130", + "name" : "Acceptance Test 1", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-131" : { + "id" : "896759", + "key" : "ORDGP-131", + "name" : "Acceptance Test 2", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-132" : { + "id" : "896760", + "key" : "ORDGP-132", + "name" : "Acceptance Test 3", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-133" : { + "id" : "896761", + "key" : "ORDGP-133", + "name" : "Acceptance Test 4", + "description" : "

Acceptance Test 1

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Acceptance", + "executionType" : "Automated", + "requirements" : [ "ORDGP-129" ], + "techSpecs" : [ ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-137" : { + "id" : "896765", + "key" : "ORDGP-137", + "name" : "Unit Test 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-138" : { + "id" : "896766", + "key" : "ORDGP-138", + "name" : "Unit Test 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-139" : { + "id" : "896767", + "key" : "ORDGP-139", + "name" : "Unit Test 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ "Technology-backend" ], + "testType" : "Unit", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "risks" : [ "ORDGP-136" ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-143" : { + "id" : "896771", + "key" : "ORDGP-143", + "name" : "Integration Test 1", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-144" : { + "id" : "896772", + "key" : "ORDGP-144", + "name" : "Integration Test 2", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-145" : { + "id" : "896773", + "key" : "ORDGP-145", + "name" : "Integration Test 3", + "description" : "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla in tristique ante, sit amet accumsan purus. Vivamus at consequat dolor, in accumsan nibh. Proin imperdiet neque id dui ullamcorper feugiat. Praesent tristique vestibulum porttitor. Quisque ornare congue odio quis viverra. Duis non porttitor arcu. Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Integration", + "executionType" : "Automated", + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ "ORDGP-134", "ORDGP-135" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + }, + "ORDGP-147" : { + "id" : "896775", + "key" : "ORDGP-147", + "name" : "Installation Test 1", + "description" : "

Curabitur pellentesque magna ultricies, ornare ipsum vitae, dignissim ligula. Mauris sit amet interdum ante, quis maximus nibh. Mauris id hendrerit risus, non viverra augue. Nulla nec condimentum ex. Nullam sed est ut nisl suscipit eleifend et vel metus. Cras libero justo, malesuada a auctor ut, accumsan et lacus.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ "Succeeded" ], + "components" : [ ], + "testType" : "Installation", + "executionType" : "Automated", + "requirements" : [ "ORDGP-128" ], + "techSpecs" : [ "ORDGP-146" ], + "risks" : [ ], + "steps" : [ ], + "predecessors" : [ ], + "execLabel" : "Succeeded" + } + }, + "mitigations" : { + "ORDGP-140" : { + "key" : "ORDGP-140", + "name" : "Mitigation 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Defined", + "labels" : [ ], + "risks" : [ "ORDGP-136" ], + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "techSpecs" : [ ], + "predecessors" : [ ] + } + }, + "techSpecs" : { + "ORDGP-134" : { + "key" : "ORDGP-134", + "name" : "TST 1", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "softwareDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "risks" : [ ], + "tests" : [ "ORDGP-144", "ORDGP-145", "ORDGP-143" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-135" : { + "key" : "ORDGP-135", + "name" : "TST 2", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "softwareDesignSpec" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim.

", + "components" : [ ], + "requirements" : [ "ORDGP-125" ], + "risks" : [ ], + "tests" : [ ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + }, + "ORDGP-146" : { + "key" : "ORDGP-146", + "name" : "TST 3", + "description" : "

Suspendisse potenti. Cras ante quam, hendrerit vel massa quis, ultricies pellentesque mauris. Pellentesque eu odio dictum, luctus massa vitae, dignissim enim. Morbi pretium massa quis nunc pharetra, id faucibus purus condimentum. Sed augue lacus, faucibus in erat non, rutrum rhoncus dolor. Proin ornare rutrum tristique. In dictum purus sit amet justo dignissim tristique. Sed ligula ante, tempus non turpis eget, iaculis consequat dui. Aenean orci tortor, interdum at magna vitae, euismod lacinia odio. Nullam ac ante orci. Quisque in mattis purus. Maecenas volutpat bibendum felis, in porttitor dui imperdiet et. Mauris ac feugiat lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Maecenas feugiat, turpis nec finibus pellentesque, lectus arcu pellentesque ex, in tempus metus velit sit amet purus. Phasellus ut volutpat orci.

\n\n

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

\n\n

Morbi aliquam viverra feugiat. Cras consequat pellentesque nisl quis gravida. Nullam tempus mattis justo, eget ultrices risus pretium non. Morbi maximus interdum condimentum. Sed non scelerisque felis, nec molestie massa. Nullam dui sem, consectetur eget consequat id, tempus lobortis tellus. Curabitur mollis malesuada est nec laoreet. Cras in porta mauris.

", + "versions" : [ "1.0" ], + "status" : "Done", + "resolution" : "Implemented", + "labels" : [ ], + "systemDesignSpec" : "

", + "softwareDesignSpec" : "

Aliquam ipsum turpis, bibendum nec velit et, ultricies vulputate purus. Duis sit amet nibh vel elit volutpat varius ut sed erat. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed turpis felis, sollicitudin ut consectetur ut, porta eget libero. Integer non diam non lectus convallis varius sit amet nec quam. Fusce sed mattis ante. Sed ipsum lorem, ultrices vel lectus ac, egestas posuere tellus. Mauris posuere tellus sit amet tincidunt convallis.

", + "components" : [ ], + "requirements" : [ "ORDGP-128" ], + "risks" : [ ], + "tests" : [ "ORDGP-147" ], + "bugs" : [ ], + "mitigations" : [ ], + "predecessors" : [ ] + } + }, + "bugs" : { }, + "notesAndHints" : [ "Non-EDP linkType Cloners ignored: ORDGP-144 -> ORDGP-143" ], + "precedingVersions" : [ ], + "modifiedKeys" : { }, + "discontinuedKeys" : [ ], + "continuedKeys" : [ ] +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-2165dc67-5b64-4d52-a9fd-797409dd1ce5.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-2165dc67-5b64-4d52-a9fd-797409dd1ce5.json new file mode 100644 index 00000000..5e755bc7 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes-2165dc67-5b64-4d52-a9fd-797409dd1ce5.json @@ -0,0 +1,33 @@ +{ + "id" : "2165dc67-5b64-4d52-a9fd-797409dd1ce5", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":10,\"isLast\":true,\"values\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/1\",\"id\":\"1\",\"description\":\"A problem which impairs or prevents the functions of the product.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10303&avatarType=issuetype\",\"name\":\"Bug\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10000\",\"id\":\"10000\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a big user story that needs to be broken down.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10307&avatarType=issuetype\",\"name\":\"Epic\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10001\",\"id\":\"10001\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a user story.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10315&avatarType=issuetype\",\"name\":\"Story\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006\",\"id\":\"10006\",\"description\":\"\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype\",\"name\":\"Documentation\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10009\",\"id\":\"10009\",\"description\":\"This Issue Type is used to create Zephyr Test within Jira.\",\"iconUrl\":\"https://jira-dev.biscrum.com/download/resources/com.thed.zephyr.je/images/icons/ico_zephyr_issuetype.png\",\"name\":\"Test\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14300\",\"id\":\"14300\",\"description\":\"Release status of project\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22841&avatarType=issuetype\",\"name\":\"Release Status\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14301\",\"id\":\"14301\",\"description\":\"Document part\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22842&avatarType=issuetype\",\"name\":\"Documentation Chapter\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14302\",\"id\":\"14302\",\"description\":\"The issue for risk definition\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22843&avatarType=issuetype\",\"name\":\"Risk Assessment\",\"subtask\":true},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14303\",\"id\":\"14303\",\"description\":\"The issue for definition of a risk mitigation\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22844&avatarType=issuetype\",\"name\":\"Mitigation\",\"subtask\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14304\",\"id\":\"14304\",\"description\":\"The issue for technical specification\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22845&avatarType=issuetype\",\"name\":\"Technical Specification Task\",\"subtask\":false}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:21 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31146x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=2254A6B1616B2A1ACE5F90BCA1A8B885; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_bc8bae85c769c5c480f4f9cd87ba59a7f5622288_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1h9dy1m", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "2165dc67-5b64-4d52-a9fd-797409dd1ce5", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-402a1d17-a146-4a71-bc4e-d7a8b560d73b.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-402a1d17-a146-4a71-bc4e-d7a8b560d73b.json new file mode 100644 index 00000000..ce22c19f --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_1-402a1d17-a146-4a71-bc4e-d7a8b560d73b.json @@ -0,0 +1,33 @@ +{ + "id" : "402a1d17-a146-4a71-bc4e-d7a8b560d73b", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_1", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/1", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":16,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19334},\"name\":\"EDP Definition of Ready for Bug\",\"fieldId\":\"customfield_19334\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72091\",\"value\":\"Confirmed\",\"id\":\"72091\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19335},\"name\":\"EDP Definition of Done for Bug\",\"fieldId\":\"customfield_19335\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72097\",\"value\":\"Test passed\",\"id\":\"72097\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/1\",\"id\":\"1\",\"description\":\"A problem which impairs or prevents the functions of the product.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10303&avatarType=issuetype\",\"name\":\"Bug\",\"subtask\":false,\"avatarId\":10303}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:24 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31147x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=A466EA888129C357FF87509D85623CF7; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_3544b7e0788546058a5fa6955cfccbe6f89dd79e_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1vxsmu5", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "402a1d17-a146-4a71-bc4e-d7a8b560d73b", + "persistent" : true, + "insertionIndex" : 2 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-27b6acbd-a2ff-45b1-8691-28528ed8b6b8.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-27b6acbd-a2ff-45b1-8691-28528ed8b6b8.json new file mode 100644 index 00000000..eb5246e0 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10000-27b6acbd-a2ff-45b1-8691-28528ed8b6b8.json @@ -0,0 +1,33 @@ +{ + "id" : "27b6acbd-a2ff-45b1-8691-28528ed8b6b8", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10000", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10000", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-label\",\"customId\":10006},\"name\":\"Epic Name\",\"fieldId\":\"customfield_10006\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10000\",\"id\":\"10000\",\"description\":\"Created by Jira Software - do not edit or delete. Issue type for a big user story that needs to be broken down.\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10307&avatarType=issuetype\",\"name\":\"Epic\",\"subtask\":false,\"avatarId\":10307}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:26 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31148x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=370E47405BF930CA6B2AE9CD3C5968AB; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_b0dc9d7167243283593b822f4ee6316b70508e08_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "97r30g", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "27b6acbd-a2ff-45b1-8691-28528ed8b6b8", + "persistent" : true, + "insertionIndex" : 3 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-c6c98afb-a0a4-4b8b-bb53-ceaf5d09aa2d.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-c6c98afb-a0a4-4b8b-bb53-ceaf5d09aa2d.json new file mode 100644 index 00000000..08a9c844 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10001-c6c98afb-a0a4-4b8b-bb53-ceaf5d09aa2d.json @@ -0,0 +1,33 @@ +{ + "id" : "c6c98afb-a0a4-4b8b-bb53-ceaf5d09aa2d", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10001", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10001", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10001-c6c98afb-a0a4-4b8b-bb53-ceaf5d09aa2d.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:28 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31149x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=A754D7E3E330E7309EC150359FFE0C72; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_f4746e496ac50bc5ab7a06523f9892a360e30b62_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1yt04o", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "c6c98afb-a0a4-4b8b-bb53-ceaf5d09aa2d", + "persistent" : true, + "insertionIndex" : 4 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-0b46693e-3d21-4e99-92e3-7d5660aaaac0.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-0b46693e-3d21-4e99-92e3-7d5660aaaac0.json new file mode 100644 index 00000000..c1ae6632 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10006-0b46693e-3d21-4e99-92e3-7d5660aaaac0.json @@ -0,0 +1,33 @@ +{ + "id" : "0b46693e-3d21-4e99-92e3-7d5660aaaac0", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10006", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10006", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":15,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19306},\"name\":\"Document Id\",\"fieldId\":\"customfield_19306\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19307},\"name\":\"Document Version\",\"fieldId\":\"customfield_19307\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19308},\"name\":\"EDP Definition of Ready for Documentation\",\"fieldId\":\"customfield_19308\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72044\",\"value\":\"Risk Defined\",\"id\":\"72044\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72045\",\"value\":\"AcceptanceTest Ready for Implementation\",\"id\":\"72045\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19309},\"name\":\"EDP Definition of Done for Documentation\",\"fieldId\":\"customfield_19309\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72056\",\"value\":\"All Documentation Chapter Done\",\"id\":\"72056\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72057\",\"value\":\"All Issues in Done for Document\",\"id\":\"72057\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"environment\"},\"name\":\"Environment\",\"fieldId\":\"environment\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10006\",\"id\":\"10006\",\"description\":\"\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=10306&avatarType=issuetype\",\"name\":\"Documentation\",\"subtask\":false,\"avatarId\":10306}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:30 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31150x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=85492C99FEFBD3CC12BA9ACB6E7A0D5B; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_bc9c4d8f14fa826dccf785b8434a07495a4ec32e_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1yrm4vs", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "0b46693e-3d21-4e99-92e3-7d5660aaaac0", + "persistent" : true, + "insertionIndex" : 5 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-acc1a068-0aeb-46ff-b84f-bc5963a51391.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-acc1a068-0aeb-46ff-b84f-bc5963a51391.json new file mode 100644 index 00000000..5f735844 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_10009-acc1a068-0aeb-46ff-b84f-bc5963a51391.json @@ -0,0 +1,33 @@ +{ + "id" : "acc1a068-0aeb-46ff-b84f-bc5963a51391", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_10009", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/10009", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":20,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"component\",\"system\":\"components\"},\"name\":\"Component/s\",\"fieldId\":\"components\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27522\",\"id\":\"27522\",\"name\":\"Technology-backend\",\"description\":\"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27523\",\"id\":\"27523\",\"name\":\"Technology-frontend\",\"description\":\"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27524\",\"id\":\"27524\",\"name\":\"Technology-releasemanager\",\"description\":\"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27525\",\"id\":\"27525\",\"name\":\"Technology-test\",\"description\":\"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse\"}]},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.thed.zephyr.je:zephyr-je-customfield-teststep\",\"customId\":10023},\"name\":\"Zephyr Teststep\",\"fieldId\":\"customfield_10023\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.test.testExecutiontype\",\"customId\":19330},\"name\":\"Test Execution Type\",\"fieldId\":\"customfield_19330\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72176\",\"value\":\"Automated\",\"id\":\"72176\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72177\",\"value\":\"Manual\",\"id\":\"72177\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.test.testLevel\",\"customId\":19331},\"name\":\"Test Level\",\"fieldId\":\"customfield_19331\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72154\",\"value\":\"Acceptance\",\"id\":\"72154\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72155\",\"value\":\"Integration\",\"id\":\"72155\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72156\",\"value\":\"Unit\",\"id\":\"72156\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72157\",\"value\":\"Installation\",\"id\":\"72157\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19332},\"name\":\"EDP Definition of Ready for Test\",\"fieldId\":\"customfield_19332\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72067\",\"value\":\"Jira test steps describe any applicable inputs and expected results\",\"id\":\"72067\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19333},\"name\":\"EDP Definition of Done for Test\",\"fieldId\":\"customfield_19333\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72075\",\"value\":\"Test implementation highlights where inputs and expected results can be found\",\"id\":\"72075\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72076\",\"value\":\"Test implementation reports evidence of expected results through log data or screenshots\",\"id\":\"72076\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72077\",\"value\":\"Test implementation allows the correlation of expected results in Jira test steps with evidence\",\"id\":\"72077\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/10009\",\"id\":\"10009\",\"description\":\"This Issue Type is used to create Zephyr Test within Jira.\",\"iconUrl\":\"https://jira-dev.biscrum.com/download/resources/com.thed.zephyr.je/images/icons/ico_zephyr_issuetype.png\",\"name\":\"Test\",\"subtask\":false}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:32 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31151x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=CBECF66791F66149BDC62433E2167B0A; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_831f31f58254fe8ebb38aeb8a2c600ff10149f25_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "lziye0", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "acc1a068-0aeb-46ff-b84f-bc5963a51391", + "persistent" : true, + "insertionIndex" : 6 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-b9d783fe-470c-4b95-81ea-9375d4f5d4f8.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-b9d783fe-470c-4b95-81ea-9375d4f5d4f8.json new file mode 100644 index 00000000..25ac3105 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14300-b9d783fe-470c-4b95-81ea-9375d4f5d4f8.json @@ -0,0 +1,33 @@ +{ + "id" : "b9d783fe-470c-4b95-81ea-9375d4f5d4f8", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14300", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14300", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":16,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:select\",\"customId\":19301},\"name\":\"Release Manager Status\",\"fieldId\":\"customfield_19301\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72267\",\"value\":\"Running\",\"id\":\"72267\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72268\",\"value\":\"Failed\",\"id\":\"72268\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72269\",\"value\":\"Successful\",\"id\":\"72269\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textfield\",\"customId\":19303},\"name\":\"Release Build\",\"fieldId\":\"customfield_19303\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:precedingversions\",\"customId\":20100},\"name\":\"Preceding Versions\",\"fieldId\":\"customfield_20100\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[]},{\"required\":false,\"schema\":{\"type\":\"version\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:version\",\"customId\":20101},\"name\":\"ProductRelease Version\",\"fieldId\":\"customfield_20101\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"description\":\"\",\"name\":\"1.0\",\"archived\":false,\"released\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:readonlyfield\",\"customId\":22101},\"name\":\"Branch Id _ not used\",\"fieldId\":\"customfield_22101\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14300\",\"id\":\"14300\",\"description\":\"Release status of project\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22841&avatarType=issuetype\",\"name\":\"Release Status\",\"subtask\":false,\"avatarId\":22841}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:34 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31152x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=154AC44C26B49A51B4195389AF0C3F7D; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_cffd0c0a1d2dbd270032a3545bcf890367534e4b_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "81v3q1", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "b9d783fe-470c-4b95-81ea-9375d4f5d4f8", + "persistent" : true, + "insertionIndex" : 7 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-84bc608d-2c21-422b-9589-c16348fcc829.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-84bc608d-2c21-422b-9589-c16348fcc829.json new file mode 100644 index 00000000..85e5916c --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14301-84bc608d-2c21-422b-9589-c16348fcc829.json @@ -0,0 +1,33 @@ +{ + "id" : "84bc608d-2c21-422b-9589-c16348fcc829", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14301", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14301", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:headingnumberfield\",\"customId\":19901},\"name\":\"EDP Heading Number\",\"fieldId\":\"customfield_19901\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19902},\"name\":\"EDP Content\",\"fieldId\":\"customfield_19902\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14301\",\"id\":\"14301\",\"description\":\"Document part\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22842&avatarType=issuetype\",\"name\":\"Documentation Chapter\",\"subtask\":false,\"avatarId\":22842}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:36 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31153x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=FB1E6944D055751E0F004C8949EE2261; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_2b665c8ebc6257693ea506f3fbc588ef01ed86e5_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "ukm9f6", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "84bc608d-2c21-422b-9589-c16348fcc829", + "persistent" : true, + "insertionIndex" : 8 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-7d5d38ee-767b-4fbd-8c3e-2184ced7e5a7.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-7d5d38ee-767b-4fbd-8c3e-2184ced7e5a7.json new file mode 100644 index 00000000..e3384459 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14302-7d5d38ee-767b-4fbd-8c3e-2184ced7e5a7.json @@ -0,0 +1,33 @@ +{ + "id" : "7d5d38ee-767b-4fbd-8c3e-2184ced7e5a7", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14302", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14302", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":21,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19310},\"name\":\"Risk Comment\",\"fieldId\":\"customfield_19310\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.gxp-relevance\",\"customId\":19311},\"name\":\"GxP Relevance for Risk\",\"fieldId\":\"customfield_19311\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72190\",\"value\":\"Relevant\",\"id\":\"72190\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72191\",\"value\":\"Not relevant/EQUAL\",\"id\":\"72191\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72192\",\"value\":\"Not relevant/LESS\",\"id\":\"72192\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72193\",\"value\":\"Not relevant/ZERO\",\"id\":\"72193\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.severityofimpact\",\"customId\":19312},\"name\":\"Severity of Impact\",\"fieldId\":\"customfield_19312\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72213\",\"value\":\"Low\",\"id\":\"72213\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72214\",\"value\":\"Medium\",\"id\":\"72214\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72215\",\"value\":\"High\",\"id\":\"72215\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.probabilityofdetection\",\"customId\":19313},\"name\":\"Probability of Detection\",\"fieldId\":\"customfield_19313\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72231\",\"value\":\"Immediate\",\"id\":\"72231\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72232\",\"value\":\"Before Impact\",\"id\":\"72232\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72233\",\"value\":\"After Impact\",\"id\":\"72233\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"option\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.probabilityofoccurrence\",\"customId\":19314},\"name\":\"Probability of Occurrence\",\"fieldId\":\"customfield_19314\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72249\",\"value\":\"LOW\",\"id\":\"72249\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72250\",\"value\":\"MEDIUM\",\"id\":\"72250\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72251\",\"value\":\"HIGH\",\"id\":\"72251\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.riskprioritynumber\",\"customId\":19315},\"name\":\"Risk Priority Number\",\"fieldId\":\"customfield_19315\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"org.opendevstack.jira.plugins.projecttemplate:field.risk.riskpriority\",\"customId\":19316},\"name\":\"Risk Priority\",\"fieldId\":\"customfield_19316\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19317},\"name\":\"EDP Definition of Done for Risk\",\"fieldId\":\"customfield_19317\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72107\",\"value\":\"Identified\",\"id\":\"72107\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72108\",\"value\":\"Evaluated\",\"id\":\"72108\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72109\",\"value\":\"Mitigations/Tests defined\",\"id\":\"72109\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72110\",\"value\":\"Reevaluated\",\"id\":\"72110\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72111\",\"value\":\"Agreed with QA\",\"id\":\"72111\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14302\",\"id\":\"14302\",\"description\":\"The issue for risk definition\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22843&avatarType=issuetype\",\"name\":\"Risk Assessment\",\"subtask\":true,\"avatarId\":22843}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":true,\"schema\":{\"type\":\"issuelink\",\"system\":\"parent\"},\"name\":\"Parent\",\"fieldId\":\"parent\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:38 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31154x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=B9BAE7136FC7F473C551AA335B47EE69; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_6fba666d386a90c194efb9e07b9dea11a11c86bf_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "mz5veu", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "7d5d38ee-767b-4fbd-8c3e-2184ced7e5a7", + "persistent" : true, + "insertionIndex" : 9 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-b0ed1771-95b5-4134-90cd-bc4940699bd1.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-b0ed1771-95b5-4134-90cd-bc4940699bd1.json new file mode 100644 index 00000000..f94a1ae8 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14303-b0ed1771-95b5-4134-90cd-bc4940699bd1.json @@ -0,0 +1,33 @@ +{ + "id" : "b0ed1771-95b5-4134-90cd-bc4940699bd1", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14303", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14303", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":14,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14303\",\"id\":\"14303\",\"description\":\"The issue for definition of a risk mitigation\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22844&avatarType=issuetype\",\"name\":\"Mitigation\",\"subtask\":false,\"avatarId\":22844}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:40 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31155x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=FC2387A82DB458C3F742659518C842B4; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_caffe24a9b3283f5e54d835bc8f135bcd8927714_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "15n7ekj", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "b0ed1771-95b5-4134-90cd-bc4940699bd1", + "persistent" : true, + "insertionIndex" : 10 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-6b8c2c9b-6059-4b08-bc9b-0dfdcd1a6b08.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-6b8c2c9b-6059-4b08-bc9b-0dfdcd1a6b08.json new file mode 100644 index 00000000..99327008 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_createmeta_ordgp_issuetypes_14304-6b8c2c9b-6059-4b08-bc9b-0dfdcd1a6b08.json @@ -0,0 +1,33 @@ +{ + "id" : "6b8c2c9b-6059-4b08-bc9b-0dfdcd1a6b08", + "name" : "rest_api_2_issue_createmeta_ordgp_issuetypes_14304", + "request" : { + "url" : "/rest/api/2/issue/createmeta/ORDGP/issuetypes/14304", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"maxResults\":50,\"startAt\":0,\"total\":18,\"isLast\":true,\"values\":[{\"required\":false,\"schema\":{\"type\":\"user\",\"system\":\"assignee\"},\"name\":\"Assignee\",\"fieldId\":\"assignee\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/assignable/search?issueKey=null&username=\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"defaultValue\":{\"name\":\"-1\"}},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"component\",\"system\":\"components\"},\"name\":\"Component/s\",\"fieldId\":\"components\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27522\",\"id\":\"27522\",\"name\":\"Technology-backend\",\"description\":\"Technology component ordgp-backend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-backend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27523\",\"id\":\"27523\",\"name\":\"Technology-frontend\",\"description\":\"Technology component ordgp-frontend stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-frontend/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27524\",\"id\":\"27524\",\"name\":\"Technology-releasemanager\",\"description\":\"Technology component ordgp-releasemanager stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-releasemanager/browse\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/component/27525\",\"id\":\"27525\",\"name\":\"Technology-test\",\"description\":\"Technology component ordgp-test stored at https://bitbucket-dev.biscrum.com/projects/ORDGP/repos/ordgp-test/browse\"}]},{\"required\":false,\"schema\":{\"type\":\"number\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:float\",\"customId\":10002},\"name\":\"Story Points\",\"fieldId\":\"customfield_10002\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"custom\":\"com.pyxis.greenhopper.jira:gh-sprint\",\"customId\":10004},\"name\":\"Sprint\",\"fieldId\":\"customfield_10004\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"any\",\"custom\":\"com.pyxis.greenhopper.jira:gh-epic-link\",\"customId\":10005},\"name\":\"Epic Link\",\"fieldId\":\"customfield_10005\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19327},\"name\":\"System Design Specification\",\"fieldId\":\"customfield_19327\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"string\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:textarea\",\"customId\":19328},\"name\":\"Software Design Specification\",\"fieldId\":\"customfield_19328\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"option\",\"custom\":\"com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes\",\"customId\":19329},\"name\":\"EDP Definition of Done for Technical Specification\",\"fieldId\":\"customfield_19329\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72135\",\"value\":\"All Risks Approved\",\"id\":\"72135\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72136\",\"value\":\"All Tests Defined\",\"id\":\"72136\",\"disabled\":false},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/customFieldOption/72137\",\"value\":\"All Tests Executed Successful\",\"id\":\"72137\",\"disabled\":false}]},{\"required\":false,\"schema\":{\"type\":\"string\",\"system\":\"description\"},\"name\":\"Description\",\"fieldId\":\"description\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"fixVersions\"},\"name\":\"Fix Version/s\",\"fieldId\":\"fixVersions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"issuelinks\",\"system\":\"issuelinks\"},\"name\":\"Linked Issues\",\"fieldId\":\"issuelinks\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/2/issue/picker?currentProjectId=&showSubTaskParent=true&showSubTasks=true¤tIssueKey=null&query=\",\"hasDefaultValue\":false,\"operations\":[\"add\"]},{\"required\":true,\"schema\":{\"type\":\"issuetype\",\"system\":\"issuetype\"},\"name\":\"Issue Type\",\"fieldId\":\"issuetype\",\"hasDefaultValue\":false,\"operations\":[],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issuetype/14304\",\"id\":\"14304\",\"description\":\"The issue for technical specification\",\"iconUrl\":\"https://jira-dev.biscrum.com/secure/viewavatar?size=xsmall&avatarId=22845&avatarType=issuetype\",\"name\":\"Technical Specification Task\",\"subtask\":false,\"avatarId\":22845}]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"string\",\"system\":\"labels\"},\"name\":\"Labels\",\"fieldId\":\"labels\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/1.0/labels/suggest?query=\",\"hasDefaultValue\":false,\"operations\":[\"add\",\"set\",\"remove\"]},{\"required\":false,\"schema\":{\"type\":\"priority\",\"system\":\"priority\"},\"name\":\"Priority\",\"fieldId\":\"priority\",\"hasDefaultValue\":true,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/1\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Highest\",\"id\":\"1\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/2\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/high.svg\",\"name\":\"High\",\"id\":\"2\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/3\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/medium.svg\",\"name\":\"Medium\",\"id\":\"3\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/5\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/lowest.svg\",\"name\":\"Lowest\",\"id\":\"5\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10400\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priority_major.gif\",\"name\":\"Major\",\"id\":\"10400\"},{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/10300\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/highest.svg\",\"name\":\"Critical\",\"id\":\"10300\"}],\"defaultValue\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/priority/4\",\"iconUrl\":\"https://jira-dev.biscrum.com/images/icons/priorities/low.svg\",\"name\":\"Low\",\"id\":\"4\"}},{\"required\":true,\"schema\":{\"type\":\"project\",\"system\":\"project\"},\"name\":\"Project\",\"fieldId\":\"project\",\"hasDefaultValue\":false,\"operations\":[\"set\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/project/30107\",\"id\":\"30107\",\"key\":\"ORDGP\",\"name\":\"One Release DocGen Project\",\"projectTypeKey\":\"software\",\"avatarUrls\":{\"48x48\":\"https://jira-dev.biscrum.com/secure/projectavatar?avatarId=11803\",\"24x24\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=small&avatarId=11803\",\"16x16\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=xsmall&avatarId=11803\",\"32x32\":\"https://jira-dev.biscrum.com/secure/projectavatar?size=medium&avatarId=11803\"}}]},{\"required\":true,\"schema\":{\"type\":\"user\",\"system\":\"reporter\"},\"name\":\"Reporter\",\"fieldId\":\"reporter\",\"autoCompleteUrl\":\"https://jira-dev.biscrum.com/rest/api/latest/user/search?username=\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":true,\"schema\":{\"type\":\"string\",\"system\":\"summary\"},\"name\":\"Summary\",\"fieldId\":\"summary\",\"hasDefaultValue\":false,\"operations\":[\"set\"]},{\"required\":false,\"schema\":{\"type\":\"array\",\"items\":\"version\",\"system\":\"versions\"},\"name\":\"Affects Version/s\",\"fieldId\":\"versions\",\"hasDefaultValue\":false,\"operations\":[\"set\",\"add\",\"remove\"],\"allowedValues\":[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]}]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:42 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31156x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=4C847B2C5B2D04BC63944AEE5EF7C8F6; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_81544d324d589a916594ee2f990081942e2a746e_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1fcb9za", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "6b8c2c9b-6059-4b08-bc9b-0dfdcd1a6b08", + "persistent" : true, + "insertionIndex" : 11 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_ordgp-123-81f9166f-2f8c-489d-b820-69cbd8450ade.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_ordgp-123-81f9166f-2f8c-489d-b820-69cbd8450ade.json new file mode 100644 index 00000000..307c7c8e --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_issue_ordgp-123-81f9166f-2f8c-489d-b820-69cbd8450ade.json @@ -0,0 +1,33 @@ +{ + "id" : "81f9166f-2f8c-489d-b820-69cbd8450ade", + "name" : "rest_api_2_issue_ordgp-123", + "request" : { + "url" : "/rest/api/2/issue/ORDGP-123?fields=customfield_20101", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "{\"expand\":\"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations\",\"id\":\"896751\",\"self\":\"https://jira-dev.biscrum.com/rest/api/2/issue/896751\",\"key\":\"ORDGP-123\",\"fields\":{\"customfield_20101\":{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"description\":\"\",\"name\":\"1.0\",\"archived\":false,\"released\":false}}}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:44 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31157x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=3DA6371F20EB58A7418C4A9CFE529742; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_564af4eb03b5ac8d45d72d00ecd748d04e8348d4_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "15hmzrr", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "81f9166f-2f8c-489d-b820-69cbd8450ade", + "persistent" : true, + "insertionIndex" : 12 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-1c446028-8521-41ec-b333-87ab4fd7deb6.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-1c446028-8521-41ec-b333-87ab4fd7deb6.json new file mode 100644 index 00000000..8f45a2e7 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-1c446028-8521-41ec-b333-87ab4fd7deb6.json @@ -0,0 +1,35 @@ +{ + "id" : "1c446028-8521-41ec-b333-87ab4fd7deb6", + "name" : "rest_api_2_project_ordgp_versions", + "request" : { + "url" : "/rest/api/2/project/ORDGP/versions", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:55 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31161x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=C4E572DB1A08216317CAB5078915A33A; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_28123295c1eeae1ab83171616c2a5b15589fb6dc_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "7mmeoh", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "1c446028-8521-41ec-b333-87ab4fd7deb6", + "persistent" : true, + "scenarioName" : "scenario-1-rest-api-2-project-ORDGP-versions", + "requiredScenarioState" : "scenario-1-rest-api-2-project-ORDGP-versions-2", + "insertionIndex" : 16 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-2afaa3dc-7034-446c-8839-0920946625dd.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-2afaa3dc-7034-446c-8839-0920946625dd.json new file mode 100644 index 00000000..91b37173 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_project_ordgp_versions-2afaa3dc-7034-446c-8839-0920946625dd.json @@ -0,0 +1,36 @@ +{ + "id" : "2afaa3dc-7034-446c-8839-0920946625dd", + "name" : "rest_api_2_project_ordgp_versions", + "request" : { + "url" : "/rest/api/2/project/ORDGP/versions", + "method" : "GET" + }, + "response" : { + "status" : 200, + "body" : "[{\"self\":\"https://jira-dev.biscrum.com/rest/api/2/version/26013\",\"id\":\"26013\",\"name\":\"1.0\",\"archived\":false,\"released\":false,\"projectId\":30107}]", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:53 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31160x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=712AC1ADB3AF8744A0AFC478FD9CE157; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_29c77ed068a4852f169bc0f948bbbb57d9d08ed1_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "147ufyp", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "2afaa3dc-7034-446c-8839-0920946625dd", + "persistent" : true, + "scenarioName" : "scenario-1-rest-api-2-project-ORDGP-versions", + "requiredScenarioState" : "Started", + "newScenarioState" : "scenario-1-rest-api-2-project-ORDGP-versions-2", + "insertionIndex" : 15 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-34bb8219-d9a1-42de-8bdd-0ab007e5cb25.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-34bb8219-d9a1-42de-8bdd-0ab007e5cb25.json new file mode 100644 index 00000000..2f8e19d8 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-34bb8219-d9a1-42de-8bdd-0ab007e5cb25.json @@ -0,0 +1,38 @@ +{ + "id" : "34bb8219-d9a1-42de-8bdd-0ab007e5cb25", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"jql\":\"project = ORDGP AND issuetype = 'Documentation'\",\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-34bb8219-d9a1-42de-8bdd-0ab007e5cb25.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:53:02 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "653x31164x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=4062EF43581D104D32858F231D46FB9B; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_3d30890e506dc000185c860267d0248af5926df6_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "9jss9p", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "34bb8219-d9a1-42de-8bdd-0ab007e5cb25", + "persistent" : true, + "insertionIndex" : 19 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-5a3c9e80-c662-4e40-900d-18afe57aa724.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-5a3c9e80-c662-4e40-900d-18afe57aa724.json new file mode 100644 index 00000000..7cd2faf1 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-5a3c9e80-c662-4e40-900d-18afe57aa724.json @@ -0,0 +1,38 @@ +{ + "id" : "5a3c9e80-c662-4e40-900d-18afe57aa724", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"jql\":\"project = ORDGP AND issuetype = 'Documentation' AND fixVersion = '1.0'\",\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-5a3c9e80-c662-4e40-900d-18afe57aa724.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:53:00 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31163x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=B84CA16E0F933CD9052F06D924640C1C; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_afb0b8d9d8a53dae7a90596c0784e0640cc233ac_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1ks7ipg", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "5a3c9e80-c662-4e40-900d-18afe57aa724", + "persistent" : true, + "insertionIndex" : 18 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-9090a2d9-2340-493c-b8e5-d41c30240899.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-9090a2d9-2340-493c-b8e5-d41c30240899.json new file mode 100644 index 00000000..d67f23f4 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-9090a2d9-2340-493c-b8e5-d41c30240899.json @@ -0,0 +1,38 @@ +{ + "id" : "9090a2d9-2340-493c-b8e5-d41c30240899", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":[\"assignee\",\"duedate\",\"issuelinks\",\"status\",\"summary\",\"fixVersions\"],\"jql\":\"project = ORDGP AND issuetype = Bug AND status != Done AND fixVersion = '1.0'\",\"expand\":[],\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "body" : "{\"startAt\":0,\"maxResults\":1000,\"total\":0,\"issues\":[]}", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:57 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31162x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=268268E6BECBB0712501B11078897030; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_580d917179c72ed6454b32bbdf2437c22bb3528e_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "jwoi6l", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "9090a2d9-2340-493c-b8e5-d41c30240899", + "persistent" : true, + "insertionIndex" : 17 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-fc92ee2e-5969-461c-aa7f-dbea1ec4ff37.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-fc92ee2e-5969-461c-aa7f-dbea1ec4ff37.json new file mode 100644 index 00000000..1576f4f8 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_api_2_search-fc92ee2e-5969-461c-aa7f-dbea1ec4ff37.json @@ -0,0 +1,38 @@ +{ + "id" : "fc92ee2e-5969-461c-aa7f-dbea1ec4ff37", + "name" : "rest_api_2_search", + "request" : { + "url" : "/rest/api/2/search", + "method" : "POST", + "bodyPatterns" : [ { + "equalToJson" : "{\"fields\":[\"key\",\"status\",\"summary\",\"labels\",\"issuelinks\",\"customfield_19902\",\"customfield_19901\"],\"jql\":\"project = ORDGP AND issuetype = 'Documentation Chapter' AND fixVersion = '1.0'\",\"expand\":[\"renderedFields\"],\"maxResults\":1000}", + "ignoreArrayOrder" : true, + "ignoreExtraElements" : true + } ] + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_api_2_search-fc92ee2e-5969-461c-aa7f-dbea1ec4ff37.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:51 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31159x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=7FF3E450F1152AB058D020B3F7829EDA; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_8af6e79c2b18a8420131cbc2756a7dea31a4ad62_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "9lrgw1", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "fc92ee2e-5969-461c-aa7f-dbea1ec4ff37", + "persistent" : true, + "insertionIndex" : 14 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-a90dede5-a459-4cf6-9996-698d38210a07.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-a90dede5-a459-4cf6-9996-698d38210a07.json new file mode 100644 index 00000000..54611d80 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/jira/mappings/rest_platform_11_deltadocgenreports_ordgp_10-a90dede5-a459-4cf6-9996-698d38210a07.json @@ -0,0 +1,33 @@ +{ + "id" : "a90dede5-a459-4cf6-9996-698d38210a07", + "name" : "rest_platform_11_deltadocgenreports_ordgp_10", + "request" : { + "url" : "/rest/platform/1.1/deltadocgenreports/ORDGP/1.0", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "rest_platform_11_deltadocgenreports_ordgp_10-a90dede5-a459-4cf6-9996-698d38210a07.json", + "headers" : { + "Server" : "nginx/1.20.1", + "Date" : "Mon, 04 Apr 2022 08:52:49 GMT", + "Content-Type" : "application/json;charset=UTF-8", + "X-AREQUESTID" : "652x31158x1", + "Referrer-Policy" : "strict-origin-when-cross-origin", + "X-XSS-Protection" : "1; mode=block", + "X-Content-Type-Options" : "nosniff", + "X-Frame-Options" : "SAMEORIGIN", + "Content-Security-Policy" : "frame-ancestors 'self'", + "Strict-Transport-Security" : [ "max-age=31536000", "max-age=15768000" ], + "Set-Cookie" : [ "JSESSIONID=26FEC9DE2C998D0569281DAAD9335ECF; Path=/; Secure; HttpOnly", "atlassian.xsrf.token=BW8I-UASU-MVFU-WO2W_f92c9e3ab7632ae5a6dcbbaa51035402223465a7_lin; Path=/; Secure" ], + "X-Seraph-LoginReason" : "OK", + "X-ASESSIONID" : "1xug7fq", + "X-AUSERNAME" : "sergio.sacristan%40domain.com", + "Cache-Control" : "no-cache, no-store, no-transform", + "Vary" : "User-Agent" + } + }, + "uuid" : "a90dede5-a459-4cf6-9996-698d38210a07", + "persistent" : true, + "insertionIndex" : 13 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_unit-backendzip-ad01f143-85d1-46df-85b0-0bae45b8a21e.zip b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_unit-backendzip-ad01f143-85d1-46df-85b0-0bae45b8a21e.zip new file mode 100644 index 00000000..9de0a008 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_unit-backendzip-ad01f143-85d1-46df-85b0-0bae45b8a21e.zip differ diff --git a/src/test/resources/wiremock/ordgp/backend/DTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_unit-backendzip-ad01f143-85d1-46df-85b0-0bae45b8a21e.json b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_unit-backendzip-ad01f143-85d1-46df-85b0-0bae45b8a21e.json new file mode 100644 index 00000000..fccf71f4 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/backend/DTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_unit-backendzip-ad01f143-85d1-46df-85b0-0bae45b8a21e.json @@ -0,0 +1,27 @@ +{ + "id" : "ad01f143-85d1-46df-85b0-0bae45b8a21e", + "name" : "repository_leva-documentation_ordgp_13_unit-backendzip", + "request" : { + "url" : "/repository/leva-documentation/ordgp/13/unit-backend.zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "repository_leva-documentation_ordgp_13_unit-backendzip-ad01f143-85d1-46df-85b0-0bae45b8a21e.zip", + "headers" : { + "Date" : "Mon, 04 Apr 2022 08:53:03 GMT", + "Server" : "Nexus/3.28.1-01 (OSS)", + "X-Content-Type-Options" : "nosniff", + "Content-Security-Policy" : "sandbox allow-forms allow-modals allow-popups allow-presentation allow-scripts allow-top-navigation", + "X-XSS-Protection" : "1; mode=block", + "Last-Modified" : "Fri, 01 Apr 2022 09:23:36 GMT", + "Content-Disposition" : "inline", + "Content-Type" : "application/zip", + "Set-Cookie" : "b7bd9d362cf28fa3746ddf3faaa39cfe=13a61aa10205f36ad051ed3d9d80bf64; path=/; HttpOnly; Secure; SameSite=None", + "Cache-control" : "private" + } + }, + "uuid" : "ad01f143-85d1-46df-85b0-0bae45b8a21e", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/wiremock/ordgp/frontend/DTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_unit-frontendzip-0573b2a9-2a71-4834-896e-abffc9af649b.zip b/src/test/resources/wiremock/ordgp/frontend/DTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_unit-frontendzip-0573b2a9-2a71-4834-896e-abffc9af649b.zip new file mode 100644 index 00000000..5b4e6cf6 Binary files /dev/null and b/src/test/resources/wiremock/ordgp/frontend/DTR/WIP/nexus/__files/repository_leva-documentation_ordgp_13_unit-frontendzip-0573b2a9-2a71-4834-896e-abffc9af649b.zip differ diff --git a/src/test/resources/wiremock/ordgp/frontend/DTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_unit-frontendzip-0573b2a9-2a71-4834-896e-abffc9af649b.json b/src/test/resources/wiremock/ordgp/frontend/DTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_unit-frontendzip-0573b2a9-2a71-4834-896e-abffc9af649b.json new file mode 100644 index 00000000..c6f63514 --- /dev/null +++ b/src/test/resources/wiremock/ordgp/frontend/DTR/WIP/nexus/mappings/repository_leva-documentation_ordgp_13_unit-frontendzip-0573b2a9-2a71-4834-896e-abffc9af649b.json @@ -0,0 +1,27 @@ +{ + "id" : "0573b2a9-2a71-4834-896e-abffc9af649b", + "name" : "repository_leva-documentation_ordgp_13_unit-frontendzip", + "request" : { + "url" : "/repository/leva-documentation/ordgp/13/unit-frontend.zip", + "method" : "GET" + }, + "response" : { + "status" : 200, + "bodyFileName" : "repository_leva-documentation_ordgp_13_unit-frontendzip-0573b2a9-2a71-4834-896e-abffc9af649b.zip", + "headers" : { + "Date" : "Mon, 04 Apr 2022 08:53:18 GMT", + "Server" : "Nexus/3.28.1-01 (OSS)", + "X-Content-Type-Options" : "nosniff", + "Content-Security-Policy" : "sandbox allow-forms allow-modals allow-popups allow-presentation allow-scripts allow-top-navigation", + "X-XSS-Protection" : "1; mode=block", + "Last-Modified" : "Fri, 01 Apr 2022 09:23:35 GMT", + "Content-Disposition" : "inline", + "Content-Type" : "application/zip", + "Set-Cookie" : "b7bd9d362cf28fa3746ddf3faaa39cfe=13a61aa10205f36ad051ed3d9d80bf64; path=/; HttpOnly; Secure; SameSite=None", + "Cache-control" : "private" + } + }, + "uuid" : "0573b2a9-2a71-4834-896e-abffc9af649b", + "persistent" : true, + "insertionIndex" : 1 +} \ No newline at end of file diff --git a/src/test/resources/xunit-wiremock.xml b/src/test/resources/xunit-wiremock.xml deleted file mode 100644 index e9482df5..00000000 --- a/src/test/resources/xunit-wiremock.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - \ No newline at end of file